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: https://develop.svn.wordpress.org/trunk@22614 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
861df27c7d
commit
d0dea25296
|
@ -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>↓</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 -->
|
</div><!-- .reply -->
|
||||||
</article><!-- #comment-## -->
|
</article><!-- #comment-## -->
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue