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