Ticket #31349: 31349.patch
File 31349.patch, 1.2 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/common.css
1505 1505 display: none; 1506 1506 } 1507 1507 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 1508 1523 /*------------------------------------------------------------------------------ 1509 1524 6.2 - Help Menu 1510 1525 ------------------------------------------------------------------------------*/ -
src/wp-admin/includes/screen.php
1169 1169 id="<?php echo esc_attr( $option ); ?>" maxlength="3" 1170 1170 value="<?php echo esc_attr( $per_page ); ?>" /> 1171 1171 <label for="<?php echo esc_attr( $option ); ?>"> 1172 <?php echo esc_html($per_page_label ); ?>1172 <?php printf( '%s per page', $per_page_label ); ?> 1173 1173 </label> 1174 1174 <?php endif; 1175 1175