blob: fb6d162f457079a58de6c4da65b89e3b69e4bb04 [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%;
AppaRao Puli28711a62018-10-17 16:07:55 +05305 .dropdown__button {
6 margin-bottom: 1.2em;
7 }
Michael Davis3a94fc52017-05-08 11:20:12 -05008 label {
Gunnar Mills84e114a2018-11-14 13:44:41 -06009 width: 100%;
Michael Davis093c01c2017-07-20 14:30:11 -050010 min-width: 210px;
Michael Davis3a94fc52017-05-08 11:20:12 -050011 font-weight: 700;
Michael Davis093c01c2017-07-20 14:30:11 -050012 margin-right: 4em;
Michael Davis3a94fc52017-05-08 11:20:12 -050013 }
14 input {
Michael Davis093c01c2017-07-20 14:30:11 -050015 width: 225px;
16 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050017 }
AppaRao Puli28711a62018-10-17 16:07:55 +053018 select {
19 width: 225px;
20 height: $userInputHeight;
21 }
Michael Davis3a94fc52017-05-08 11:20:12 -050022 fieldset {
23 display: block;
24 padding-left: 1.5em;
25 margin-bottom: 1em;
26 border-bottom: 1px solid $medgrey;
27 }
Michael Davis3a94fc52017-05-08 11:20:12 -050028 .user-manage__input-wrapper {
29 position: relative;
Michael Davis093c01c2017-07-20 14:30:11 -050030 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050031 margin-bottom: 1em;
32 input {
33 padding-right: 60px;
34 }
35 }
36 .password-toggle {
37 position: absolute;
38 right: 5px;
39 padding: 3px;
AppaRao Puli28711a62018-10-17 16:07:55 +053040 margin-right: 20px;
Michael Davis3a94fc52017-05-08 11:20:12 -050041 color: $primebtn__bg;
42 font-size: .8em;
43 @include vertCenter;
44 }
AppaRao Puli28711a62018-10-17 16:07:55 +053045 .user-manage__submit-wrapper {
46 width: 100%;
47 margin-top: 3em;
48 padding-top: 1em;
49 border-top: 1px solid $medgrey;
50 button {
51 float: right;
52 margin: .5em;
53 }
Michael Davis3a94fc52017-05-08 11:20:12 -050054 }
AppaRao Puli28711a62018-10-17 16:07:55 +053055 .user-manage__error
Gunnar Mills08744f82018-03-19 16:24:41 -050056 {
57 background: lighten($error-color, 20%);
58 padding: 1em;
59 text-align: center;
60 font-size: 1em;
61 border: 1px solid $error-color;
62 color: $black;
63 font-family: "Courier New", Helvetica, Arial, sans-serif;
64 font-weight: 700;
Gunnar Mills08744f82018-03-19 16:24:41 -050065 }
AppaRao Puli28711a62018-10-17 16:07:55 +053066 .user-manage__success
Gunnar Mills08744f82018-03-19 16:24:41 -050067 {
68 color: $primebtn__bg;
69 padding: 1em;
70 font-size: 1em;
71 font-family: "Courier New", Helvetica, Arial, sans-serif;
72 font-weight: 500;
73 }
74}