source: trunk/template/cclear/menubar.css @ 852

Last change on this file since 852 was 852, checked in by chrisaga, 19 years ago

as discussed with z0rglub, increase #menubar width to 22em in #theAdminPage

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1#menubar {
2    /* Do not put font-size: 90% here for it makes it harder to have correct
3       margin for contentarea */
4    float: left;
5    left: 0px;
6
7    width: 22em;
8    margin: 0 0 10px 1em;
9    padding: 0;
10    /* Fix against the "double margin of a floated item" IE bug */
11    /* Damned: that screws up top_navbar in opera 7.54/Linux! */
12    display: inline;
13    text-align: left; /* follow-up of the "be nice to IE5" rule */
14}
15
16BODY#theAdminPage #menubar {
17    width: 12em;
18}
19
20#menubar DL, #menubar DT, #menubar DD {
21    margin: 0; padding: 0; display: block;
22}
23
24/* H2 properties copied here */
25#menubar DT {
26    font-weight: bold; /* default for h2 */
27
28    margin: 0;
29    padding: 5px 10px;
30    font-size: 120%;
31
32    text-align: center;
33}
34
35#menubar UL,
36#menubar HR,
37#menubar FORM,
38#menubar P, /* ooh, careful... */
39#menubar .totalImages {
40    font-size: 92%;
41    margin: 10px 0 10px 10px;
42}
43#menubar UL {
44    list-style-type: square;
45    list-style-position: inside;
46    padding: 0 0 0 2px;
47}
48#menubar UL UL {
49    font-size: 100%;
50    margin-top: 0;
51}
52#menubar LI.selected {
53    font-weight: bold;
54}
55#menubar HR {
56    display: block;
57    margin: 10px auto;
58    width: 90%;
59}
60#menubar FORM P {
61    margin: 5px;
62    font-size: 100%;
63}
64#menubar INPUT {
65    text-indent: 2px;
66}
67
Note: See TracBrowser for help on using the repository browser.