Make WordPress Core

Ticket #36173: 36173.19.diff

File 36173.19.diff, 3.4 KB (added by afercia, 8 years ago)

better headings hierarchy

  • src/wp-admin/about.php

     
    106106                <hr />
    107107
    108108                <div class="changelog">
    109                         <h3><?php _e( 'Under the Hood' ); ?></h3>
     109                        <h2><?php _e( 'Under the Hood' ); ?></h2>
    110110
    111111                        <div class="under-the-hood three-col">
    112112                                <div class="col">
    113                                         <h4><?php _e( 'Smart Image Resizing' ); ?></h4>
     113                                        <h3><?php _e( 'Smart Image Resizing' ); ?></h3>
    114114                                        <p><?php printf( __( 'Generated images now load up to 50&#37; faster with no noticeable quality loss. <a href="%s">It&#8217;s really cool</a>.' ), 'https://make.wordpress.org/core/2016/03/12/performance-improvements-for-images-in-wordpress-4-5/' ); ?></p>
    115115                                </div>
    116116                                <div class="col">
    117                                         <h4><?php _e( 'Selective Refresh' ); ?></h4>
    118                                         <p><?php 
     117                                        <h3><?php _e( 'Selective Refresh' ); ?></h3>
     118                                        <p><?php
    119119                                                printf( __( 'The customizer now supports a <a href="%s">comprehensive framework</a> for rendering parts of the preview without rewriting your PHP code in JavaScript.' ), 'https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/' );
    120120                                                if ( current_user_can( 'customize' ) && current_user_can( 'edit_theme_options' ) ) {
    121121                                                        if ( current_theme_supports( 'menus' ) && ! current_theme_supports( 'customize-selective-refresh-widgets' ) ) {
     
    127127                                        ?></p>
    128128                                </div>
    129129                                <div class="col">
    130                                         <h4><?php _e( 'JavaScript Library Updates' ); ?></h4>
     130                                        <h3><?php _e( 'JavaScript Library Updates' ); ?></h3>
    131131                                        <p><?php _e( 'jQuery 1.12.3, jQuery Migrate 1.4.0, Backbone 1.2.3, and Underscore 1.8.3 are bundled.' ); ?></p>
    132132                                </div>
    133133                        </div>
     
    134134
    135135                        <div class="under-the-hood two-col">
    136136                                <div class="col">
    137                                         <h4><?php _e( 'Script Loader Improvements' ); ?></h4>
     137                                        <h3><?php _e( 'Script Loader Improvements' ); ?></h3>
    138138                                        <p><?php printf( __( 'Better support has been added for script header/footer dependencies. New <code><a href="%s">wp_add_inline_script()</a></code> enables adding extra code to registered scripts.' ), 'https://make.wordpress.org/core/2016/03/08/enhanced-script-loader-in-wordpress-4-5/' ); ?></p>
    139139                                </div>
    140140                                <div class="col">
    141                                         <h4><?php _e( 'Better Embed Templates' ); ?></h4>
     141                                        <h3><?php _e( 'Better Embed Templates' ); ?></h3>
    142142                                        <p><?php printf( __( 'Embed templates have been split into parts and can be <a href="%s">directly overridden by themes</a> via the template hierarchy.' ), 'https://make.wordpress.org/core/2016/03/11/embeds-changes-in-wordpress-4-5/' ); ?></p>
    143143                                </div>
    144144                        </div>
  • src/wp-admin/css/about.css

     
    109109        text-align: center;
    110110}
    111111
     112.about-wrap .changelog h2,
    112113.about-wrap h3 {
    113114        margin: 1.25em 0 .6em;
    114115        font-size: 1.25em;
     
    115116        line-height: 1.5em;
    116117}
    117118
    118 .about-wrap .changelog h3 {
     119.about-wrap .changelog h2 {
    119120        margin-top: 40px;
     121        font-weight: 600;
     122        text-align: left;
    120123}
    121124
    122125.about-wrap h4 {
     
    123126        color: #23282d;
    124127}
    125128
     129.about-wrap .changelog h3 {
     130        margin: 1.33em 0;
     131        font-size: 1em;
     132        line-height: inherit;
     133        color: #23282d;
     134}
     135
    126136.about-wrap code,
    127137.about-wrap ol li p {
    128138        font-size: 14px;