source: trunk/template/yoga/menubar.css @ 1677

Last change on this file since 1677 was 1650, checked in by rub, 17 years ago

Feature Issue ID 0000601: Filter all public pages with only recent elements

Change stop icon.
Add icon to menu.

It's still a draft.

Try this!

Go to http://forum.phpwebgallery.net/viewtopic.php?id=9490

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
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 .buttonmenu {
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 */
75FORM#quickconnect {
76  margin: 0;
77  padding: 5px;
78}
79
80FORM#quickconnect FIELDSET {
81  margin: 0;
82  padding: 0 0 0.5em 0;
83}
84
85FORM#quickconnect P {
86  margin-left: 0;
87  font-size: 100%;
88  float: left;
89  clear: left;
90}
91
92FORM#quickconnect P INPUT {
93  margin: 0;
94}
95
96FORM#quickconnect UL.actions {
97  display: inline;
98  float: right;
99  padding: 0;
100  text-align: right;    /* Opera 7.5 */
101}
102FORM#quickconnect FIELDSET>UL.actions {
103  width: 40%;           /* Opera 7.5 cannot find why width:auto fails :-( */
104}
105
106FORM#quickconnect UL.actions,
107FORM#quickconnect P,
108FORM#quickconnect LABEL {
109  padding: 0 0.5em 0 0.5em;
110}
111
112FORM#quickconnect LABEL {
113  margin:0;
114  width: 100%;
115 /* -moz-box-sizing: padding-box;*/
116  box-sizing: border-box;
117  -moz-box-sizing: border-box;
118}
119
120FORM#quickconnect INPUT[type=text],
121FORM#quickconnect INPUT[type=password] {
122  width: 100%;  /* mozilla can handle 100% */
123}
124/* same as above for IE with inputfix.htc              */
125/* unfortunately IE doesn't handle that correctly      */
126/* so you should set a width in em in local_layout.css */
127/*FORM#quickconnect INPUT.text,
128FORM#quickconnect INPUT.password {
129  width: 95%;
130}*/
131
132FORM#quicksearch {
133  margin-top: 4px;
134  margin-bottom: 1px;
135}
136
137#menubar #menuTagCloud {
138  text-align: center;
139  margin: 5px 0;
140}
141
142#menubar #menuTagCloud LI
143{
144  display: inline;      /* FF doesn't see the inline-block below */
145  white-space: nowrap;  /* No line break in the LI but Opera set nowrap to */
146  display: inline-block;/* the whole UL, inline-block fix it.              */
147  /* IE wants inline in fix-ie5-ie6.css */
148}
Note: See TracBrowser for help on using the repository browser.