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:
parent
094cb6f7dc
commit
efda1483f7
|
@ -308,7 +308,7 @@ function twentytwelve_comment( $comment, $args, $depth ) {
|
|||
</section><!-- .comment-content -->
|
||||
|
||||
<div class="reply">
|
||||
<?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply <span>↓</span>', 'twentytwelve' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
|
||||
<?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply', 'twentytwelve' ), 'after' => ' <span>↓</span>', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
|
||||
</div><!-- .reply -->
|
||||
</article><!-- #comment-## -->
|
||||
<?php
|
||||
|
|
|
@ -1207,13 +1207,15 @@ article.format-quote .entry-content blockquote {
|
|||
font-size: 10px;
|
||||
font-size: 0.714285714rem;
|
||||
}
|
||||
a.comment-reply-link {
|
||||
a.comment-reply-link,
|
||||
a.comment-edit-link {
|
||||
color: #686868;
|
||||
font-size: 13px;
|
||||
font-size: 0.928571429rem;
|
||||
line-height: 1.846153846;
|
||||
color: #686868;
|
||||
}
|
||||
a.comment-reply-link:hover {
|
||||
a.comment-reply-link:hover,
|
||||
a.comment-edit-link:hover {
|
||||
color: #21759b;
|
||||
}
|
||||
.commentlist .pingback {
|
||||
|
|
Loading…
Reference in New Issue