diff --git wp-admin/css/colors-classic.dev.css wp-admin/css/colors-classic.dev.css
index 26cb708..39abbd2 100644
|
|
|
table.widefat span.spam a, |
| 675 | 675 | } |
| 676 | 676 | |
| 677 | 677 | .tagchecklist span a, |
| 678 | | #bulk-titles div a { |
| | 678 | #bulk-titles div a, |
| | 679 | #clear-search { |
| 679 | 680 | background: url(../images/xit.gif) no-repeat; |
| 680 | 681 | } |
| 681 | 682 | |
| 682 | 683 | .tagchecklist span a:hover, |
| 683 | | #bulk-titles div a:hover { |
| | 684 | #bulk-titles div a:hover, |
| | 685 | #clear-search:hover { |
| 684 | 686 | background: url(../images/xit.gif) no-repeat -10px 0; |
| 685 | 687 | } |
| 686 | 688 | |
diff --git wp-admin/css/colors-fresh.dev.css wp-admin/css/colors-fresh.dev.css
index 6325917..feac81d 100644
|
|
|
table.widefat span.spam a, |
| 675 | 675 | } |
| 676 | 676 | |
| 677 | 677 | .tagchecklist span a, |
| 678 | | #bulk-titles div a { |
| | 678 | #bulk-titles div a, |
| | 679 | #clear-search { |
| 679 | 680 | background: url(../images/xit.gif) no-repeat; |
| 680 | 681 | } |
| 681 | 682 | |
| 682 | 683 | .tagchecklist span a:hover, |
| 683 | | #bulk-titles div a:hover { |
| | 684 | #bulk-titles div a:hover, |
| | 685 | #clear-search:hover { |
| 684 | 686 | background: url(../images/xit.gif) no-repeat -10px 0; |
| 685 | 687 | } |
| 686 | 688 | |
diff --git wp-admin/css/wp-admin.dev.css wp-admin/css/wp-admin.dev.css
index ce194eb..73d4f32 100644
|
|
|
p.search-box { |
| 270 | 270 | margin: -5px 0 0; |
| 271 | 271 | } |
| 272 | 272 | |
| | 273 | p.search-box span { |
| | 274 | display:inline-block; |
| | 275 | position:relative; |
| | 276 | } |
| | 277 | |
| | 278 | #clear-search { |
| | 279 | display:none; |
| | 280 | height:10px; |
| | 281 | width:10px; |
| | 282 | text-decoration:none; |
| | 283 | position:absolute; |
| | 284 | right:5px; |
| | 285 | top:7px; |
| | 286 | text-indent:-999em; |
| | 287 | } |
| | 288 | |
| | 289 | .searching #clear-search { |
| | 290 | display:block; |
| | 291 | } |
| | 292 | |
| | 293 | .searching input { |
| | 294 | padding-right:17px; |
| | 295 | } |
| | 296 | |
| 273 | 297 | |
| 274 | 298 | /*------------------------------------------------------------------------------ |
| 275 | 299 | 3.0 - Actions |
diff --git wp-admin/includes/class-wp-list-table.php wp-admin/includes/class-wp-list-table.php
index 13a688c..b1aefd2 100644
|
|
|
class WP_List_Table { |
| 195 | 195 | return; |
| 196 | 196 | |
| 197 | 197 | $input_id = $input_id . '-search-input'; |
| 198 | | |
| 199 | 198 | ?> |
| 200 | 199 | <p class="search-box"> |
| 201 | 200 | <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label> |
| 202 | | <input type="text" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>" /> |
| | 201 | <span<?php echo empty( $_REQUEST['s'] ) ? '' : ' class="searching"'; ?>> |
| | 202 | <input type="text" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>" /> |
| | 203 | <a id="clear-search" title="<?php _e( 'Clear search results' ); ?>" class="ntdelbutton" href="<?php echo remove_query_arg( array( 's', 'action', 'action2' ) ); ?>">X</a> |
| | 204 | </span> |
| 203 | 205 | <?php submit_button( $text, 'button', false, false, array('id' => 'search-submit') ); ?> |
| 204 | 206 | </p> |
| 205 | 207 | <?php |