0
|
1 #filtersetslistbox
|
|
2 {
|
|
3 position: absolute;
|
|
4 top: 0;
|
|
5 bottom: 0;
|
|
6 left: 0;
|
|
7 width: 195px;
|
|
8 border: 1px solid #999999;
|
|
9 background-color: #F9F9F9;
|
|
10 overflow: hidden;
|
|
11 }
|
|
12
|
|
13 #filtersscreen
|
|
14 {
|
|
15 position: absolute;
|
|
16 top: 0;
|
|
17 right: 0;
|
|
18 bottom: 0;
|
|
19 left: 205px;
|
|
20 }
|
|
21
|
|
22 #filterslistbox
|
|
23 {
|
|
24 position: absolute;
|
|
25 left: 0;
|
|
26 top: 0;
|
|
27 bottom: 0;
|
|
28 border: 1px solid #999999;
|
|
29 overflow: auto;
|
|
30 }
|
|
31
|
|
32 #filterslist,
|
|
33 #filtersetslist
|
|
34 {
|
|
35 width: 100%;
|
|
36 table-layout: fixed;
|
|
37 }
|
|
38
|
|
39 #filterslist tbody td,
|
|
40 #filtersetslist tbody td
|
|
41 {
|
|
42 cursor: default;
|
|
43 text-overflow: ellipsis;
|
|
44 -o-text-overflow: ellipsis;
|
|
45 }
|
|
46
|
|
47 #filterslist tbody tr.disabled td,
|
|
48 #filtersetslist tbody tr.disabled td
|
|
49 {
|
|
50 color: #999999;
|
|
51 text-decoration: line-through;
|
|
52 }
|
|
53
|
|
54 #filtersetslist tbody td
|
|
55 {
|
|
56 font-weight: bold;
|
|
57 }
|
|
58 /*
|
|
59 #filtersetslist tr.selected
|
|
60 {
|
|
61 background-color: #929292;
|
|
62 border-bottom: 1px solid #898989;
|
|
63 color: #FFF;
|
|
64 font-weight: bold;
|
|
65 }
|
|
66 */
|
|
67
|
|
68 #filterslist tbody tr.filtermoveup td
|
|
69 {
|
|
70 border-top: 2px dotted #555;
|
|
71 padding-top: 0px;
|
|
72 }
|
|
73
|
|
74 #filterslist tbody tr.filtermovedown td
|
|
75 {
|
|
76 border-bottom: 2px dotted #555;
|
|
77 padding-bottom: 1px;
|
|
78 }
|
|
79
|
|
80 #filter-box
|
|
81 {
|
|
82 position: absolute;
|
|
83 top: 0;
|
|
84 right: 0;
|
|
85 bottom: 0;
|
|
86 border: 1px solid #999999;
|
|
87 overflow: hidden;
|
|
88 }
|
|
89
|
|
90 #filter-frame
|
|
91 {
|
|
92 border: none;
|
|
93 }
|
|
94
|
|
95 body.iframe
|
|
96 {
|
|
97 min-width: 620px;
|
|
98 width: expression(Math.max(620, document.documentElement.clientWidth)+'px');
|
|
99 background-color: #F2F2F2;
|
|
100 }
|
|
101
|
|
102 #filter-form
|
|
103 {
|
|
104 min-width: 550px;
|
|
105 width: expression(Math.max(550, document.documentElement.clientWidth)+'px');
|
|
106 white-space: nowrap;
|
|
107 padding: 20px 10px 10px 10px;
|
|
108 }
|
|
109
|
|
110 #filter-form legend, #filter-form label
|
|
111 {
|
|
112 color: #666666;
|
|
113 }
|
|
114
|
|
115 #rules, #actions
|
|
116 {
|
|
117 margin-top: 5px;
|
|
118 padding: 0;
|
|
119 border-collapse: collapse;
|
|
120 }
|
|
121
|
|
122 div.rulerow, div.actionrow
|
|
123 {
|
|
124 width: auto;
|
|
125 padding: 2px;
|
|
126 white-space: nowrap;
|
|
127 border: 1px solid #F2F2F2;
|
|
128 }
|
|
129
|
|
130 div.rulerow:hover, div.actionrow:hover
|
|
131 {
|
|
132 padding: 2px;
|
|
133 white-space: nowrap;
|
|
134 background: #F9F9F9;
|
|
135 border: 1px solid silver;
|
|
136 }
|
|
137
|
|
138 div.rulerow table, div.actionrow table
|
|
139 {
|
|
140 padding: 0px;
|
|
141 min-width: 600px;
|
|
142 width: expression(Math.max(600, document.documentElement.clientWidth)+'px');
|
|
143 }
|
|
144
|
|
145 td
|
|
146 {
|
|
147 vertical-align: top;
|
|
148 }
|
|
149
|
|
150 td.advbutton
|
|
151 {
|
|
152 width: 1%;
|
|
153 }
|
|
154
|
|
155 td.advbutton a
|
|
156 {
|
|
157 display: block;
|
|
158 padding-top: 14px;
|
|
159 height: 6px;
|
|
160 width: 12px;
|
|
161 text-decoration: none;
|
|
162 }
|
|
163
|
|
164 td.advbutton a.show
|
|
165 {
|
|
166 background: url(images/down_small.gif?v=8629.106) center no-repeat;
|
|
167 }
|
|
168
|
|
169 td.advbutton a.hide
|
|
170 {
|
|
171 background: url(images/up_small.gif?v=c56c.106) center no-repeat;
|
|
172 }
|
|
173
|
|
174 td.rowbuttons
|
|
175 {
|
|
176 text-align: right;
|
|
177 white-space: nowrap;
|
|
178 width: 1%;
|
|
179 }
|
|
180
|
|
181 td.rowactions
|
|
182 {
|
|
183 white-space: nowrap;
|
|
184 width: 1%;
|
|
185 padding-top: 2px;
|
|
186 }
|
|
187
|
|
188 td.rowtargets
|
|
189 {
|
|
190 white-space: nowrap;
|
|
191 width: 98%;
|
|
192 padding-left: 3px;
|
|
193 padding-top: 2px;
|
|
194 }
|
|
195
|
|
196 td.rowtargets > div
|
|
197 {
|
|
198 vertical-align: top;
|
|
199 margin-top: 2px;
|
|
200 }
|
|
201
|
|
202 td.rowtargets div.adv
|
|
203 {
|
|
204 padding-top: 3px;
|
|
205 }
|
|
206
|
|
207 td.rowtargets div.adv span.label
|
|
208 {
|
|
209 display: inline-block;
|
|
210 padding-right: 10px;
|
|
211 min-width: 65px;
|
|
212 }
|
|
213
|
|
214 td.rowtargets div a
|
|
215 {
|
|
216 margin-left: 10px;
|
|
217 }
|
|
218
|
|
219 td.rowtargets div.adv input
|
|
220 {
|
|
221 margin-bottom: 1px;
|
|
222 }
|
|
223
|
|
224 html.mozilla #filter-form select
|
|
225 {
|
|
226 padding-top: 3px;
|
|
227 padding-bottom: 3px;
|
|
228 }
|
|
229
|
|
230 input.disabled, input.disabled:hover
|
|
231 {
|
|
232 color: #999999;
|
|
233 }
|
|
234
|
|
235 input.error, textarea.error
|
|
236 {
|
|
237 background-color: #FFFF88;
|
|
238 }
|
|
239
|
|
240 input.box,
|
|
241 input.radio
|
|
242 {
|
|
243 border: 0;
|
|
244 margin-top: 0;
|
|
245 }
|
|
246
|
|
247 select.operator_selector
|
|
248 {
|
|
249 width: 200px;
|
|
250 vertical-align: top;
|
|
251 }
|
|
252
|
|
253 td.rowtargets span,
|
|
254 td.rowtargets label,
|
|
255 span.label
|
|
256 {
|
|
257 color: #666666;
|
|
258 font-size: 10px;
|
|
259 white-space: nowrap;
|
|
260 }
|
|
261
|
|
262 td.rowtargets label
|
|
263 {
|
|
264 color: black;
|
|
265 }
|
|
266
|
|
267 #footer
|
|
268 {
|
|
269 padding-top: 5px;
|
|
270 width: 100%;
|
|
271 }
|
|
272
|
|
273 #footer .footerleft
|
|
274 {
|
|
275 padding-left: 2px;
|
|
276 white-space: nowrap;
|
|
277 float: left;
|
|
278 }
|
|
279
|
|
280 #footer .footerright
|
|
281 {
|
|
282 padding-right: 2px;
|
|
283 white-space: nowrap;
|
|
284 text-align: right;
|
|
285 float: right;
|
|
286 }
|
|
287
|
|
288 .itemlist
|
|
289 {
|
|
290 line-height: 25px;
|
|
291 }
|
|
292
|
|
293 .itemlist input
|
|
294 {
|
|
295 vertical-align: middle;
|
|
296 }
|
|
297
|
|
298 span.sieve.error
|
|
299 {
|
|
300 color: red;
|
|
301 }
|
|
302
|
|
303 a.button.add
|
|
304 {
|
|
305 background: url(images/add.png?v=a165.280) no-repeat;
|
|
306 width: 30px;
|
|
307 height: 20px;
|
|
308 margin-right: 4px;
|
|
309 display: inline-block;
|
|
310 }
|
|
311
|
|
312 a.button.del
|
|
313 {
|
|
314 background: url(images/del.png?v=3c27.247) no-repeat;
|
|
315 width: 30px;
|
|
316 height: 20px;
|
|
317 display: inline-block;
|
|
318 }
|
|
319
|
|
320 a.button.disabled
|
|
321 {
|
|
322 opacity: 0.35;
|
|
323 filter: alpha(opacity=35);
|
|
324 cursor: default;
|
|
325 }
|
|
326
|
|
327 #filter-form select,
|
|
328 #filter-form input,
|
|
329 #filter-form textarea
|
|
330 {
|
|
331 font-size: 11px;
|
|
332 vertical-align: middle;
|
|
333 }
|
|
334
|
|
335 /* smart multi-row input field */
|
|
336 .listarea
|
|
337 {
|
|
338 border: 1px solid #666;
|
|
339 margin: 0;
|
|
340 padding: 1px;
|
|
341 display: inline-block;
|
|
342 max-height: 67px;
|
|
343 overflow-y: auto;
|
|
344 vertical-align: middle;
|
|
345 }
|
|
346
|
|
347 td.rowtargets > span.listarea
|
|
348 {
|
|
349 vertical-align: top;
|
|
350 margin-top: 2px;
|
|
351 }
|
|
352
|
|
353 .listelement
|
|
354 {
|
|
355 display: block;
|
|
356 white-space: nowrap;
|
|
357 background-color: #fff;
|
|
358 border-top: 1px solid #e2e2e2;
|
|
359 height: 16px;
|
|
360 padding: 0;
|
|
361 margin: 0;
|
|
362 overflow: hidden;
|
|
363 line-height: 16px;
|
|
364 }
|
|
365
|
|
366 .listarea.error .listelement
|
|
367 {
|
|
368 background-color: #FFFFC4;
|
|
369 }
|
|
370
|
|
371 .listelement:first-child
|
|
372 {
|
|
373 border-top: none;
|
|
374 }
|
|
375
|
|
376 #filter-form .listelement input
|
|
377 {
|
|
378 border: none;
|
|
379 border-radius: 0;
|
|
380 box-shadow: none;
|
|
381 outline: none;
|
|
382 vertical-align: top;
|
|
383 height: 16px;
|
|
384 padding-top: 0;
|
|
385 padding-bottom: 0;
|
|
386 line-height: 16px;
|
|
387 background-color: transparent;
|
|
388 }
|
|
389
|
|
390 .listelement input:focus
|
|
391 {
|
|
392 box-shadow: none;
|
|
393 }
|
|
394
|
|
395 .listelement .reset
|
|
396 {
|
|
397 display: inline-block;
|
|
398 width: 16px;
|
|
399 height: 16px;
|
|
400 background: url(images/erase.png?v=3052.453) -1px 0 no-repeat #eee;
|
|
401 cursor: pointer;
|
|
402 }
|
|
403
|
|
404
|
|
405 /* fixes for popup window */
|
|
406
|
|
407 body.iframe.mail
|
|
408 {
|
|
409 margin: 0;
|
|
410 padding: 0;
|
|
411 }
|
|
412
|
|
413 body.iframe.mail #filter-form
|
|
414 {
|
|
415 padding: 10px 5px 5px 5px;
|
|
416 }
|
|
417
|
|
418 #vacationform .listarea {
|
|
419 max-height: 75px;
|
|
420 }
|
|
421
|
|
422 #vacationform .listelement,
|
|
423 #vacationform .listelement .reset {
|
|
424 height: 18px;
|
|
425 }
|
|
426
|
|
427 #vacationform .listelement .reset {
|
|
428 background-position: -1px 1px;
|
|
429 }
|
|
430
|
|
431 #vacationform .listelement input {
|
|
432 vertical-align: top;
|
|
433 border: 0;
|
|
434 }
|
|
435
|
|
436 #vacationform input.button {
|
|
437 margin-left: 10px;
|
|
438 }
|
|
439
|
|
440 /* RAW editor and CodeMirror overrides */
|
|
441
|
|
442 .raweditor textarea {
|
|
443 border: none;
|
|
444 border-radius: 0;
|
|
445 max-width: none !important;
|
|
446 box-shadow: none;
|
|
447 font-family: monospace;
|
|
448 width: 99%;
|
|
449 min-height: 300px;
|
|
450 }
|
|
451
|
|
452 .raweditor textarea,
|
|
453 .raweditor .CodeMirror {
|
|
454 position: absolute;
|
|
455 top: 34px;
|
|
456 bottom: 45px;
|
|
457 right: 0;
|
|
458 left: 0;
|
|
459 height: auto;
|
|
460 background-color: #fdfdfd;
|
|
461 border-bottom: 1px solid #eee;
|
|
462 }
|
|
463
|
|
464 .raweditor .CodeMirror-linebackground.line-error {
|
|
465 background-color: #f00;
|
|
466 opacity: 0.4;
|
|
467 }
|
|
468
|
|
469 .raweditor .errorGutter {
|
|
470 width: 0.8em;
|
|
471 }
|
|
472
|
|
473 .raweditor #footer {
|
|
474 position: absolute;
|
|
475 bottom: 5px;
|
|
476 }
|
|
477
|
|
478 body.iframe.raweditor {
|
|
479 min-width: 100px;
|
|
480 overflow: hidden;
|
|
481 }
|