blob: cf3391f4934cc5d018e3247bb0547280311570de (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#aclmanager
{
position: relative;
border: 1px solid #999;
min-height: 302px;
}
#aclcontainer
{
overflow-x: auto;
}
#acltable
{
width: 100%;
border-collapse: collapse;
background-color: #F9F9F9;
}
#acltable td
{
width: 1%;
white-space: nowrap;
}
#acltable thead td
{
padding: 0 4px 0 2px;
}
#acltable tbody td
{
text-align: center;
padding: 2px;
border-bottom: 1px solid #999999;
cursor: default;
}
#acltable tbody td.user
{
width: 96%;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
}
#acltable tbody td.partial
{
background: url(images/partial.png) center no-repeat;
}
#acltable tbody td.enabled
{
background: url(images/enabled.png) center no-repeat;
}
#acltable tr.selected td
{
color: #FFFFFF;
background-color: #CC3333;
}
#acltable tr.unfocused td
{
color: #FFFFFF;
background-color: #929292;
}
#acladvswitch
{
position: absolute;
right: 4px;
text-align: right;
line-height: 22px;
}
#acladvswitch input
{
vertical-align: middle;
}
#acladvswitch span
{
display: block;
}
#aclform
{
top: 80px;
width: 480px;
padding: 10px;
}
#aclform div
{
padding: 0;
text-align: center;
clear: both;
}
|