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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| .edit-permissions-panel{
| .perms-loading{
| margin-top: 14px;
| }
| .permission{
| position: relative;
| margin-bottom: 4px;
| display: flex;
| }
| .user-indicator{
| position: absolute;
| left: 12px;
| top: 16px;
| }
| .remove{
| position: relative;
| top: 12px;
|
| a{
| position: absolute;
| left: -36px;
| top: -12px;
| padding: 12px;
| &:hover{
| cursor: pointer;
| }
| }
| }
|
| .username{
| padding-left: 30px;
| }
|
| .username-container{
| flex-grow: 0.66;
| position: relative;
|
| .autocomplete{
| left: 0;
| top: 44px;
| z-index: 2;
| border-width: 1px;
| border-style: solid;
| width: 100%;
| position: absolute;
| border-radius: 2px;
| max-height: 240px;
| overflow-y: auto;
| overflow-x: hidden;
|
| .ac-entry{
| padding: 10px 15px 10px 15px;
| border-bottom-style: solid;
| border-bottom-width: 1px;
|
| &:hover{
| cursor: pointer;
| }
| }
|
| .ac-entry:last-child{
| border: none;
| }
|
| .ac-email{
| opacity: 0.8;
| }
| }
| }
| .role-container{
| flex-grow: 0.33;
| }
|
| .add-new{
| margin-top: 4px;
| }
| }
|
|