Michael Davis | 093c01c | 2017-07-20 14:30:11 -0500 | [diff] [blame] | 1 | $userInputHeight: 40px; |
| 2 | |
Michael Davis | 3a94fc5 | 2017-05-08 11:20:12 -0500 | [diff] [blame] | 3 | .user-manage__form { |
Gunnar Mills | 84e114a | 2018-11-14 13:44:41 -0600 | [diff] [blame^] | 4 | width: 100%; |
Michael Davis | 3a94fc5 | 2017-05-08 11:20:12 -0500 | [diff] [blame] | 5 | label { |
Gunnar Mills | 84e114a | 2018-11-14 13:44:41 -0600 | [diff] [blame^] | 6 | width: 100%; |
Michael Davis | 093c01c | 2017-07-20 14:30:11 -0500 | [diff] [blame] | 7 | min-width: 210px; |
Michael Davis | 3a94fc5 | 2017-05-08 11:20:12 -0500 | [diff] [blame] | 8 | font-weight: 700; |
Michael Davis | 093c01c | 2017-07-20 14:30:11 -0500 | [diff] [blame] | 9 | margin-right: 4em; |
Michael Davis | 3a94fc5 | 2017-05-08 11:20:12 -0500 | [diff] [blame] | 10 | } |
| 11 | input { |
Michael Davis | 093c01c | 2017-07-20 14:30:11 -0500 | [diff] [blame] | 12 | width: 225px; |
| 13 | height: $userInputHeight; |
Michael Davis | 3a94fc5 | 2017-05-08 11:20:12 -0500 | [diff] [blame] | 14 | } |
| 15 | fieldset { |
| 16 | display: block; |
| 17 | padding-left: 1.5em; |
| 18 | margin-bottom: 1em; |
| 19 | border-bottom: 1px solid $medgrey; |
| 20 | } |
| 21 | |
| 22 | .user-manage__input-wrapper { |
| 23 | position: relative; |
Michael Davis | 093c01c | 2017-07-20 14:30:11 -0500 | [diff] [blame] | 24 | height: $userInputHeight; |
Michael Davis | 3a94fc5 | 2017-05-08 11:20:12 -0500 | [diff] [blame] | 25 | margin-bottom: 1em; |
| 26 | input { |
| 27 | padding-right: 60px; |
| 28 | } |
| 29 | } |
| 30 | .password-toggle { |
| 31 | position: absolute; |
| 32 | right: 5px; |
| 33 | padding: 3px; |
| 34 | color: $primebtn__bg; |
| 35 | font-size: .8em; |
| 36 | @include vertCenter; |
| 37 | } |
| 38 | .user-manage__submit-wrapper button { |
| 39 | float: right; |
| 40 | margin-left: .5em; |
| 41 | } |
Gunnar Mills | 08744f8 | 2018-03-19 16:24:41 -0500 | [diff] [blame] | 42 | .change-password__error |
| 43 | { |
| 44 | background: lighten($error-color, 20%); |
| 45 | padding: 1em; |
| 46 | text-align: center; |
| 47 | font-size: 1em; |
| 48 | border: 1px solid $error-color; |
| 49 | color: $black; |
| 50 | font-family: "Courier New", Helvetica, Arial, sans-serif; |
| 51 | font-weight: 700; |
| 52 | width: 325px; |
| 53 | } |
| 54 | .change-password__success |
| 55 | { |
| 56 | color: $primebtn__bg; |
| 57 | padding: 1em; |
| 58 | font-size: 1em; |
| 59 | font-family: "Courier New", Helvetica, Arial, sans-serif; |
| 60 | font-weight: 500; |
| 61 | } |
| 62 | } |