Changeset 23716
- Timestamp:
- 03/15/2013 05:54:36 PM (13 years ago)
- Location:
- trunk/wp-content/themes/twentytwelve
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentytwelve/functions.php
r23713 r23716 319 319 <?php 320 320 echo get_avatar( $comment, 44 ); 321 printf( '<cite class="fn">%1$s%2$s</cite>',321 printf( '<cite><b class="fn">%1$s</b> %2$s</cite>', 322 322 get_comment_author_link(), 323 323 // If current post author is also comment author, make it known visually. 324 ( $comment->user_id === $post->post_author ) ? '<span> ' . __( 'Post author', 'twentytwelve' ) . '</span>' : ''324 ( $comment->user_id === $post->post_author ) ? '<span>' . __( 'Post author', 'twentytwelve' ) . '</span>' : '' 325 325 ); 326 326 printf( '<a href="%1$s"><time datetime="%2$s">%3$s</time></a>', -
trunk/wp-content/themes/twentytwelve/rtl.css
r22896 r23716 118 118 right: auto; 119 119 } 120 .comments-area li.bypostauthor cite span {120 .comments-area .bypostauthor cite span { 121 121 margin-right: 5px; 122 122 margin-right: 0.357142857rem; -
trunk/wp-content/themes/twentytwelve/style.css
r23562 r23716 241 241 input[type="reset"], 242 242 article.post-password-required input[type=submit], 243 li.bypostauthor cite span {243 .bypostauthor cite span { 244 244 padding: 6px 10px; 245 245 padding: 0.428571429rem 0.714285714rem; … … 303 303 border-color: transparent; 304 304 } 305 li.bypostauthor cite span {305 .bypostauthor cite span { 306 306 color: #fff; 307 307 background-color: #21759b; … … 1200 1200 font-size: 1.071428571rem; 1201 1201 line-height: 1.42857143; 1202 } 1203 .comments-area cite b { 1204 font-weight: normal; 1202 1205 } 1203 1206 .comments-area article header time { … … 1241 1244 border: 1px solid #007cbd; 1242 1245 } 1243 .comments-area li.bypostauthor cite span {1246 .comments-area .bypostauthor cite span { 1244 1247 position: absolute; 1245 1248 margin-left: 5px; … … 1249 1252 font-size: 10px; 1250 1253 font-size: 0.714285714rem; 1254 } 1255 .comments-area .bypostauthor cite b { 1256 font-weight: bold; 1251 1257 } 1252 1258 a.comment-reply-link,
Note: See TracChangeset
for help on using the changeset viewer.