Move view link to status, missed underline.

git-svn-id: http://svn.automattic.com/wordpress/trunk@7168 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
matt 2008-03-06 09:58:47 +00:00
parent ac37a96e57
commit 9342ab2cac
2 changed files with 4 additions and 1 deletions

View File

@ -58,7 +58,7 @@ foreach($posts_columns as $column_name=>$column_display_name) {
}
}
?>
<td><a href="<?php the_permalink(); ?>" rel="permalink" title="<?php echo $t_time ?>"><?php echo $h_time ?></a></td>
<td><abbr title="<?php echo $t_time ?>"><?php echo $h_time ?></abbr></td>
<?php
break;
case 'title':
@ -128,6 +128,7 @@ foreach($posts_columns as $column_name=>$column_display_name) {
case 'status':
?>
<td>
<a href="<?php the_permalink(); ?>" rel="permalink">
<?php
switch ( $post->post_status ) {
case 'publish' :
@ -145,6 +146,7 @@ foreach($posts_columns as $column_name=>$column_display_name) {
break;
}
?>
</a>
</td>
<?php
break;

View File

@ -1405,6 +1405,7 @@ ul.view-switch li.current a {
color: #666;
padding-bottom: 1px;
border-bottom: 1px solid #ababab;
text-decoration: none;
}
#the-comment-list .comment a:hover {