diff options
author | chrisaga <chrisaga@piwigo.org> | 2005-08-26 19:54:45 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2005-08-26 19:54:45 +0000 |
commit | 54cd492c8644b250dc24293995fdf61853625adf (patch) | |
tree | a0bee2c33a90bf5d3c4c9cf57b2d2bc2c1c0db8e /template/cclear | |
parent | 2521a217f765eed4e21422ffb9c62476059b8dc8 (diff) |
as discussed with z0rglub, increase #menubar width to 22em in #theAdminPage
git-svn-id: http://piwigo.org/svn/trunk@852 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/cclear/content.css | 5 | ||||
-rw-r--r-- | template/cclear/menubar.css | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/template/cclear/content.css b/template/cclear/content.css index ab9c845eb..7fcaf4b6a 100644 --- a/template/cclear/content.css +++ b/template/cclear/content.css @@ -1,9 +1,12 @@ /* $Id$ */ #content { - margin-left: 14em; + margin-left: 24em; margin-right: 1em; margin-bottom: 1em; /* when it's longer than menu bar */ } +BODY#theAdminPage #content { + margin-left: 14em; +} BODY#theCommentsPage #content, BODY#theRegisterPage #content, diff --git a/template/cclear/menubar.css b/template/cclear/menubar.css index fd16cd807..46ba6bb86 100644 --- a/template/cclear/menubar.css +++ b/template/cclear/menubar.css @@ -4,7 +4,7 @@ float: left; left: 0px; - width: 12em; + width: 22em; margin: 0 0 10px 1em; padding: 0; /* Fix against the "double margin of a floated item" IE bug */ @@ -13,6 +13,10 @@ 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; } |