blob: 30935460c2c5d308e7c082d2f5f78d166c58682d [file] [log] [blame]
Michael Davis093c01c2017-07-20 14:30:11 -05001$userInputHeight: 40px;
2
AppaRao Pulia83cd052019-01-07 23:25:43 +05303.user-list__tbl {
4 .btn-edit,
5 .btn-delete {
6 padding: .5em 1em;
7 min-height: 2em;
8 color: $primebtn__text;
9 background: $primebtn__bg;
10 &:hover {
11 background: rgba($primebtn__bg, .8);
12 @include fastTransition-all;
13 }
14 &:disabled {
15 background: $btn__disabled-bg;
16 color: $btn__disabled-txt;
17 @include fastTransition-all;
18 cursor: default;
19 }
20 }
21}
Michael Davis3a94fc52017-05-08 11:20:12 -050022.user-manage__form {
Gunnar Mills84e114a2018-11-14 13:44:41 -060023 width: 100%;
AppaRao Puli28711a62018-10-17 16:07:55 +053024 .dropdown__button {
25 margin-bottom: 1.2em;
26 }
Michael Davis3a94fc52017-05-08 11:20:12 -050027 label {
Gunnar Mills84e114a2018-11-14 13:44:41 -060028 width: 100%;
Michael Davis093c01c2017-07-20 14:30:11 -050029 min-width: 210px;
Michael Davis3a94fc52017-05-08 11:20:12 -050030 font-weight: 700;
Michael Davis093c01c2017-07-20 14:30:11 -050031 margin-right: 4em;
Michael Davis3a94fc52017-05-08 11:20:12 -050032 }
33 input {
Michael Davis093c01c2017-07-20 14:30:11 -050034 width: 225px;
35 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050036 }
AppaRao Puli28711a62018-10-17 16:07:55 +053037 select {
38 width: 225px;
39 height: $userInputHeight;
40 }
Michael Davis3a94fc52017-05-08 11:20:12 -050041 fieldset {
42 display: block;
43 padding-left: 1.5em;
44 margin-bottom: 1em;
45 border-bottom: 1px solid $medgrey;
46 }
Michael Davis3a94fc52017-05-08 11:20:12 -050047 .user-manage__input-wrapper {
48 position: relative;
Michael Davis093c01c2017-07-20 14:30:11 -050049 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050050 margin-bottom: 1em;
51 input {
52 padding-right: 60px;
53 }
54 }
55 .password-toggle {
56 position: absolute;
57 right: 5px;
58 padding: 3px;
AppaRao Puli28711a62018-10-17 16:07:55 +053059 margin-right: 20px;
Michael Davis3a94fc52017-05-08 11:20:12 -050060 color: $primebtn__bg;
61 font-size: .8em;
62 @include vertCenter;
63 }
AppaRao Puli28711a62018-10-17 16:07:55 +053064 .user-manage__submit-wrapper {
65 width: 100%;
66 margin-top: 3em;
67 padding-top: 1em;
68 border-top: 1px solid $medgrey;
69 button {
70 float: right;
71 margin: .5em;
72 }
Michael Davis3a94fc52017-05-08 11:20:12 -050073 }
AppaRao Puli28711a62018-10-17 16:07:55 +053074 .user-manage__error
Gunnar Mills08744f82018-03-19 16:24:41 -050075 {
76 background: lighten($error-color, 20%);
77 padding: 1em;
78 text-align: center;
79 font-size: 1em;
80 border: 1px solid $error-color;
81 color: $black;
82 font-family: "Courier New", Helvetica, Arial, sans-serif;
83 font-weight: 700;
Gunnar Mills08744f82018-03-19 16:24:41 -050084 }
AppaRao Puli28711a62018-10-17 16:07:55 +053085 .user-manage__success
Gunnar Mills08744f82018-03-19 16:24:41 -050086 {
87 color: $primebtn__bg;
88 padding: 1em;
89 font-size: 1em;
90 font-family: "Courier New", Helvetica, Arial, sans-serif;
91 font-weight: 500;
92 }
93}