Make WordPress Core

Ticket #33557: 33557.2.diff

File 33557.2.diff, 5.3 KB (added by afercia, 9 years ago)
  • src/wp-admin/css/common.css

     
    20282028        margin-right: 190px;
    20292029}
    20302030
    2031 .metabox-holder h3 {
     2031.metabox-holder h3.hndle, /* Back-compat for pre-4.4 */
     2032.metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */
     2033.metabox-holder h2 {
    20322034        font-size: 14px;
    20332035        padding: 8px 12px;
    20342036        margin: 0;
     
    20352037        line-height: 1.4;
    20362038}
    20372039
     2040/* Back-compat for nav-menus screen */
     2041.nav-menus-php .metabox-holder h3 {
     2042        padding: 10px 10px 11px 14px;
     2043        line-height: 21px;
     2044}
     2045
    20382046#templateside ul li a {
    20392047        text-decoration: none;
    20402048}
     
    34003408                font-size: 14px;
    34013409        }
    34023410
    3403         .metabox-holder h3 {
     3411        .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */
     3412        .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */
     3413        .metabox-holder h2 {
    34043414                padding: 12px;
    34053415        }
    34063416
  • src/wp-admin/css/dashboard.css

     
    947947        box-shadow: none;
    948948}
    949949
    950 #dashboard_browser_nag.postbox.browser-insecure h3 {
     950#dashboard_browser_nag.postbox.browser-insecure h2 {
    951951        border-bottom-color: #cd5a5a;
    952952        color: #fff;
    953953}
    954954
    955 #dashboard_browser_nag.postbox h3 {
     955#dashboard_browser_nag.postbox h2 {
    956956        border-bottom-color: #f6e2ac;
    957957        background: transparent none;
    958958        color: #fff;
     
    966966
    967967/* Make the browser nags easier to read with Open Sans */
    968968
    969 #dashboard_browser_nag h3.hndle {
     969#dashboard_browser_nag h2.hndle {
    970970        border: none;
    971971        font-weight: 600;
    972972        font-size: 20px;
  • src/wp-admin/css/edit.css

     
    239239        margin: 8px 0 5px;
    240240}
    241241
     242/* Back-compat for pre-4.4 */
    242243#category-adder h4 {
     244    margin: 0;
     245}
     246
     247.taxonomy-add-new {
     248        display: inline-block;
    243249        margin: 10px 0;
     250        font-weight: 600;
    244251}
    245252
    246253#side-sortables .add-menu-item-tabs,
     
    627634        position: absolute;
    628635}
    629636
     637#poststuff h3.hndle, /* Back-compat for pre-4.4 */
     638#poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */
    630639#poststuff h2 {
    631         margin-top: 20px;
    632         font-size: 1.5em;
    633         margin-bottom: 15px;
    634         padding: 0 0 3px;
    635         clear: left;
    636 }
    637 
    638 #poststuff h3 {
    639640        font-size: 14px;
    640641        padding: 8px 12px;
    641642        margin: 0;
     
    13581359                padding: 10px 10px;
    13591360        }
    13601361
    1361         #poststuff h3 {
     1362        #poststuff h3.hndle, /* Back-compat for pre-4.4 */
     1363        #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */
     1364        #poststuff h2 {
    13621365                padding: 12px;
    13631366        }
    13641367
  • src/wp-admin/includes/meta-boxes.php

     
    497497                </div>
    498498        <?php if ( current_user_can( $taxonomy->cap->edit_terms ) ) : ?>
    499499                        <div id="<?php echo $tax_name; ?>-adder" class="wp-hidden-children">
    500                                 <h4>
    501                                         <a id="<?php echo $tax_name; ?>-add-toggle" href="#<?php echo $tax_name; ?>-add" class="hide-if-no-js">
    502                                                 <?php
    503                                                         /* translators: %s: add new taxonomy label */
    504                                                         printf( __( '+ %s' ), $taxonomy->labels->add_new_item );
    505                                                 ?>
    506                                         </a>
    507                                 </h4>
     500                                <a id="<?php echo $tax_name; ?>-add-toggle" href="#<?php echo $tax_name; ?>-add" class="hide-if-no-js taxonomy-add-new">
     501                                        <?php
     502                                                /* translators: %s: add new taxonomy label */
     503                                                printf( __( '+ %s' ), $taxonomy->labels->add_new_item );
     504                                        ?>
     505                                </a>
    508506                                <p id="<?php echo $tax_name; ?>-add" class="category-add wp-hidden-child">
    509507                                        <label class="screen-reader-text" for="new<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->add_new_item; ?></label>
    510508                                        <input type="text" name="new<?php echo $tax_name; ?>" id="new<?php echo $tax_name; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( $taxonomy->labels->new_item_name ); ?>" aria-required="true"/>
     
    933931        </div>
    934932
    935933        <div id="category-adder" class="wp-hidden-children">
    936                 <h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4>
     934                <a id="category-add-toggle" href="#category-add" class="taxonomy-add-new"><?php _e( '+ Add New Category' ); ?></a>
    937935                <p id="link-category-add" class="wp-hidden-child">
    938936                        <label class="screen-reader-text" for="newcat"><?php _e( '+ Add New Category' ); ?></label>
    939937                        <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php esc_attr_e( 'New category name' ); ?>" aria-required="true" />
  • src/wp-admin/includes/template-functions.php

     
    994994                                                echo '<span class="toggle-indicator" aria-hidden="true"></span>';
    995995                                                echo '</button>';
    996996                                        }
    997                                         echo "<h3 class='hndle'><span>{$box['title']}</span></h3>\n";
     997                                        echo "<h2 class='hndle'><span>{$box['title']}</span></h2>\n";
    998998                                        echo '<div class="inside">' . "\n";
    999999                                        call_user_func($box['callback'], $object, $box);
    10001000                                        echo "</div>\n";