Changeset 3095


Ignore:
Timestamp:
05/10/06 14:21:26 (7 years ago)
Author:
moschny
Message:

Add a specific style for IE6 that doesn't use position:relative.
Should fix #257 and #258.

Location:
trac/plugins/tracnav/tracnav
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trac/plugins/tracnav/tracnav/htdocs/css/tracnav.css

    r3083 r3095  
    5151} 
    5252.wiki-toc.trac-nav .edit { 
    53  position: relative; 
     53 float: right;  
     54 position: absolute;  
     55 right: 10px;  
     56} 
     57/* next rule not seen by IE <= IE6 */ 
     58.wiki-toc.trac-nav [class~=edit] { 
     59 float: none; 
     60 position: static; 
    5461 text-align: right; 
     62 height: 0; /* simulate float:right; */ 
    5563 top: -3px; /* shift slightly up */ 
    56  height: 0; /* simulate float:right; */ 
     64 right: 0; 
    5765} 
    5866.wiki-toc.trac-nav .edit a { 
  • trac/plugins/tracnav/tracnav/tracnav.py

    r3093 r3095  
    5656""" 
    5757__id__        = '$Id$' 
    58 __version__   = '3.92pre3' 
     58__version__   = '3.92pre4' 
    5959__revision__  = '$LastChangedRevision$' 
    6060 
Note: See TracChangeset for help on using the changeset viewer.