Changeset 1480


Ignore:
Timestamp:
Jul 18, 2006, 1:12:07 AM (18 years ago)
Author:
chrisaga
Message:

merge from trunk r1478:1479 into branch 1.6 (fix bug 472: tags are displayed outside the menu in Safari and Opera)

Location:
branches/branch-1_6/template/yoga
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_6/template/yoga/fix-ie5-ie6.css

    r1465 r1480  
    2626}
    2727
     28/* fix tag clouds : IE doesn't like anything but inline */
     29#menubar #menuTagCloud LI
     30{
     31  display: inline;
     32}
  • branches/branch-1_6/template/yoga/menubar.css

    r1349 r1480  
    104104#menubar #menuTagCloud LI
    105105{
    106   display: inline;
    107   white-space: nowrap;
     106  display: inline;      /* FF doesn't see the inline-block below */
     107  white-space: nowrap;  /* No line break in the LI but Opera set nowrap to */
     108  display: inline-block;/* the whole UL, inline-block fix it.              */
     109  /* IE wants inline in fix-ie5-ie6.css */
    108110}
Note: See TracChangeset for help on using the changeset viewer.