Ticket #33558: 33558.patch
File 33558.patch, 3.3 KB (added by , 9 years ago) |
---|
-
wp-admin/css/dashboard.css
115 115 line-height: 2.1em; 116 116 } 117 117 118 .welcome-panel h 3{118 .welcome-panel h2 { 119 119 margin: 0; 120 120 font-size: 21px; 121 121 font-weight: normal; … … 122 122 line-height: 1.2; 123 123 } 124 124 125 .welcome-panel h 4{125 .welcome-panel h3 { 126 126 margin: 1.33em 0 0; 127 127 font-size: 16px; 128 128 } … … 834 834 border-top: none; 835 835 } 836 836 837 #latest-comments #the-comment-list .comment-item h4{837 #latest-comments #the-comment-list .comment-item .comment-meta { 838 838 line-height: 1.5em; 839 839 margin-top: 0; 840 margin-bottom: 0; 840 841 color: #666; 841 842 } 842 843 843 #latest-comments #the-comment-list .comment-item h4cite {844 #latest-comments #the-comment-list .comment-item .comment-meta cite { 844 845 font-style: normal; 845 846 font-weight: normal; 846 847 } -
wp-admin/includes/dashboard.php
632 632 <?php if ( !$comment->comment_type || 'comment' == $comment->comment_type ) : ?> 633 633 634 634 <div class="dashboard-comment-wrap has-row-actions"> 635 < h4class="comment-meta">635 <p class="comment-meta"> 636 636 <?php printf( /* translators: 1: comment author, 2: post link, 3: notification if the comment is pending */__( 'From %1$s on %2$s%3$s' ), 637 637 '<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?> 638 </ h4>638 </p> 639 639 640 640 <?php 641 641 else : … … 1341 1341 function wp_welcome_panel() { 1342 1342 ?> 1343 1343 <div class="welcome-panel-content"> 1344 <h 3><?php _e( 'Welcome to WordPress!' ); ?></h3>1344 <h2><?php _e( 'Welcome to WordPress!' ); ?></h2> 1345 1345 <p class="about-description"><?php _e( 'We’ve assembled some links to get you started:' ); ?></p> 1346 1346 <div class="welcome-panel-column-container"> 1347 1347 <div class="welcome-panel-column"> 1348 1348 <?php if ( current_user_can( 'customize' ) ): ?> 1349 <h 4><?php _e( 'Get Started' ); ?></h4>1349 <h3><?php _e( 'Get Started' ); ?></h3> 1350 1350 <a class="button button-primary button-hero load-customize hide-if-no-customize" href="<?php echo wp_customize_url(); ?>"><?php _e( 'Customize Your Site' ); ?></a> 1351 1351 <?php endif; ?> 1352 1352 <a class="button button-primary button-hero hide-if-customize" href="<?php echo admin_url( 'themes.php' ); ?>"><?php _e( 'Customize Your Site' ); ?></a> … … 1355 1355 <?php endif; ?> 1356 1356 </div> 1357 1357 <div class="welcome-panel-column"> 1358 <h 4><?php _e( 'Next Steps' ); ?></h4>1358 <h3><?php _e( 'Next Steps' ); ?></h3> 1359 1359 <ul> 1360 1360 <?php if ( 'page' == get_option( 'show_on_front' ) && ! get_option( 'page_for_posts' ) ) : ?> 1361 1361 <li><?php printf( '<a href="%s" class="welcome-icon welcome-edit-page">' . __( 'Edit your front page' ) . '</a>', get_edit_post_link( get_option( 'page_on_front' ) ) ); ?></li> … … 1372 1372 </ul> 1373 1373 </div> 1374 1374 <div class="welcome-panel-column welcome-panel-last"> 1375 <h 4><?php _e( 'More Actions' ); ?></h4>1375 <h3><?php _e( 'More Actions' ); ?></h3> 1376 1376 <ul> 1377 1377 <?php if ( current_theme_supports( 'widgets' ) || current_theme_supports( 'menus' ) ) : ?> 1378 1378 <li><div class="welcome-icon welcome-widgets-menus"><?php