blob: 869b68b7bbdea008dde732c83c747e67dafa2445 [file] [log] [blame]
AppaRao Pulia83cd052019-01-07 23:25:43 +05301.user-list__tbl {
2 .btn-edit,
3 .btn-delete {
4 padding: .5em 1em;
5 min-height: 2em;
6 color: $primebtn__text;
7 background: $primebtn__bg;
8 &:hover {
9 background: rgba($primebtn__bg, .8);
10 @include fastTransition-all;
11 }
12 &:disabled {
13 background: $btn__disabled-bg;
14 color: $btn__disabled-txt;
15 @include fastTransition-all;
16 cursor: default;
17 }
18 }
19}
AppaRao Pulib1e7c862019-03-12 14:56:40 +053020.acnt-prop-header {
21 width: 100%;
22 border-bottom: 2px solid #b8c1c1;
23 margin: 0px 0px 15px;
24}
Michael Davis3a94fc52017-05-08 11:20:12 -050025.user-manage__form {
Gunnar Mills84e114a2018-11-14 13:44:41 -060026 width: 100%;
AppaRao Puli28711a62018-10-17 16:07:55 +053027 .dropdown__button {
28 margin-bottom: 1.2em;
29 }
Michael Davis3a94fc52017-05-08 11:20:12 -050030 label {
Gunnar Mills84e114a2018-11-14 13:44:41 -060031 width: 100%;
Michael Davis093c01c2017-07-20 14:30:11 -050032 min-width: 210px;
Michael Davis3a94fc52017-05-08 11:20:12 -050033 font-weight: 700;
Michael Davis093c01c2017-07-20 14:30:11 -050034 margin-right: 4em;
Michael Davis3a94fc52017-05-08 11:20:12 -050035 }
Yoshie Muranaka5bd1dec2019-05-16 13:06:32 -050036 select,
Michael Davis3a94fc52017-05-08 11:20:12 -050037 input {
Michael Davis093c01c2017-07-20 14:30:11 -050038 width: 225px;
AppaRao Puli28711a62018-10-17 16:07:55 +053039 width: 225px;
AppaRao Puli28711a62018-10-17 16:07:55 +053040 }
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 }
AppaRao Pulib1e7c862019-03-12 14:56:40 +053047 .acnt-prop__input-wrapper,
Michael Davis3a94fc52017-05-08 11:20:12 -050048 .user-manage__input-wrapper {
AppaRao Pulib1e7c862019-03-12 14:56:40 +053049 margin-bottom: 5px;
beccabroeka5deeea2019-03-22 15:38:49 -050050 select {
51 margin-bottom: 0;
52 }
AppaRao Pulib1e7c862019-03-12 14:56:40 +053053 }
54 .acnt-prop__span-wrapper {
55 position: relative;
56 height: 20px;
57 margin-bottom: 5px;
Michael Davis3a94fc52017-05-08 11:20:12 -050058 }
59 .password-toggle {
60 position: absolute;
61 right: 5px;
Yoshie Muranaka5bd1dec2019-05-16 13:06:32 -050062 top: .6em;
Michael Davis3a94fc52017-05-08 11:20:12 -050063 padding: 3px;
AppaRao Puli28711a62018-10-17 16:07:55 +053064 margin-right: 20px;
Michael Davis3a94fc52017-05-08 11:20:12 -050065 color: $primebtn__bg;
66 font-size: .8em;
Michael Davis3a94fc52017-05-08 11:20:12 -050067 }
AppaRao Pulib1e7c862019-03-12 14:56:40 +053068 .acnt-prop__submit-wrapper,
AppaRao Puli28711a62018-10-17 16:07:55 +053069 .user-manage__submit-wrapper {
70 width: 100%;
AppaRao Pulib1e7c862019-03-12 14:56:40 +053071 margin-top: 6px;
72 padding-top: 1px;
AppaRao Puli28711a62018-10-17 16:07:55 +053073 border-top: 1px solid $medgrey;
74 button {
75 float: right;
76 margin: .5em;
77 }
Michael Davis3a94fc52017-05-08 11:20:12 -050078 }
AppaRao Puli28711a62018-10-17 16:07:55 +053079 .user-manage__error
Gunnar Mills08744f82018-03-19 16:24:41 -050080 {
81 background: lighten($error-color, 20%);
82 padding: 1em;
83 text-align: center;
84 font-size: 1em;
85 border: 1px solid $error-color;
86 color: $black;
87 font-family: "Courier New", Helvetica, Arial, sans-serif;
88 font-weight: 700;
Gunnar Mills08744f82018-03-19 16:24:41 -050089 }
AppaRao Puli28711a62018-10-17 16:07:55 +053090 .user-manage__success
Gunnar Mills08744f82018-03-19 16:24:41 -050091 {
92 color: $primebtn__bg;
93 padding: 1em;
94 font-size: 1em;
95 font-family: "Courier New", Helvetica, Arial, sans-serif;
96 font-weight: 500;
97 }
98}