Make WordPress Core

Ticket #33557: 33557.6.patch

File 33557.6.patch, 2.6 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

     
    616616        position: absolute;
    617617}
    618618
    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 
     619#poststuff h2,
    627620#poststuff h3 {
    628621        font-size: 14px;
    629622        padding: 8px 12px;
     
    13471340                padding: 10px 10px;
    13481341        }
    13491342
     1343        #poststuff h2,
    13501344        #poststuff h3 {
    13511345                padding: 12px;
    13521346        }
  • src/wp-admin/includes/template.php

     
    11001100                                                echo '<span class="screen-reader-text">' . sprintf( __( 'Click to toggle %s panel' ), $box['title'] ) . '</span><br />';
    11011101                                                echo '</button>';
    11021102                                        }
    1103                                         echo "<h3 class='hndle'><span>{$box['title']}</span></h3>\n";
     1103                                        echo "<h2 class='hndle'><span>{$box['title']}</span></h2>\n";
    11041104                                        echo '<div class="inside">' . "\n";
    11051105                                        call_user_func($box['callback'], $object, $box);
    11061106                                        echo "</div>\n";