-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathstyles.css
175 lines (142 loc) · 3.47 KB
/
styles.css
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/* Css for Shibboleth Rules Editor */
.enrol-attributes-boolean-editor {
width: 600px;
}
.enrol-attributes-boolean-editor ul {
list-style: none;
padding-left: 10px;
}
.enrol-attributes-boolean-editor li {
position: relative;
margin-bottom: 45px;
white-space: nowrap;
}
.enrol-attributes-boolean-editor li.rule {
background-color: #eee;
}
.enrol-attributes-boolean-editor li .sre-condition-rule-operator {
left: 0;
top: -33px;
position: absolute;
}
.enrol-attributes-boolean-editor li .sre-condition-box {
padding: 10px;
border: solid 1px #666;
overflow: hidden;
}
.enrol-attributes-boolean-editor li:hover > .sre-condition-box {
border-width: 2px;
padding: 9px;
}
.enrol-attributes-boolean-editor li.group > .sre-condition-box {
border-style: dashed;
}
/*
.enrol-attributes-boolean-editor li .button-pannel {
position: absolute;
right: 5px;
bottom: -15px;
padding: 2px;
line-height: 0;
border: 1px dotted #666;
background: #E2E2E2;
z-index: 100;
}
.enrol-attributes-boolean-editor li:hover > .button-pannel {
border-style: solid;
}
*/
.enrol-attributes-boolean-editor li .button-pannel {
position: absolute;
right: 5px;
bottom: -12px;
padding: 1px 5px;
height: 10px;
line-height: 0;
border: 1px solid #666;
border-width: 0 1px 1px;
background: #eee;
}
.enrol-attributes-boolean-editor li.group > .button-pannel {
border-style: dashed;
background-color: #fff;
}
.enrol-attributes-boolean-editor li:hover > .button-pannel {
border-width: 0 2px 2px;
padding: 1px 4px;
}
.enrol-attributes-boolean-editor .button-pannel button {
float: left;
margin-top: -10px;
}
.enrol-attributes-boolean-editor li:hover > .button-pannel button {
margin-top: -9px;
}
.enrol-attributes-boolean-editor .button-pannel button {
border: 1px solid #999;
background: #ccc;
margin-right: 3px;
width: 18px;
height: 18px;
cursor: pointer;
}
.enrol-attributes-boolean-editor .button-pannel button:hover {
border-color: #bbb #999 #666;
}
.enrol-attributes-boolean-editor .button-pannel button:active {
border-color: #c00;
}
.enrol-attributes-boolean-editor .button-pannel button:last-child {
margin-right: 0;
}
.enrol-attributes-boolean-editor .button-pannel button span {
display: none;
}
.enrol-attributes-boolean-editor .button-pannel .button-add-cond {
background-image: url([[pix:enrol_attributes|add]]);
}
.enrol-attributes-boolean-editor .button-pannel .button-add-group {
background-image: url([[pix:enrol_attributes|group_add]]);
}
.enrol-attributes-boolean-editor .button-pannel .button-del-cond {
background-image: url([[pix:enrol_attributes|delete]]);
}
#shib-expression .expr {
margin-left: 10px;
font-family: monospace;
font-size: 12px;
line-height: 16px;
width: 600px;
background-color: #eee;
}
#shib-expression .expr span {
margin-right: 2px;
}
#shib-expression .expr .cond-op {
color: #c00;
}
#shib-expression .expr .group-op {
color: #666;
font-size: 12px;
}
#shib-expression .expr .group-group {
font-size: 16px;
color: #666;
}
#shib-expression .expr .comp-param {
color: blue;
}
#shib-expression .expr .comp-op {
color: #0a0;
}
#shib-expression .expr .comp-val {
color: purple;
}
.enrol-attributes-boolean-editor .button-pannel button {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
span.comp-op {
padding: 0 10px;
}