Twenty Twelve: improve arrow display in comment reply text, props miqrogroove. Also consistent styles for edit link to match reply link in color and size. Closes #22468.

git-svn-id: http://core.svn.wordpress.org/trunk@22614 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2012-11-16 21:22:17 +00:00
parent 5544466091
commit ca3c50bd64
2 changed files with 6 additions and 4 deletions

View File

@ -308,7 +308,7 @@ function twentytwelve_comment( $comment, $args, $depth ) {
</section><!-- .comment-content --> </section><!-- .comment-content -->
<div class="reply"> <div class="reply">
<?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply <span>&darr;</span>', 'twentytwelve' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply', 'twentytwelve' ), 'after' => ' <span>&darr;</span>', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
</div><!-- .reply --> </div><!-- .reply -->
</article><!-- #comment-## --> </article><!-- #comment-## -->
<?php <?php

View File

@ -1207,13 +1207,15 @@ article.format-quote .entry-content blockquote {
font-size: 10px; font-size: 10px;
font-size: 0.714285714rem; font-size: 0.714285714rem;
} }
a.comment-reply-link { a.comment-reply-link,
a.comment-edit-link {
color: #686868;
font-size: 13px; font-size: 13px;
font-size: 0.928571429rem; font-size: 0.928571429rem;
line-height: 1.846153846; line-height: 1.846153846;
color: #686868;
} }
a.comment-reply-link:hover { a.comment-reply-link:hover,
a.comment-edit-link:hover {
color: #21759b; color: #21759b;
} }
.commentlist .pingback { .commentlist .pingback {