Changeset 8827
- Timestamp:
- 09/05/2008 11:19:08 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/categories.php
r8682 r8827 129 129 <h2><?php printf( current_user_can('manage_categories') ? __('Categories (<a href="%s">Add New</a>)') : __('Manage Tags'), '#addcat' ); ?></h2> 130 130 131 <p id=" post-search">132 <label class="hidden" for=" post-search-input"><?php _e('Search Categories'); ?>:</label>133 <input type="text" id=" post-search-input" name="s" value="<?php echo attribute_escape(stripslashes($_GET['s'])); ?>" />131 <p id="category-search" class="search-box"> 132 <label class="hidden" for="category-search-input"><?php _e('Search Categories'); ?>:</label> 133 <input type="text" id="category-search-input" class="search-input" name="s" value="<?php echo attribute_escape(stripslashes($_GET['s'])); ?>" /> 134 134 <input type="submit" value="<?php _e( 'Search Categories' ); ?>" class="button" /> 135 135 </p> -
trunk/wp-admin/css/colors-classic.css
r8803 r8827 74 74 75 75 #post-body ul#category-tabs li.ui-tabs-selected, .button-secondary, 76 #quicktags, #login form .submit input, #post-search.button,77 # post-search-prep .button, #ed_reply_toolbar {76 #quicktags, #login form .submit input, .search-box .button, 77 #ed_reply_toolbar { 78 78 background-color: #8ebddc !important; 79 79 } -
trunk/wp-admin/css/colors-fresh.css
r8803 r8827 74 74 75 75 #post-body ul#category-tabs li.ui-tabs-selected, .button-secondary, 76 #quicktags, #login form .submit input, #post-search.button,77 # post-search-prep .button, #ed_reply_toolbar {76 #quicktags, #login form .submit input, .search-box .button, 77 #ed_reply_toolbar { 78 78 background-color: #cee1ef !important; 79 79 } … … 140 140 } 141 141 142 .form-table input, .form-table textarea, #post-search-input {142 .form-table input, .form-table textarea, .search-input { 143 143 border-color: #c6d9e9; 144 144 } -
trunk/wp-admin/css/ie-rtl.css
r8663 r8827 58 58 position:static; 59 59 } 60 #post-search{60 .search-box { 61 61 display:none; 62 62 } -
trunk/wp-admin/css/ie.css
r7747 r8827 118 118 } 119 119 120 #post-search.button, #widget-search .button {120 .search-box .button, #widget-search .button { 121 121 padding: 1px; 122 122 } -
trunk/wp-admin/edit-comments.php
r8805 r8827 122 122 </ul> 123 123 124 <p id=" post-search">125 <label class="hidden" for=" post-search-input"><?php _e( 'Search Comments' ); ?>:</label>126 <input type="text" id=" post-search-input" name="s" value="<?php echo $search; ?>" />124 <p id="comment-search" class="search-box"> 125 <label class="hidden" for="comment-search-input"><?php _e( 'Search Comments' ); ?>:</label> 126 <input type="text" id="comment-search-input" class="search-input" name="s" value="<?php the_search_query(); ?>" /> 127 127 <input type="submit" value="<?php _e( 'Search Comments' ); ?>" class="button" /> 128 128 </p> -
trunk/wp-admin/edit-link-categories.php
r8682 r8827 68 68 <h2><?php printf( current_user_can('manage_categories') ? __('Link Categories (<a href="%s">Add New</a>)') : __('Manage Tags'), '#addcat' ); ?></h2> 69 69 70 <p id=" post-search">71 <label class="hidden" for=" post-search-input"><?php _e( 'Search Categories' ); ?>:</label>72 <input type="text" id=" post-search-input" name="s" value="<?php echo attribute_escape(stripslashes($_GET['s'])); ?>" />70 <p id="link-category-search" class="search-box"> 71 <label class="hidden" for="link-category-search-input"><?php _e( 'Search Categories' ); ?>:</label> 72 <input type="text" id="link-category-search-input" class="search-input" name="s" value="<?php the_search_query(); ?>" /> 73 73 <input type="submit" value="<?php _e( 'Search Categories' ); ?>" class="button" /> 74 74 </p> -
trunk/wp-admin/edit-pages.php
r8780 r8827 124 124 ?> 125 125 126 <p id="post-search"> 127 <label class="hidden" for="post-search-input"><?php _e( 'Search Pages' ); ?>:</label> 128 <input type="text" id="post-search-input" name="s" value="<?php echo attribute_escape(stripslashes($_GET['s'])); ?>" /> 129 <input type="submit" value="<?php _e( 'Search Pages' ); ?>" class="button" /> 126 <p id="page-search" class="search-box"> 127 <label class="hidden" for="page-search-input"><?php _e( 'Search Pages' ); ?>:</label> 128 <input type="text" id="page-search-input" name="s" value="<?php the_search_query(); ?>" /> 130 129 </p> 131 130 -
trunk/wp-admin/edit-tags.php
r8682 r8827 136 136 <h2><?php printf( current_user_can('manage_categories') ? __('Tags (<a href="%s">Add New</a>)') : __('Manage Tags'), '#addtag' ); ?></h2> 137 137 138 <p id=" post-search">139 <label class="hidden" for=" post-search-input"><?php _e( 'Search Tags' ); ?>:</label>140 <input type="text" id=" post-search-input" name="s" value="<?php echo attribute_escape(stripslashes($_GET['s'])); ?>" />138 <p id="tag-search" class="search-box"> 139 <label class="hidden" for="tag-search-input"><?php _e( 'Search Tags' ); ?>:</label> 140 <input type="text" id="tag-search-input" class="search-input" name="s" value="<?php the_search_query(); ?>" /> 141 141 <input type="submit" value="<?php _e( 'Search Tags' ); ?>" class="button" /> 142 142 </p> -
trunk/wp-admin/edit.php
r8780 r8827 139 139 ?> 140 140 141 <p id="post-search" >141 <p id="post-search" class="search-box"> 142 142 <label class="hidden" for="post-search-input"><?php _e( 'Search Posts' ); ?>:</label> 143 <input type="text" id="post-search-input" name="s" value="<?php the_search_query(); ?>" />143 <input type="text" id="post-search-input" class="search-input" name="s" value="<?php the_search_query(); ?>" /> 144 144 <input type="submit" value="<?php _e( 'Search Posts' ); ?>" class="button" /> 145 145 </p> -
trunk/wp-admin/includes/media.php
r8714 r8827 1211 1211 <input type="hidden" name="post_mime_type" value="<?php echo attribute_escape( $_GET['post_mime_type'] ); ?>" /> 1212 1212 1213 < div id="search-filter">1214 <label class="hidden" for=" post-search-input"><?php _e('Search Media');?>:</label>1215 <input type="text" id=" post-search-input" name="s" value="<?php the_search_query(); ?>" />1213 <p id="media-search" class="search-box"> 1214 <label class="hidden" for="media-search-input"><?php _e('Search Media');?>:</label> 1215 <input type="text" id="media-search-input" class="search-input" name="s" value="<?php the_search_query(); ?>" /> 1216 1216 <input type="submit" value="<?php echo attribute_escape( __( 'Search Media' ) ); ?>" class="button" /> 1217 </ div>1217 </p> 1218 1218 1219 1219 <ul class="subsubsub"> -
trunk/wp-admin/js/common.js
r8785 r8827 62 62 jQuery('#dashmenu li.wp-has-submenu').bind( 'mouseenter mouseleave', function() { return menuToggle( jQuery(this).children('ul'), 'toggle' ); } ); 63 63 64 // Temp65 if ( !$('#post-search, #widget-search').size() ) {66 $('#wphead').append( '<p id="post-search-prep"><input id="post-search-input" type="text" /><input class="button" type="button" value="Search" /></p>' );67 }68 69 64 } ); 70 65 -
trunk/wp-admin/link-manager.php
r8771 r8827 84 84 <div class="wrap"> 85 85 86 <form id=" posts-filter" action="" method="get">86 <form id="links-filter" action="" method="get"> 87 87 <h2><?php printf( __('Links (<a href="%s">Add New</a>)' ), 'link-add.php' ); ?></h2> 88 88 89 <p id=" post-search">90 <label class="hidden" for=" post-search-input"><?php _e( 'Search Links' ); ?>:</label>91 <input type="text" id=" post-search-input" name="s" value="<?php echo ( isset( $_GET['s'] ) ? attribute_escape(stripslashes($_GET['s'])) : ''); ?>" />89 <p id="link-search" class="search-box"> 90 <label class="hidden" for="link-search-input"><?php _e( 'Search Links' ); ?>:</label> 91 <input type="text" id="link-search-input" name="s" value="<?php the_search_query(); ?>" /> 92 92 <input type="submit" value="<?php _e( 'Search Links' ); ?>" class="button" /> 93 93 </p> -
trunk/wp-admin/rtl.css
r8691 r8827 307 307 margin-right: 18px; 308 308 } 309 p#tag-search, p #post-search{309 p#tag-search, p.search-box { 310 310 right:auto; 311 311 left:0; -
trunk/wp-admin/upload.php
r8780 r8827 139 139 ?> 140 140 141 <p id=" post-search">142 <label class="hidden" for=" post-search-input"><?php _e( 'Search Media' ); ?>:</label>143 <input type="text" id=" post-search-input" name="s" value="<?php the_search_query(); ?>" />141 <p id="media-search" class="search-box" > 142 <label class="hidden" for="media-search-input"><?php _e( 'Search Media' ); ?>:</label> 143 <input type="text" id="media-search-input" class="search-input" name="s" value="<?php the_search_query(); ?>" /> 144 144 <input type="submit" value="<?php _e( 'Search Media' ); ?>" class="button" /> 145 145 </p> -
trunk/wp-admin/users.php
r8691 r8827 301 301 </ul> 302 302 303 <p id=" post-search">304 <label class="hidden" for=" post-search-input"><?php _e( 'Search Users' ); ?>:</label>305 <input type="text" id=" post-search-input" name="usersearch" value="<?php echo attribute_escape($wp_user_search->search_term); ?>" />303 <p id="user-search" class="search-box"> 304 <label class="hidden" for="user-search-input"><?php _e( 'Search Users' ); ?>:</label> 305 <input type="text" id="user-search-input" class="search-input" name="usersearch" value="<?php echo attribute_escape($wp_user_search->search_term); ?>" /> 306 306 <input type="submit" value="<?php _e( 'Search Users' ); ?>" class="button" /> 307 307 </p> -
trunk/wp-admin/wp-admin.css
r8803 r8827 1546 1546 } 1547 1547 1548 p #post-search{1548 p.search-box { 1549 1549 position: absolute; 1550 1550 right: 0; … … 1553 1553 } 1554 1554 1555 #post-search.button, #widget-search .button {1555 p.search-box .button, #widget-search .button { 1556 1556 padding: 3px; 1557 1557 font-size: 13px; 1558 1558 } 1559 1559 1560 #post-search-input {1560 .search-input { 1561 1561 margin-right: 2px; 1562 1562 border-width: 1px;
Note: See TracChangeset
for help on using the changeset viewer.