blob: fa0c5d7b4747dcbc1429d6315e7588aca1188987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
.local-users {
margin-bottom: 50px;
}
.local-users__actions {
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.modal__local-users,
.modal__local-users-settings {
.modal-body {
padding-left: 0;
padding-right: 0;
}
}
.modal__local-users {
input[type="password"] {
&::placeholder {
color: $primary-dark;
font-weight: bold;
}
&::-ms-placeholder {
color: $primary-dark;
font-weight: bold;
}
}
}
.role-table {
margin-top: 30px;
.bmc-table__cell:not(:first-of-type) {
text-align: center;
}
.bmc-table__column-header {
text-align: center;
}
// Bootstrap collapse directive override
// The expanded element gets 'in' class instead of 'show' class
// Bootstrap changes the display property for 'show' but not 'in'
.collapse.in {
display: block!important;
}
}
.icon__check-mark {
display: inline-block;
svg {
width: 16px;
fill: $primary-dark;
}
}
|