blob: 10272292b05584bee686354c6f343ebbd26e839e [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}
AppaRao Pulib1e7c862019-03-12 14:56:40 +053022.acnt-prop-header {
23 width: 100%;
24 border-bottom: 2px solid #b8c1c1;
25 margin: 0px 0px 15px;
26}
Michael Davis3a94fc52017-05-08 11:20:12 -050027.user-manage__form {
Gunnar Mills84e114a2018-11-14 13:44:41 -060028 width: 100%;
AppaRao Puli28711a62018-10-17 16:07:55 +053029 .dropdown__button {
30 margin-bottom: 1.2em;
31 }
Michael Davis3a94fc52017-05-08 11:20:12 -050032 label {
Gunnar Mills84e114a2018-11-14 13:44:41 -060033 width: 100%;
Michael Davis093c01c2017-07-20 14:30:11 -050034 min-width: 210px;
Michael Davis3a94fc52017-05-08 11:20:12 -050035 font-weight: 700;
Michael Davis093c01c2017-07-20 14:30:11 -050036 margin-right: 4em;
Michael Davis3a94fc52017-05-08 11:20:12 -050037 }
38 input {
Michael Davis093c01c2017-07-20 14:30:11 -050039 width: 225px;
40 height: $userInputHeight;
Michael Davis3a94fc52017-05-08 11:20:12 -050041 }
AppaRao Puli28711a62018-10-17 16:07:55 +053042 select {
43 width: 225px;
44 height: $userInputHeight;
45 }
Michael Davis3a94fc52017-05-08 11:20:12 -050046 fieldset {
47 display: block;
48 padding-left: 1.5em;
49 margin-bottom: 1em;
50 border-bottom: 1px solid $medgrey;
51 }
AppaRao Pulib1e7c862019-03-12 14:56:40 +053052 .acnt-prop__input-wrapper,
Michael Davis3a94fc52017-05-08 11:20:12 -050053 .user-manage__input-wrapper {
AppaRao Pulib1e7c862019-03-12 14:56:40 +053054 margin-bottom: 5px;
beccabroeka5deeea2019-03-22 15:38:49 -050055 select {
56 margin-bottom: 0;
57 }
AppaRao Pulib1e7c862019-03-12 14:56:40 +053058 }
59 .acnt-prop__span-wrapper {
60 position: relative;
61 height: 20px;
62 margin-bottom: 5px;
Michael Davis3a94fc52017-05-08 11:20:12 -050063 }
64 .password-toggle {
65 position: absolute;
66 right: 5px;
beccabroeka5deeea2019-03-22 15:38:49 -050067 top:.8em;
Michael Davis3a94fc52017-05-08 11:20:12 -050068 padding: 3px;
AppaRao Puli28711a62018-10-17 16:07:55 +053069 margin-right: 20px;
Michael Davis3a94fc52017-05-08 11:20:12 -050070 color: $primebtn__bg;
71 font-size: .8em;
Michael Davis3a94fc52017-05-08 11:20:12 -050072 }
AppaRao Pulib1e7c862019-03-12 14:56:40 +053073 .acnt-prop__submit-wrapper,
AppaRao Puli28711a62018-10-17 16:07:55 +053074 .user-manage__submit-wrapper {
75 width: 100%;
AppaRao Pulib1e7c862019-03-12 14:56:40 +053076 margin-top: 6px;
77 padding-top: 1px;
AppaRao Puli28711a62018-10-17 16:07:55 +053078 border-top: 1px solid $medgrey;
79 button {
80 float: right;
81 margin: .5em;
82 }
Michael Davis3a94fc52017-05-08 11:20:12 -050083 }
AppaRao Puli28711a62018-10-17 16:07:55 +053084 .user-manage__error
Gunnar Mills08744f82018-03-19 16:24:41 -050085 {
86 background: lighten($error-color, 20%);
87 padding: 1em;
88 text-align: center;
89 font-size: 1em;
90 border: 1px solid $error-color;
91 color: $black;
92 font-family: "Courier New", Helvetica, Arial, sans-serif;
93 font-weight: 700;
Gunnar Mills08744f82018-03-19 16:24:41 -050094 }
AppaRao Puli28711a62018-10-17 16:07:55 +053095 .user-manage__success
Gunnar Mills08744f82018-03-19 16:24:41 -050096 {
97 color: $primebtn__bg;
98 padding: 1em;
99 font-size: 1em;
100 font-family: "Courier New", Helvetica, Arial, sans-serif;
101 font-weight: 500;
102 }
103}