blob: 914388a0b918cc4cd9d207061f45ec36ac69bc61 [file] [log] [blame]
Michael Davis093c01c2017-07-20 14:30:11 -05001$userInputHeight: 40px;
2
Michael Davis3a94fc52017-05-08 11:20:12 -05003.user-manage__form {
4 label {
Michael Davis093c01c2017-07-20 14:30:11 -05005 min-width: 210px;
Michael Davis3a94fc52017-05-08 11:20:12 -05006 font-weight: 700;
Michael Davis093c01c2017-07-20 14:30:11 -05007 margin-right: 4em;
Michael Davis3a94fc52017-05-08 11:20:12 -05008 }
9 input {
Michael Davis093c01c2017-07-20 14:30:11 -050010 width: 225px;
11 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050012 }
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 Davis093c01c2017-07-20 14:30:11 -050022 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050023 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 Mills08744f82018-03-19 16:24:41 -050040 .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}