Navigation Menu

Skip to content

Commit

Permalink
fix bug 472: tags displayed outside of the menubar (at leas for Opera…
Browse files Browse the repository at this point in the history
…, witing confirmation for Safari)

git-svn-id: http://piwigo.org/svn/trunk@1479 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
chrisaga committed Jul 17, 2006
1 parent 2005ee6 commit 13c3076
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions template/yoga/fix-ie5-ie6.css
Expand Up @@ -25,3 +25,8 @@ UL.tagSelection LI INPUT,
width: 99%; /* buggy IE box model */
}

/* fix tag clouds : IE doesn't like anything but inline */
#menubar #menuTagCloud LI
{
display: inline;
}
6 changes: 4 additions & 2 deletions template/yoga/menubar.css
Expand Up @@ -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 */
}

0 comments on commit 13c3076

Please sign in to comment.