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