mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
fix bug 472: tags displayed outside of the menubar (at leas for Opera, witing confirmation for Safari)
git-svn-id: http://piwigo.org/svn/trunk@1479 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -25,3 +25,8 @@ UL.tagSelection LI INPUT,
|
|||||||
width: 99%; /* buggy IE box model */
|
width: 99%; /* buggy IE box model */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* fix tag clouds : IE doesn't like anything but inline */
|
||||||
|
#menubar #menuTagCloud LI
|
||||||
|
{
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|||||||
@@ -103,6 +103,8 @@ FORM#quickconnect LABEL {
|
|||||||
|
|
||||||
#menubar #menuTagCloud LI
|
#menubar #menuTagCloud LI
|
||||||
{
|
{
|
||||||
display: inline;
|
display: inline; /* FF doesn't see the inline-block below */
|
||||||
white-space: nowrap;
|
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 */
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user