Make WordPress Core

Ticket #33557: 33557.2.patch

File 33557.2.patch, 1.2 KB (added by joedolson, 9 years ago)

Also address responsive styles

  • 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 
    621 #poststuff h3 {
     613#poststuff h2, #poststuff h3 {
    622614        font-size: 14px;
    623615        padding: 8px 12px;
    624616        margin: 0;
     
    13411333                padding: 10px 10px;
    13421334        }
    13431335
    1344         #poststuff h3 {
     1336        #poststuff h2, #poststuff h3 {
    13451337                padding: 12px;
    13461338        }
    13471339
  • 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";