blob: 891b3a9dc8a86ee43c0b349f2067de0e90cb7c19 [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 {
Gunnar Mills84e114a2018-11-14 13:44:41 -06004 width: 100%;
Michael Davis3a94fc52017-05-08 11:20:12 -05005 label {
Gunnar Mills84e114a2018-11-14 13:44:41 -06006 width: 100%;
Michael Davis093c01c2017-07-20 14:30:11 -05007 min-width: 210px;
Michael Davis3a94fc52017-05-08 11:20:12 -05008 font-weight: 700;
Michael Davis093c01c2017-07-20 14:30:11 -05009 margin-right: 4em;
Michael Davis3a94fc52017-05-08 11:20:12 -050010 }
11 input {
Michael Davis093c01c2017-07-20 14:30:11 -050012 width: 225px;
13 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050014 }
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 Davis093c01c2017-07-20 14:30:11 -050024 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050025 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 Mills08744f82018-03-19 16:24:41 -050042 .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}