Ticket #26496: 26496.patch
File 26496.patch, 1.5 KB (added by , 12 years ago) |
---|
-
src/wp-admin/css/wp-admin.css
6337 6337 6338 6338 .themes-php .wrap h2 { 6339 6339 float: left; 6340 margin-bottom: 15px;6340 margin-bottom: 30px; 6341 6341 } 6342 6342 6343 6343 .themes-php .wrap h2 .button { … … 6676 6676 * The search form 6677 6677 */ 6678 6678 .themes-php .theme-search { 6679 clear: right; 6680 float: right; 6679 6681 position: relative; 6680 top: -2px; 6681 left: 20px; 6682 top: 15px; 6682 6683 font-size: 16px; 6683 6684 font-weight: 300; 6684 6685 line-height: 1.5; 6686 width: 250px; 6685 6687 } 6686 6688 6687 6689 /** -
src/wp-admin/js/theme.js
70 70 71 71 // Render and append after screen title 72 72 view.render(); 73 $('#wpbody h2:first').append( view.el ); 73 $('#wpbody h2:first').after( view.el ); 74 $('#wpbody h2:first').after( '<label class="screen-reader-text" for="theme-search-input">' + l10n.search + '</label>' ); 74 75 }, 75 76 76 77 // Checks when the user gets close to the bottom -
src/wp-admin/themes.php
106 106 ), 107 107 'l10n' => array( 108 108 'addNew' => __( 'Add New Theme' ), 109 'search' => __( 'Search ...' ),109 'search' => __( 'Search Installed Themes...' ), 110 110 ), 111 111 ) ); 112 112