1 | #menubar { |
---|
2 | float: left; |
---|
3 | margin: 0 0 10px 1em; |
---|
4 | padding: 0; |
---|
5 | /* Fix against the "double margin of a floated item" IE bug */ |
---|
6 | /* Damned: that screws up top_navbar in opera 7.54/Linux! */ |
---|
7 | display: inline; |
---|
8 | text-align: left; /* follow-up of the "be nice to IE5" rule */ |
---|
9 | } |
---|
10 | |
---|
11 | #menubar DL, #menubar DT, #menubar DD { |
---|
12 | margin: 0; padding: 0; display: block; |
---|
13 | } |
---|
14 | |
---|
15 | #menubar .button { |
---|
16 | margin: 0 2px; |
---|
17 | width: auto; |
---|
18 | padding: 0; |
---|
19 | text-indent: 0; |
---|
20 | list-style: none; |
---|
21 | text-align: center; |
---|
22 | float: right; |
---|
23 | } |
---|
24 | |
---|
25 | /* H2 properties copied here */ |
---|
26 | #menubar DT { |
---|
27 | font-weight: bold; /* default for h2 */ |
---|
28 | margin: 0; |
---|
29 | padding: 5px 5px 5px 5px; |
---|
30 | font-size: 120%; |
---|
31 | text-align: center; |
---|
32 | } |
---|
33 | |
---|
34 | #menubar UL, |
---|
35 | #menubar HR, |
---|
36 | #menubar FORM, |
---|
37 | #menubar P, /* ooh, careful... */ |
---|
38 | #menubar .totalImages { |
---|
39 | font-size: 92%; |
---|
40 | margin: 10px 0 10px 10px; |
---|
41 | } |
---|
42 | #menubar UL { |
---|
43 | list-style-type: square; |
---|
44 | list-style-position: inside; |
---|
45 | padding: 0 0 0 2px; |
---|
46 | } |
---|
47 | #menubar UL UL { |
---|
48 | font-size: 100%; |
---|
49 | margin-top: 0; |
---|
50 | } |
---|
51 | |
---|
52 | #menubar LI.selected A { |
---|
53 | font-weight: bold; |
---|
54 | } |
---|
55 | |
---|
56 | #menubar LI.selected LI A { |
---|
57 | font-weight: normal; |
---|
58 | } |
---|
59 | |
---|
60 | #menubar .menuInfoCatByChild { |
---|
61 | font-size: 80%; |
---|
62 | font-style: italic; |
---|
63 | } |
---|
64 | |
---|
65 | #menubar HR { |
---|
66 | display: block; |
---|
67 | margin: 10px auto; |
---|
68 | width: 90%; |
---|
69 | } |
---|
70 | #menubar INPUT { |
---|
71 | text-indent: 2px; |
---|
72 | } |
---|
73 | |
---|
74 | /* quickconnect form */ |
---|
75 | FORM#quickconnect { |
---|
76 | margin: 0; |
---|
77 | padding: 5px; |
---|
78 | } |
---|
79 | |
---|
80 | FORM#quickconnect FIELDSET { |
---|
81 | margin: 0; |
---|
82 | padding: 0 0 0.5em 0; |
---|
83 | } |
---|
84 | |
---|
85 | FORM#quickconnect P { |
---|
86 | margin-left: 0; |
---|
87 | font-size: 100%; |
---|
88 | float: left; |
---|
89 | clear: left; |
---|
90 | } |
---|
91 | |
---|
92 | FORM#quickconnect P INPUT { |
---|
93 | margin: 0; |
---|
94 | } |
---|
95 | |
---|
96 | FORM#quickconnect UL.actions { |
---|
97 | display: inline; |
---|
98 | float: right; |
---|
99 | padding: 0; |
---|
100 | text-align: right; /* Opera 7.5 */ |
---|
101 | } |
---|
102 | FORM#quickconnect FIELDSET>UL.actions { |
---|
103 | width: 40%; /* Opera 7.5 cannot find why width:auto fails :-( */ |
---|
104 | } |
---|
105 | |
---|
106 | FORM#quickconnect UL.actions, |
---|
107 | FORM#quickconnect P, |
---|
108 | FORM#quickconnect LABEL { |
---|
109 | padding: 0 0.5em 0 0.5em; |
---|
110 | } |
---|
111 | |
---|
112 | FORM#quickconnect LABEL { |
---|
113 | margin:0; |
---|
114 | width: 100%; |
---|
115 | box-sizing: border-box; /* CSS3 */ |
---|
116 | } |
---|
117 | |
---|
118 | FORM#quickconnect INPUT[type=text], |
---|
119 | FORM#quickconnect INPUT[type=password] { |
---|
120 | width: 100%; /* mozilla can handle 100% */ |
---|
121 | } |
---|
122 | /* same as above for IE with inputfix.htc */ |
---|
123 | /* unfortunately IE doesn't handle that correctly */ |
---|
124 | /* so you should set a width in em in local_layout.css */ |
---|
125 | /*FORM#quickconnect INPUT.text, |
---|
126 | FORM#quickconnect INPUT.password { |
---|
127 | width: 95%; |
---|
128 | }*/ |
---|
129 | |
---|
130 | FORM#quicksearch { |
---|
131 | margin-top: 4px; |
---|
132 | margin-bottom: 1px; |
---|
133 | } |
---|
134 | input#qsearchInput { |
---|
135 | width: 90%; |
---|
136 | } |
---|
137 | #menubar #mbMenu p { margin: 0px; padding: 0px; } |
---|
138 | |
---|
139 | #menubar #menuTagCloud { |
---|
140 | text-align: center; |
---|
141 | margin: 5px 0; |
---|
142 | } |
---|
143 | |
---|
144 | #menubar #menuTagCloud LI |
---|
145 | { |
---|
146 | display: inline; /* FF doesn't see the inline-block below */ |
---|
147 | white-space: nowrap; /* No line break in the LI but Opera set nowrap to */ |
---|
148 | display: inline-block;/* the whole UL, inline-block fix it. */ |
---|
149 | /* IE wants inline in fix-ie5-ie6.css */ |
---|
150 | } |
---|