aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--template/yoga/fix-ie5-ie6.css5
-rw-r--r--template/yoga/fix-khtml.css6
-rw-r--r--template/yoga/menubar.css4
3 files changed, 7 insertions, 8 deletions
diff --git a/template/yoga/fix-ie5-ie6.css b/template/yoga/fix-ie5-ie6.css
index cfacd2db9..2e0b64412 100644
--- a/template/yoga/fix-ie5-ie6.css
+++ b/template/yoga/fix-ie5-ie6.css
@@ -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 {
diff --git a/template/yoga/fix-khtml.css b/template/yoga/fix-khtml.css
index e071061c9..15e3c083c 100644
--- a/template/yoga/fix-khtml.css
+++ b/template/yoga/fix-khtml.css
@@ -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 */
diff --git a/template/yoga/menubar.css b/template/yoga/menubar.css
index 6e40eb4eb..d57fc6bd7 100644
--- a/template/yoga/menubar.css
+++ b/template/yoga/menubar.css
@@ -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 */
}