Make WordPress Core

Ticket #31349: 31349.patch

File 31349.patch, 1.2 KB (added by afercia, 10 years ago)
  • src/wp-admin/css/common.css

     
    15051505        display: none;
    15061506}
    15071507
     1508.metabox-prefs .screen-options {
     1509        padding-top: 10px;
     1510}
     1511
     1512.metabox-prefs .screen-options input,
     1513.metabox-prefs .screen-options label {
     1514        margin-top: 0;
     1515        margin-bottom: 0;
     1516        vertical-align: middle;
     1517}
     1518
     1519.metabox-prefs .screen-options label {
     1520        line-height: 28px;
     1521}
     1522
    15081523/*------------------------------------------------------------------------------
    15091524  6.2 - Help Menu
    15101525------------------------------------------------------------------------------*/
  • src/wp-admin/includes/screen.php

     
    11691169                                        id="<?php echo esc_attr( $option ); ?>" maxlength="3"
    11701170                                        value="<?php echo esc_attr( $per_page ); ?>" />
    11711171                                <label for="<?php echo esc_attr( $option ); ?>">
    1172                                         <?php echo esc_html( $per_page_label ); ?>
     1172                                        <?php printf( '%s per page', $per_page_label ); ?>
    11731173                                </label>
    11741174                        <?php endif;
    11751175