blob: 9f2b9c2a399f9a69b9e79cdb7309826627a566e6 (
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
|
#menubar {
/* Do not put font-size: 90% here for it makes it harder to have correct
margin for contentarea */
float: left;
left: 0px;
width: 22em;
margin: 0 0 10px 1em;
padding: 0;
/* Fix against the "double margin of a floated item" IE bug */
/* Damned: that screws up top_navbar in opera 7.54/Linux! */
display: inline;
text-align: left; /* follow-up of the "be nice to IE5" rule */
}
BODY#theAdminPage #menubar {
width: 12em;
}
#menubar DL, #menubar DT, #menubar DD {
margin: 0; padding: 0; display: block;
}
/* H2 properties copied here */
#menubar DT {
font-weight: bold; /* default for h2 */
margin: 0;
padding: 5px 10px;
font-size: 120%;
text-align: center;
}
#menubar UL,
#menubar HR,
#menubar FORM,
#menubar P, /* ooh, careful... */
#menubar .totalImages {
font-size: 92%;
margin: 10px 0 10px 10px;
}
#menubar UL {
list-style-type: square;
list-style-position: inside;
padding: 0 0 0 2px;
}
#menubar UL UL {
font-size: 100%;
margin-top: 0;
}
#menubar LI.selected {
font-weight: bold;
}
#menubar HR {
display: block;
margin: 10px auto;
width: 90%;
}
#menubar FORM P {
margin: 5px;
font-size: 100%;
}
#menubar INPUT {
text-indent: 2px;
}
|