blob: 4ddb9fddd223b4dcd273f49efab8616ff196fe14 (
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
|
/* modules */
.module {padding:0.5em; margin:0.5em;}
.module ul {margin:0; padding:0; list-style:none;}
.module ul ul {margin:0 0 0.5em 1.2em;}
.module ul li {margin:0;}
.module ol {margin:0 0 0 1.2em;}
.module ol li {margin:0;}
/* module help on admin page */
.modulehelp kbd {font-family:monospace;}
.modulehelp dt {width:27%; float:left; text-align:right; font-weight:bold;}
html[dir='rtl'] .modulehelp dt {float:right;text-align:left;}
.modulehelp dd {width:70%; margin-left:30%;}
html[dir='rtl'] .modulehelp dd {margin-right:0; margin-right:30%;}
.modulehelp .example {text-decoration:underline;}
/* priorities */
.prio1 {background:#dfc !important;}
.prio2 {background:#efc !important;}
.prio3 {background:#ffc !important;}
.prio4 {background:#fec !important;}
.prio5 {background:#fdc !important;}
/* structure navigation */
.navigation .left {float:left;}
html[dir='rtl'] .navigation .left {float:right;}
.navigation .right {float:right;}
html[dir='rtl'] .navigation .right {float:left;}
/* pretty image scaling in MSIE */
img { -ms-interpolation-mode:bicubic; }
/* action icons */
.floaticon {float:right; text-align:right;}
html[dir='rtl'] .floaticon {float:left; text-align:left;}
.floaticon a {padding:0 3px;}
span.actionicon {float:right;}
html[dir='rtl'] span.actionicon {float:left;}
td.actionicon {text-align:right;}
html[dir='rtl'] td.actionicon {text-align:left;}
.actionicon a {padding:0 3px;}
/* miscellaneous */
table {border-collapse:collapse; border-spacing:0; padding:0; margin:0; width:100%;}
.highlight {font-weight:bolder;}
.popup {width:250px; background:#fff; padding:0.5em; border:1px solid #999;}
.closebutton {position:absolute; top:2px; right:2px;}
html[dir='rtl'] .closebutton {top:2px; left:2px;}
/* stuff that was in base.css that the basic, clean, lessneat, & blueprint styles need - for now */
.navbar ul {padding:0; margin:0; list-style:none;}
html[dir='rtl'] .navbar ul li {float:right;}
.icon,.icon:hover,
a.icon,a.icon:hover {border:0px;}
/* IE hacks */
#header {z-index:5000} /* For IE6; Required to get top menu overlapping all body elements. Relatively harmless for other browsers, YMMV */
|