Ticket #21598: 21598.theme-search-buttons.patch
File 21598.theme-search-buttons.patch, 1.3 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/theme-install.php
81 81 <label class="screen-reader-text" for="s"><?php _e('Search by keyword'); ?></label> 82 82 <?php endif; ?> 83 83 <input type="search" name="s" id="s" size="30" value="<?php echo esc_attr($term) ?>" autofocus="autofocus" /> 84 <?php submit_button( __( 'Search' ), ' button', 'search', false ); ?>84 <?php submit_button( __( 'Search' ), 'small', 'search', false ); ?> 85 85 </form> 86 86 <?php 87 87 } -
wp-admin/themes.php
219 219 <p class="search-box"> 220 220 <label class="screen-reader-text" for="theme-search-input"><?php _e('Search Installed Themes'); ?>:</label> 221 221 <input type="search" id="theme-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 222 <?php submit_button( __( 'Search Installed Themes' ), ' button', false, false, array( 'id' => 'search-submit' ) ); ?>222 <?php submit_button( __( 'Search Installed Themes' ), 'small', false, false, array( 'id' => 'search-submit' ) ); ?> 223 223 <a id="filter-click" href="?filter=1"><?php _e( 'Feature Filter' ); ?></a> 224 224 </p> 225 225