diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index 6eb3e343d5..d472e77b58 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -52,31 +52,6 @@ if ( isset($_GET['comment_status']) ) else $comment_status = ''; ?> - -
-
-

- - - +
+ +

+ +
    + sprintf(__('Awaiting Moderation (%s)'), $num_comments->moderated), 'approved' => __('Approved')); +foreach ( $stati as $status => $label ) { + $class = ''; + + if ( $status == $comment_status ) + $class = ' class="current"'; + + $status_links[] = "
  • " . $label . ''; +} +$class = ( '' === $comment_status ) ? ' class="current"' : ''; +$status_links[] = "
  • ".__('All Comments').""; +echo implode(' |
  • ', $status_links) . ''; +unset($status_links); +?> +

diff --git a/wp-admin/wp-admin.css b/wp-admin/wp-admin.css index 6e7a29a112..bead971a9d 100644 --- a/wp-admin/wp-admin.css +++ b/wp-admin/wp-admin.css @@ -1368,6 +1368,11 @@ ul.view-switch li.current a { margin-right: 8px; } +#the-comment-list p.comment-author strong a { + color: #2583ad; + border: none; +} + #the-comment-list td { vertical-align: top; font-size: 11px;