Make WordPress Core


Ignore:
Timestamp:
11/17/2008 06:01:00 PM (17 years ago)
Author:
azaozz
Message:

CSS fixes and improvements, also IE7 and some IE6 fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/upload.php

    r9686 r9733  
    298298
    299299<?php if ( isset($orphans) ) { ?>
    300 <table class="widefat">
     300<table class="widefat" cellspacing="0">
    301301<thead>
    302302<tr>
     
    424424<br class="clear" />
    425425
    426 <table class="widefat" style="margin-top: .5em">
     426<table class="widefat" cellspacing="0">
    427427<thead>
    428428    <tr>
    429         <th scope="col"><?php _e('Comment') ?></th>
    430         <th scope="col"><?php _e('Date') ?></th>
    431         <th scope="col"><?php _e('Actions') ?></th>
    432     </tr>
     429    <th scope="col" class="column-comment"><?php _e('Comment') ?></th>
     430    <th scope="col" class="column-author"><?php _e('Author') ?></th>
     431    <th scope="col" class="column-date"><?php _e('Submitted') ?></th>
     432  </tr>
    433433</thead>
    434434<tbody id="the-comment-list" class="list:comment">
    435435<?php
    436436        foreach ($comments as $comment)
    437             _wp_comment_row( $comment->comment_ID, 'detail', false, false );
     437            _wp_comment_row( $comment->comment_ID, 'single', false, false );
    438438?>
    439439</tbody>
Note: See TracChangeset for help on using the changeset viewer.