Ticket #23558: 23558.diff
File 23558.diff, 1.8 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentythirteen/style.css
2215 2215 } 2216 2216 2217 2217 .comment-author .fn, 2218 .comment-meta .fn, 2218 2219 .comment-reply-link { 2219 2220 color: #ed331c; 2220 2221 font-size: 14px; 2221 2222 font-style: normal; 2222 2223 } 2223 2224 2225 .comment-meta .fn a { 2226 color: #f94a0a; 2227 } 2228 2224 2229 .bypostauthor .fn:before { 2225 2230 content: '\f408'; 2226 2231 } … … 2238 2243 width: calc(100% - 124px); 2239 2244 } 2240 2245 2246 .comment.no-avatar .comment-meta, 2247 .comment.no-avatar .comment-content, 2248 .comment.no-avatar .reply { 2249 width: 100%; 2250 } 2251 2241 2252 .comment-meta, 2242 2253 .comment-meta a { 2243 2254 color: #a2a2a2; -
wp-content/themes/twentythirteen/functions.php
343 343 // Proceed with normal comments. 344 344 ?> 345 345 <li id="li-comment-<?php comment_ID(); ?>"> 346 <article id="comment-<?php comment_ID(); ?>" <?php comment_class(); ?>> 346 <?php $show_avatars = get_option( 'show_avatars' ); ?> 347 <article id="comment-<?php comment_ID(); ?>" <?php comment_class( $show_avatars ? '' : 'no-avatar' ); ?>> 348 <?php if ( $show_avatars) : ?> 347 349 <div class="comment-author vcard"> 348 350 <?php echo get_avatar( $comment, 74 ); ?> 349 351 <cite class="fn"><?php comment_author_link(); ?></cite> 350 352 </div><!-- .comment-author --> 353 <?php endif; ?> 351 354 352 355 <header class="comment-meta"> 356 <?php if ( ! $show_avatars) : ?> 357 <cite class="fn"><?php comment_author_link(); ?></cite> · 358 <?php endif; ?> 353 359 <?php 354 360 printf( '<a href="%1$s"><time datetime="%2$s">%3$s</time></a>', 355 361 esc_url( get_comment_link( $comment->comment_ID ) ),