source: extensions/floPure/menubar.css @ 3333

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

first commit

File size: 2.6 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
23/* H2 properties copied here */
24#menubar DT {
25        font-weight: bold;
26        margin: 0;
27        padding: 5px 5px 5px 5px;
28        font-size: 120%;
29        text-align: center;
30}
31
32#menubar UL,
33#menubar HR,
34#menubar FORM,
35#menubar P, /* ooh, careful... */
36#menubar .totalImages {
37        font-size: 92%;
38        margin: 10px 0 10px 10px;
39}
40#menubar UL {
41        list-style-type: square;
42        list-style-position: inside;
43        padding: 0 0 0 2px;
44}
45#menubar UL UL {
46        font-size: 100%;
47        margin-top: 0;
48        margin-bottom: 0;
49}
50
51#menubar LI.selected A {
52        font-weight: bold;
53}
54
55#menubar LI.selected LI A {
56        font-weight: normal;
57}
58
59#menubar .menuInfoCatByChild {
60  font-size: 80%;
61  font-style: italic;
62}
63
64#menubar HR {
65        display: block;
66        margin: 10px auto;
67        width: 90%;
68}
69#menubar INPUT {
70        text-indent: 2px;
71}
72
73/* quickconnect form */
74FORM#quickconnect {
75        margin: 0;
76        padding: 5px;
77}
78
79FORM#quickconnect FIELDSET {
80        margin: 0;
81        padding: 0 0 0.5em 0;
82}
83
84FORM#quickconnect P {
85        margin-left: 0;
86        font-size: 100%;
87        float: left;
88        clear: left;
89}
90
91FORM#quickconnect P INPUT {
92        margin: 0;
93}
94
95FORM#quickconnect UL.actions {
96        display: inline;
97        float: right;
98        padding: 0;
99        text-align: right;      /* Opera 7.5 */
100}
101FORM#quickconnect FIELDSET>UL.actions {
102        width: 40%;             /* Opera 7.5 cannot find why width:auto fails :-( */
103}
104
105FORM#quickconnect UL.actions,
106FORM#quickconnect P,
107FORM#quickconnect LABEL {
108        padding: 0 0.5em 0 0.5em;
109}
110
111FORM#quickconnect LABEL {
112        margin:0;
113        width: 100%;
114        box-sizing: border-box; /* CSS3 */
115}
116
117FORM#quickconnect INPUT[type=text],
118FORM#quickconnect INPUT[type=password] {
119        width: 100%;    /* mozilla can handle 100% */
120}
121/* same as above for IE with inputfix.htc
122unfortunately IE doesn't handle that correctly
123 so you should set a width in em in local_layout.css */
124/*FORM#quickconnect INPUT.text,
125FORM#quickconnect INPUT.password {
126  width: 95%;
127}*/
128
129FORM#quicksearch {
130        margin-top: 4px;
131        margin-bottom: 1px;
132}
133INPUT#qsearchInput {
134        width: 90%;
135}
136#menubar #mbMenu p { margin: 0px; padding: 0px; }
137
138#menubar #menuTagCloud {
139        text-align: center;
140        margin: 5px 0;
141}
142
143#menubar #menuTagCloud LI
144{
145        display: inline;
146        white-space: nowrap;    /* No line break in the LI but Opera set nowrap to */
147}
Note: See TracBrowser for help on using the repository browser.