rules.ui.css
3.38 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
@CHARSET "UTF-8";
.rules-show-js, html.js .rules-hide-js {
display: none;
}
.rules-hide-js, html.js .rules-show-js {
display: block;
}
.rules-elements-table ul.action-links {
margin: 0px;
padding: 0;
}
.rules-elements-table ul.rules-operations li {
list-style: none;
float: left;
}
.rules-elements-table ul.rules-operations a {
background: none;
padding-left: 0px;
}
table tr.rules-elements-add {
background-color: #e5eff4;
}
.rules-elements-table ul.rules-operations-add a {
line-height: 1em;
}
tr.rules-elements-add td {
padding-top: 2px;
padding-bottom: 2px;
}
ul.rules-operations-add li {
float: left;
list-style-position: inside;
}
.rules-elements-table {
margin-bottom: 3em;
}
/* We cannot set a positive margin-top for rules tables as the table drag link
should be positioned directly on top of the table. Thus we use a large bottom
margin and fix the upper most margin: */
#rules-form-wrapper:first-child {
margin-top: 1.5em;
}
/* Fix table drag weights to don't take extra space */
.rules-elements-table .tabledrag-toggle-weight-wrapper {
position: absolute;
right: 0px;
}
.rules-elements-table caption, .rules-overview-table caption {
font-size: 110%;
font-weight: bold;
padding-bottom: 0.5em;
text-align: left;
}
.rules-overview-table {
margin: 1em 0;
}
.rules-content-group-integrity-error {
color: #df0101;
}
.rules-debug-log {
font: 81.3% "Lucida Grande","Lucida Sans Unicode",sans-serif;
background-color: #eeeeee;
border: 1px solid #cccccc;
color: #333333;
padding: 5px;
margin: 1.5em 0em;
}
.rules-debug-collapsible-link {
position: relative;
cursor: pointer;
/* The span element with the icon which opens the log, has a whitepsace.
Since we don't want the user to mark this white space, we prevent this
using the this code.*/
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
user-select: none;
}
.rules-debug-log-head {
font-weight: bold;
}
div.rules-debug-log-head {
margin: 0.5em 0em;
}
.rules-debug-icon-open {
position: relative;
float: left;
}
.rules-debug-open-all {
position: relative;
float: right;
}
.rules-debug-log ul {
padding-left: 2em;
}
.rules-debug-log .rules-debug-warn {
color: #df0101;
}
.rules-debug-log .rules-debug-error {
font-weight: bold;
color: #df0101;
}
#rules-filter-form {
margin-bottom: 1.5em;
}
.rules-parameter-label {
font-style: italic;
}
#rules-plugin-add-help {
margin-bottom: 1em;
}
.rules-element-content {
float: left;
}
form input.rules-switch-button {
-moz-border-radius: 5px 5px 5px 5px;
cursor: pointer;
font-size: 0.8em;
font-weight: normal;
margin-bottom: 1em;
padding: 2px;
text-align: center;
}
.rules-form-heading {
margin-top: 3em;
}
.rules-autocomplete-button {
top: 3px;
height: 22px;
}
ul.rules-autocomplete {
max-height: 23em;
overflow-y: auto;
}
ul.rules-autocomplete div {
padding-left: 5px;
}
ul.rules-autocomplete a.ui-corner-all {
padding: 0px;
}
ul.rules-autocomplete .rules-dsac-group {
background-color: #eee;
}
ul.rules-autocomplete .ui-corner-all {
-moz-border-radius: 0px;
}
/**
* Do not display the hide/show descriptions link above the permissions matrix.
*/
#rules-form-wrapper #edit-settings-access-permissions .compact-link {
display: none;
}
/* IE 6 hack for max-height. */
* html ul.rule-autocomplete{
height: 23em;
}