- fix display of menubar related tags in IE7

git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2355 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2008-05-23 10:13:15 +00:00
parent 4745f49130
commit 2492a87f5f
3 changed files with 7 additions and 8 deletions
-5
View File
@@ -16,11 +16,6 @@ H1, #theHeader {
width: 99%; /* buggy IE box model */
}
/* fix tag clouds : IE doesn't like anything but inline */
#menubar #menuTagCloud LI
{
display: inline;
}
/* fix quickconnect layout */
FORM#quickconnect FIELDSET {
+6
View File
@@ -10,5 +10,11 @@
top: -1px; /* move the container up by the same amount */
margin-bottom: 5px;
}
#menubar #menuTagCloud LI
{
display: inline-block;/* required for Safari 3.1 - otherwise overflows on the right */
}
/* end Safari/Konqueror */
+1 -3
View File
@@ -143,8 +143,6 @@ input#qsearchInput {
#menubar #menuTagCloud LI
{
display: inline; /* FF doesn't see the inline-block below */
display: inline;
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 */
}