aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/menubar.css
diff options
context:
space:
mode:
authorchrisaga <chrisaga@piwigo.org>2006-07-17 23:12:07 +0000
committerchrisaga <chrisaga@piwigo.org>2006-07-17 23:12:07 +0000
commitf004fd47fd4d916065297cdab1adfe972694f646 (patch)
tree0e0082c2c6bbb6987e2e2dd21837867c9e6bb933 /template/yoga/menubar.css
parent6afc2830e2bcf7ba50db50b114a8456130611f25 (diff)
merge from trunk r1478:1479 into branch 1.6 (fix bug 472: tags are displayed outside the menu in Safari and Opera)
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1480 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/menubar.css')
-rw-r--r--template/yoga/menubar.css6
1 files changed, 4 insertions, 2 deletions
diff --git a/template/yoga/menubar.css b/template/yoga/menubar.css
index f8fbdf914..0d5653779 100644
--- a/template/yoga/menubar.css
+++ b/template/yoga/menubar.css
@@ -103,6 +103,8 @@ FORM#quickconnect LABEL {
#menubar #menuTagCloud LI
{
- display: inline;
- white-space: nowrap;
+ display: inline; /* FF doesn't see the inline-block below */
+ white-space: nowrap; /* No line break in the LI but Opera set nowrap to */
+ display: inline-block;/* the whole UL, inline-block fix it. */
+ /* IE wants inline in fix-ie5-ie6.css */
}