diff options
author | plegall <plg@piwigo.org> | 2005-09-03 20:01:14 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-09-03 20:01:14 +0000 |
commit | 9c6f769b9424557f5cda93e6f7f4f1366ad427e7 (patch) | |
tree | 1942371c30d4894cc71ec4bdc7e5792daa368320 /template/yoga/menubar.css | |
parent | 7eae7595909a49d4355453c73638151097a53f20 (diff) |
- new : template yoga, made by yoDan, helped by chrisaga for integration
becomes the official template.
git-svn-id: http://piwigo.org/svn/trunk@859 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/menubar.css')
-rw-r--r-- | template/yoga/menubar.css | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/template/yoga/menubar.css b/template/yoga/menubar.css new file mode 100644 index 000000000..9f2b9c2a3 --- /dev/null +++ b/template/yoga/menubar.css @@ -0,0 +1,66 @@ +#menubar { + /* Do not put font-size: 90% here for it makes it harder to have correct + margin for contentarea */ + float: left; + left: 0px; + + width: 22em; + margin: 0 0 10px 1em; + padding: 0; + /* Fix against the "double margin of a floated item" IE bug */ + /* Damned: that screws up top_navbar in opera 7.54/Linux! */ + display: inline; + text-align: left; /* follow-up of the "be nice to IE5" rule */ +} + +BODY#theAdminPage #menubar { + width: 12em; +} + +#menubar DL, #menubar DT, #menubar DD { + margin: 0; padding: 0; display: block; +} + +/* H2 properties copied here */ +#menubar DT { + font-weight: bold; /* default for h2 */ + + margin: 0; + padding: 5px 10px; + font-size: 120%; + + text-align: center; +} + +#menubar UL, +#menubar HR, +#menubar FORM, +#menubar P, /* ooh, careful... */ +#menubar .totalImages { + font-size: 92%; + margin: 10px 0 10px 10px; +} +#menubar UL { + list-style-type: square; + list-style-position: inside; + padding: 0 0 0 2px; +} +#menubar UL UL { + font-size: 100%; + margin-top: 0; +} +#menubar LI.selected { + font-weight: bold; +} +#menubar HR { + display: block; + margin: 10px auto; + width: 90%; +} +#menubar FORM P { + margin: 5px; + font-size: 100%; +} +#menubar INPUT { + text-indent: 2px; +} |