Make WordPress Core

Ticket #33557: 33557.4.patch

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

     
    19811981        margin-right: 190px;
    19821982}
    19831983
    1984 .metabox-holder h3 {
     1984.metabox-holder h2,
     1985.nav-menus-php .metabox-holder h3 {
    19851986        font-size: 14px;
    19861987        padding: 8px 12px;
    19871988        margin: 0;
     
    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/edit.css

     
    610610        position: absolute;
    611611}
    612612
    613 #poststuff h2 {
    614         margin-top: 20px;
    615         font-size: 1.5em;
    616         margin-bottom: 15px;
    617         padding: 0 0 3px;
    618         clear: left;
    619 }
    620 
     613#poststuff h2,
    621614#poststuff h3 {
    622615        font-size: 14px;
    623616        padding: 8px 12px;
     
    13411334                padding: 10px 10px;
    13421335        }
    13431336
     1337        #poststuff h2,
    13441338        #poststuff h3 {
    13451339                padding: 12px;
    13461340        }
  • 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";