CSS fixes and improvements, also IE7 and some IE6 fixes

git-svn-id: http://svn.automattic.com/wordpress/trunk@9733 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz
2008-11-17 18:01:00 +00:00
parent 9fcdfa2ace
commit a4da82e877
27 changed files with 177 additions and 130 deletions

View File

@@ -297,7 +297,7 @@ foreach ($arc_result as $arc_row) {
<div class="clear"></div>
<?php if ( isset($orphans) ) { ?>
<table class="widefat">
<table class="widefat" cellspacing="0">
<thead>
<tr>
<th scope="col" class="check-column"><input type="checkbox" /></th>
@@ -423,18 +423,18 @@ if ( 1 == count($posts) && is_singular() ) :
<br class="clear" />
<table class="widefat" style="margin-top: .5em">
<table class="widefat" cellspacing="0">
<thead>
<tr>
<th scope="col"><?php _e('Comment') ?></th>
<th scope="col"><?php _e('Date') ?></th>
<th scope="col"><?php _e('Actions') ?></th>
</tr>
<th scope="col" class="column-comment"><?php _e('Comment') ?></th>
<th scope="col" class="column-author"><?php _e('Author') ?></th>
<th scope="col" class="column-date"><?php _e('Submitted') ?></th>
</tr>
</thead>
<tbody id="the-comment-list" class="list:comment">
<?php
foreach ($comments as $comment)
_wp_comment_row( $comment->comment_ID, 'detail', false, false );
_wp_comment_row( $comment->comment_ID, 'single', false, false );
?>
</tbody>
</table>