diff --git a/wp-admin/css/global.css b/wp-admin/css/global.css index 8d92398506..33e4d7a969 100644 --- a/wp-admin/css/global.css +++ b/wp-admin/css/global.css @@ -52,7 +52,7 @@ textarea, input, select { .subsubsub a { line-height: 200%; padding: 3px; } -.subsubsub a.current { color: #000; font-weight: bold; } +.subsubsub a.current { color: #000; font-weight: bold; background: none; border: none;} .subsubsub li { display: inline; margin: 0; padding: 0; } @@ -67,6 +67,7 @@ textarea, input, select { border-bottom: 1px solid #ccc; font-size: 10px; padding: 10px 6px 20px 6px; + vertical-align: text-top; } .widefat th { diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index 21a6f253bd..cd676f0261 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -61,7 +61,7 @@ foreach ( $stati as $status => $label ) { } $class = ( '' === $comment_status ) ? ' class="current"' : ''; $status_links[] = "
  • ".__('All Comments').""; -echo implode(' |
  • ', $status_links) . ''; +echo implode(' | ', $status_links) . ''; unset($status_links); ?> @@ -102,7 +102,10 @@ if ( isset( $_GET['approved'] ) || isset( $_GET['deleted'] ) || isset( $_GET['sp -

    |

    + -
    -
    comment_post_ID); $authordata = get_userdata($post->post_author); $comment_status = wp_get_comment_status($comment->comment_ID); - $class = ('alternate' == $class) ? '' : 'alternate'; + $class = ('alternate' == $class) ? '' : ''; $class .= ('unapproved' == $comment_status) ? ' unapproved' : ''; $post_link = '' . get_the_title($comment->comment_post_ID) . ''; $author_url = get_comment_author_url(); @@ -173,9 +174,9 @@ if ($comments) { $author_url = ''; ?> - comment_post_ID) ) { ?> - -


    + comment_post_ID) ) { ?> + +


    | @@ -183,11 +184,12 @@ if ($comments) { | -

    - +

    +

    +

    - - + + comment_post_ID) ) { echo "" . __('Edit') . " | "; $url = clean_url( wp_nonce_url( "comment.php?action=deletecomment&p=$comment->comment_post_ID&c=$comment->comment_ID", "delete-comment_$comment->comment_ID" ) ); diff --git a/wp-admin/wp-admin.css b/wp-admin/wp-admin.css index dca9c9a07b..6e7a29a112 100644 --- a/wp-admin/wp-admin.css +++ b/wp-admin/wp-admin.css @@ -1,9 +1,3 @@ - -a.delete:hover { - background: #c00; - color: #fff; -} - .plugins p { margin: 4px; padding: 0; @@ -182,26 +176,10 @@ select { padding: none; } -.submit a{ +.submit a { color: #fff; } -.unapproved { - color: #888; -} - -.unapproved a:link { - color: #b9bcff; -} - -.unapproved a:visited { - color: #696dff; -} - -.unapproved a:hover { - color: #009ef0; -} - .approve { display: none; } @@ -300,16 +278,6 @@ input.disabled, textarea.disabled { width: 300px; } -input.delete:hover { - background: #ce0000; - color: #fff; -} - -#deletebookmarks:hover { - background: #ce0000; - color: #fff; -} - #quicktags { background: #cee1ef; padding: 0; @@ -1345,3 +1313,70 @@ p#post-search { body.minwidth { min-width: 940px; } + +ul.view-switch { + float: right; + list-style: none; + margin: -28px 5px 0 0; +} + +ul.view-switch li { + float: left; + margin: 0; + font-size: 12px; + padding: 6px; +} + +ul.view-switch li.current { + background: #eaf3fa; + border: none; + -moz-border-radius-topleft: 3px; + -khtml-border-top-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -khtml-border-top-right-radius: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; +} + +ul.view-switch li.current a { + color: #333; +} + +#the-comment-list .comment a { + color: #666; + padding-bottom: 1px; + border-bottom: 1px solid #ababab; +} + +#the-comment-list .comment a:hover { + color: #d54e21; +} + +#the-comment-list .unapproved { + background: #f0f0f0; +} + +#the-comment-list td.comment p.comment-author { + margin-top: 0; + margin-left: 0 ; +} + +#the-comment-list p.comment-author img { + float: left; + margin-right: 8px; +} + +#the-comment-list td { + vertical-align: top; + font-size: 11px; +} + +#the-comment-list td.comment { + width: 70%; +} + +#the-comment-list td.comment p { + margin-left: 8px; +} \ No newline at end of file