source: extensions/floOs/menubar.css @ 3417

Last change on this file since 3417 was 3334, checked in by flop25, 15 years ago

first commit

File size: 3.3 KB
Line 
1#menubar {
2        float: left;
3        margin: 0 0 10px 1em;
4        padding: 0;
5        display: inline;
6        text-align: left; /* follow-up of the "be nice to IE5" rule */
7}
8
9#menubar DL, #menubar DT, #menubar DD {
10        margin: 0; padding: 0; display: block;
11}
12
13#menubar .button {
14        margin: 0 2px;
15        width: auto;
16        padding: 0;
17        text-indent: 0;
18        list-style: none;
19        text-align: center;
20        float: right;
21}
22#menubar .button_res {
23        margin: 0 2px;
24        width: auto;
25        padding: 0;
26        text-indent: 0;
27        list-style: none;
28        text-align: center;
29        float: left;
30}
31
32/* H2 properties copied here */
33#menubar DT {
34        font-weight: bold;
35        margin: 0;
36        padding: 5px 5px 5px 5px;
37        font-size: 120%;
38        text-align: center;
39}
40
41#menubar UL,
42#menubar HR,
43#menubar FORM,
44#menubar P, /* ooh, careful... */
45#menubar .totalImages {
46        font-size: 92%;
47        margin: 10px 0 10px 10px;
48}
49#menubar UL {
50        list-style-type: square;
51        list-style-position: inside;
52        padding: 0 0 0 2px;
53}
54#menubar UL UL {
55        font-size: 100%;
56        margin-top: 0;
57        margin-bottom: 0;
58}
59
60#menubar LI.selected A {
61        font-weight: bold;
62}
63
64#menubar LI.selected LI A {
65        font-weight: normal;
66}
67
68#menubar .menuInfoCatByChild {
69  font-size: 80%;
70  font-style: italic;
71}
72
73#menubar HR {
74        display: block;
75        margin: 10px auto;
76        width: 90%;
77}
78#menubar INPUT {
79        text-indent: 2px;
80}
81
82/* quickconnect form */
83FORM#quickconnect {
84        margin: 0;
85        padding: 5px;
86}
87
88FORM#quickconnect FIELDSET {
89        margin: 0;
90        padding: 0 0 0.5em 0;
91}
92
93FORM#quickconnect P {
94        margin-left: 0;
95        font-size: 100%;
96        float: left;
97        clear: left;
98}
99
100FORM#quickconnect P INPUT {
101        margin: 0;
102}
103
104FORM#quickconnect UL.actions {
105        display: inline;
106        float: right;
107        padding: 0;
108        text-align: right;      /* Opera 7.5 */
109}
110FORM#quickconnect FIELDSET>UL.actions {
111        width: 40%;             /* Opera 7.5 cannot find why width:auto fails :-( */
112}
113
114FORM#quickconnect UL.actions,
115FORM#quickconnect P,
116FORM#quickconnect LABEL {
117        padding: 0 0.5em 0 0.5em;
118}
119
120FORM#quickconnect LABEL {
121        margin:0;
122        width: 100%;
123        box-sizing: border-box; /* CSS3 */
124}
125
126FORM#quickconnect INPUT[type=text],
127FORM#quickconnect INPUT[type=password] {
128        width: 100%;    /* mozilla can handle 100% */
129}
130/* same as above for IE with inputfix.htc
131unfortunately IE doesn't handle that correctly
132 so you should set a width in em in local_layout.css */
133/*FORM#quickconnect INPUT.text,
134FORM#quickconnect INPUT.password {
135  width: 95%;
136}*/
137
138FORM#quicksearch {
139        margin-top: 4px;
140        margin-bottom: 1px;
141}
142INPUT#qsearchInput {
143        width: 90%;
144}
145#menubar #mbMenu p { margin: 0px; padding: 0px; }
146
147#menubar #menuTagCloud {
148        text-align: center;
149        margin: 5px 0;
150}
151
152#menubar #menuTagCloud LI
153{
154        display: inline;
155        white-space: nowrap;    /* No line break in the LI but Opera set nowrap to */
156}
157
158
159/* menu en haut */
160
161#div_Menu
162{
163        padding: 0px;
164        clear:both;
165        margin-right: 0px;
166        margin-bottom: 10px;
167        margin-left: 0px;
168        height:25px;
169}
170
171ul#Menu
172{
173        height:22px;
174        margin: 0;
175        list-style-type: none;
176        padding-top: 0;
177        padding-right: 0;
178        padding-bottom: 0;
179        padding-left: 8px;
180}
181ul#Menu li
182{
183        float: left;
184        text-align: center;
185        display: block;
186        margin:0 10px;
187        height:22px;
188}
189ul#Menu li a
190{
191        width: auto;
192        line-height: 30px;
193        font-size: 1em;
194        text-decoration: none;
195}
196
197input#qsearchInput {
198width: 150px;
199text-align:left;
200}
Note: See TracBrowser for help on using the repository browser.