Changeset 3110

Show
Ignore:
Timestamp:
01/20/08 10:40:51 (1 year ago)
Author:
athomas
Message:

Remove unsupported LH element.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tagsplugin/trunk/tractags/htdocs/css/tractags.css

    r2954 r3110  
    1 .listtagged lh { font-weight: bold; text-decoration: underline; } 
     1.listtagged li.header { font-weight: bold; text-decoration: underline; } 
    22 
    3 .listtags .listtagged lh { font-weight: normal; }  
     3.listtags .listtagged li.header { font-weight: normal; }  
    44.listtags .listtagged ul { margin: 0px; padding: 0px; } 
    55 
     
    1212#content .tags li { display: inline; text-align: center; } 
    1313 
    14 #content .tags lh
     14#content .tags li.header
    1515        font-weight: bold; 
    1616        font-size: large; 
  • tagsplugin/trunk/tractags/wiki.py

    r3108 r3110  
    9797            li.append(tag.li(anchor, ' ')) 
    9898 
    99         insert = tag.ul(class_='tags')(tag.lh('Tags'), li) 
     99        insert = tag.ul(class_='tags')(tag.li('Tags', class_='header'), li) 
    100100        return stream | Transformer('//div[@class="buttons"]').before(insert) 
    101101