diff options
Diffstat (limited to 'template/yoga/menubar.css')
-rw-r--r-- | template/yoga/menubar.css | 6 |
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 */ } |