Make WordPress Core

Ticket #33557: 33557.7.patch

File 33557.7.patch, 4.8 KB (added by afercia, 9 years ago)
  • src/wp-admin/css/common.css

     
    19811981        margin-right: 190px;
    19821982}
    19831983
     1984.metabox-holder h2,
    19841985.metabox-holder h3 {
    19851986        font-size: 14px;
    19861987        padding: 8px 12px;
     
    19881989        line-height: 1.4;
    19891990}
    19901991
     1992/* backwards compatibility with current nav-menus screen */
     1993.nav-menus-php .metabox-holder h3 {
     1994        padding: 10px 10px 11px 14px;
     1995        line-height: 21px;
     1996}
     1997
    19911998#templateside ul li a {
    19921999        text-decoration: none;
    19932000}
     
    33573364                font-size: 14px;
    33583365        }
    33593366
    3360         .metabox-holder h3 {
     3367        .metabox-holder h2 {
    33613368                padding: 12px;
    33623369        }
    33633370
  • 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

     
    234234        margin: 8px 0 5px;
    235235}
    236236
    237 #category-adder h4 {
     237.taxonomy-add-new {
     238        display: inline-block;
    238239        margin: 10px 0;
     240        font-weight: 600;
    239241}
    240242
    241243#side-sortables .add-menu-item-tabs,
     
    616618        position: absolute;
    617619}
    618620
    619 #poststuff h2 {
    620         margin-top: 20px;
    621         font-size: 1.5em;
    622         margin-bottom: 15px;
    623         padding: 0 0 3px;
    624         clear: left;
    625 }
    626 
     621#poststuff h2,
    627622#poststuff h3 {
    628623        font-size: 14px;
    629624        padding: 8px 12px;
     
    13471342                padding: 10px 10px;
    13481343        }
    13491344
     1345        #poststuff h2,
    13501346        #poststuff h3 {
    13511347                padding: 12px;
    13521348        }
  • src/wp-admin/includes/meta-boxes.php

     
    484484                </div>
    485485        <?php if ( current_user_can( $taxonomy->cap->edit_terms ) ) : ?>
    486486                        <div id="<?php echo $tax_name; ?>-adder" class="wp-hidden-children">
    487                                 <h4>
    488                                         <a id="<?php echo $tax_name; ?>-add-toggle" href="#<?php echo $tax_name; ?>-add" class="hide-if-no-js">
    489                                                 <?php
    490                                                         /* translators: %s: add new taxonomy label */
    491                                                         printf( __( '+ %s' ), $taxonomy->labels->add_new_item );
    492                                                 ?>
    493                                         </a>
    494                                 </h4>
     487                                <a id="<?php echo $tax_name; ?>-add-toggle" href="#<?php echo $tax_name; ?>-add" class="hide-if-no-js taxonomy-add-new">
     488                                        <?php
     489                                                /* translators: %s: add new taxonomy label */
     490                                                printf( __( '+ %s' ), $taxonomy->labels->add_new_item );
     491                                        ?>
     492                                </a>
    495493                                <p id="<?php echo $tax_name; ?>-add" class="category-add wp-hidden-child">
    496494                                        <label class="screen-reader-text" for="new<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->add_new_item; ?></label>
    497495                                        <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"/>
     
    908906        </div>
    909907
    910908        <div id="category-adder" class="wp-hidden-children">
    911                 <h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4>
     909                <a id="category-add-toggle" href="#category-add" class="taxonomy-add-new"><?php _e( '+ Add New Category' ); ?></a>
    912910                <p id="link-category-add" class="wp-hidden-child">
    913911                        <label class="screen-reader-text" for="newcat"><?php _e( '+ Add New Category' ); ?></label>
    914912                        <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

     
    987987                                                echo '<span class="screen-reader-text">' . sprintf( __( 'Click to toggle %s panel' ), $box['title'] ) . '</span><br />';
    988988                                                echo '</button>';
    989989                                        }
    990                                         echo "<h3 class='hndle'><span>{$box['title']}</span></h3>\n";
     990                                        echo "<h2 class='hndle'><span>{$box['title']}</span></h2>\n";
    991991                                        echo '<div class="inside">' . "\n";
    992992                                        call_user_func($box['callback'], $object, $box);
    993993                                        echo "</div>\n";