Make WordPress Core

Ticket #33558: 33558.patch

File 33558.patch, 3.3 KB (added by Cheffheid, 9 years ago)

Heading + CSS fixes for Dashboard

  • wp-admin/css/dashboard.css

     
    115115        line-height: 2.1em;
    116116}
    117117
    118 .welcome-panel h3 {
     118.welcome-panel h2 {
    119119        margin: 0;
    120120        font-size: 21px;
    121121        font-weight: normal;
     
    122122        line-height: 1.2;
    123123}
    124124
    125 .welcome-panel h4 {
     125.welcome-panel h3 {
    126126        margin: 1.33em 0 0;
    127127        font-size: 16px;
    128128}
     
    834834        border-top: none;
    835835}
    836836
    837 #latest-comments #the-comment-list .comment-item h4 {
     837#latest-comments #the-comment-list .comment-item .comment-meta {
    838838        line-height: 1.5em;
    839839        margin-top: 0;
     840        margin-bottom: 0;
    840841        color: #666;
    841842}
    842843
    843 #latest-comments #the-comment-list .comment-item h4 cite {
     844#latest-comments #the-comment-list .comment-item .comment-meta cite {
    844845        font-style: normal;
    845846        font-weight: normal;
    846847}
  • wp-admin/includes/dashboard.php

     
    632632                        <?php if ( !$comment->comment_type || 'comment' == $comment->comment_type ) : ?>
    633633
    634634                        <div class="dashboard-comment-wrap has-row-actions">
    635                         <h4 class="comment-meta">
     635                        <p class="comment-meta">
    636636                                <?php printf( /* translators: 1: comment author, 2: post link, 3: notification if the comment is pending */__( 'From %1$s on %2$s%3$s' ),
    637637                                        '<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?>
    638                         </h4>
     638                        </p>
    639639
    640640                        <?php
    641641                        else :
     
    13411341function wp_welcome_panel() {
    13421342        ?>
    13431343        <div class="welcome-panel-content">
    1344         <h3><?php _e( 'Welcome to WordPress!' ); ?></h3>
     1344        <h2><?php _e( 'Welcome to WordPress!' ); ?></h2>
    13451345        <p class="about-description"><?php _e( 'We&#8217;ve assembled some links to get you started:' ); ?></p>
    13461346        <div class="welcome-panel-column-container">
    13471347        <div class="welcome-panel-column">
    13481348                <?php if ( current_user_can( 'customize' ) ): ?>
    1349                         <h4><?php _e( 'Get Started' ); ?></h4>
     1349                        <h3><?php _e( 'Get Started' ); ?></h3>
    13501350                        <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>
    13511351                <?php endif; ?>
    13521352                <a class="button button-primary button-hero hide-if-customize" href="<?php echo admin_url( 'themes.php' ); ?>"><?php _e( 'Customize Your Site' ); ?></a>
     
    13551355                <?php endif; ?>
    13561356        </div>
    13571357        <div class="welcome-panel-column">
    1358                 <h4><?php _e( 'Next Steps' ); ?></h4>
     1358                <h3><?php _e( 'Next Steps' ); ?></h3>
    13591359                <ul>
    13601360                <?php if ( 'page' == get_option( 'show_on_front' ) && ! get_option( 'page_for_posts' ) ) : ?>
    13611361                        <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>
     
    13721372                </ul>
    13731373        </div>
    13741374        <div class="welcome-panel-column welcome-panel-last">
    1375                 <h4><?php _e( 'More Actions' ); ?></h4>
     1375                <h3><?php _e( 'More Actions' ); ?></h3>
    13761376                <ul>
    13771377                <?php if ( current_theme_supports( 'widgets' ) || current_theme_supports( 'menus' ) ) : ?>
    13781378                        <li><div class="welcome-icon welcome-widgets-menus"><?php