Changeset 1479


Ignore:
Timestamp:
Jul 17, 2006, 12:25:24 PM (18 years ago)
Author:
chrisaga
Message:

fix bug 472: tags displayed outside of the menubar (at leas for Opera, witing confirmation for Safari)

Location:
trunk/template/yoga
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/fix-ie5-ie6.css

    r1464 r1479  
    2626}
    2727
     28/* fix tag clouds : IE doesn't like anything but inline */
     29#menubar #menuTagCloud LI
     30{
     31  display: inline;
     32}
  • trunk/template/yoga/menubar.css

    r1350 r1479  
    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.