diff options
author | plegall <plg@piwigo.org> | 2005-09-25 18:31:55 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-09-25 18:31:55 +0000 |
commit | 8f058fcc9bcff868a29be0e8077eb7fed1b37f6f (patch) | |
tree | 89ac5a2622a388417f1d1f514b0531c86091af5b /template/yoga/menubar.css | |
parent | 4c949342ec4f6a7479396385af592cf8630ff79f (diff) |
- bug fixed: HTML error on nested UL in categories menu.
- bug 161 fixed: guest_id not taken into account for history table insert.
- bug 164 fixed: category inserted in history table becomes too long if HTML
tags are kept.
git-svn-id: http://piwigo.org/svn/trunk@876 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/menubar.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/template/yoga/menubar.css b/template/yoga/menubar.css index 9f2b9c2a3..f5a7c80a3 100644 --- a/template/yoga/menubar.css +++ b/template/yoga/menubar.css @@ -49,9 +49,15 @@ BODY#theAdminPage #menubar { font-size: 100%; margin-top: 0; } -#menubar LI.selected { - font-weight: bold; + +#menubar LI.selected A { + font-weight: bold; +} + +#menubar LI.selected LI A { + font-weight: normal; } + #menubar HR { display: block; margin: 10px auto; |