diff --git a/src/wp-admin/css/forms.css b/src/wp-admin/css/forms.css
index 6349c1e864..71ab7819fe 100644
|
a
|
b
|
input[type="number"].tiny-text { |
| 503 | 503 | } |
| 504 | 504 | |
| 505 | 505 | .tablenav .actions select { |
| 506 | | float: left; |
| 507 | 506 | margin-right: 6px; |
| 508 | 507 | max-width: 12.5rem; |
| 509 | 508 | } |
| … |
… |
fieldset label, |
| 646 | 645 | display: inline-block; |
| 647 | 646 | } |
| 648 | 647 | |
| 649 | | p.search-box { |
| 650 | | float: right; |
| | 648 | #posts-filter fieldset.search-box, |
| | 649 | fieldset.search-box { |
| 651 | 650 | margin: 0; |
| | 651 | display: flex; |
| | 652 | justify-content: flex-end; |
| 652 | 653 | } |
| 653 | 654 | |
| 654 | | .network-admin.themes-php p.search-box { |
| 655 | | clear: left; |
| | 655 | fieldset.search-box #search-submit { |
| | 656 | margin-left: 4px; |
| 656 | 657 | } |
| 657 | 658 | |
| 658 | | .search-box input[name="s"], |
| 659 | | .tablenav .search-plugins input[name="s"], |
| 660 | 659 | .tagsdiv .newtag { |
| 661 | 660 | float: left; |
| 662 | 661 | margin: 0 4px 0 0; |
diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css
index 84e390d83e..e0beffcb2a 100644
|
a
|
b
|
th.asc a:focus span.sorting-indicator { |
| 777 | 777 | } |
| 778 | 778 | |
| 779 | 779 | #posts-filter fieldset { |
| 780 | | float: left; |
| 781 | 780 | margin: 0 1.5ex 1em 0; |
| 782 | 781 | padding: 0; |
| 783 | 782 | } |
| … |
… |
tr:hover .row-actions, |
| 858 | 857 | /* Layout */ |
| 859 | 858 | |
| 860 | 859 | #wpbody-content .inline-edit-row fieldset { |
| 861 | | float: left; |
| 862 | 860 | margin: 0; |
| 863 | 861 | padding: 0 12px 0 0; |
| 864 | 862 | width: 100%; |
| … |
… |
tr.inline-edit-row td { |
| 876 | 874 | } |
| 877 | 875 | |
| 878 | 876 | .inline-edit-wrapper { |
| 879 | | display: flow-root; |
| | 877 | display: flex; |
| | 878 | flex-wrap: wrap; |
| 880 | 879 | padding: 0 12px; |
| 881 | 880 | border: 1px solid transparent; |
| 882 | 881 | border-radius: 4px; |
diff --git a/src/wp-admin/includes/class-wp-list-table.php b/src/wp-admin/includes/class-wp-list-table.php
index 854f93064f..3c36930200 100644
|
a
|
b
|
class WP_List_Table { |
| 367 | 367 | echo '<input type="hidden" name="detached" value="' . esc_attr( $_REQUEST['detached'] ) . '" />'; |
| 368 | 368 | } |
| 369 | 369 | ?> |
| 370 | | <p class="search-box"> |
| | 370 | <fieldset class="search-box"> |
| 371 | 371 | <label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php echo $text; ?>:</label> |
| 372 | 372 | <input type="search" id="<?php echo esc_attr( $input_id ); ?>" name="s" value="<?php _admin_search_query(); ?>" /> |
| 373 | 373 | <?php submit_button( $text, '', '', false, array( 'id' => 'search-submit' ) ); ?> |
| 374 | | </p> |
| | 374 | </fieldset> |
| 375 | 375 | <?php |
| 376 | 376 | } |
| 377 | 377 | |
diff --git a/src/wp-admin/includes/class-wp-plugins-list-table.php b/src/wp-admin/includes/class-wp-plugins-list-table.php
index 217d2c7e52..7dbe46cd4c 100644
|
a
|
b
|
class WP_Plugins_List_Table extends WP_List_Table { |
| 442 | 442 | echo '<input type="hidden" name="order" value="' . esc_attr( $_REQUEST['order'] ) . '" />'; |
| 443 | 443 | } |
| 444 | 444 | ?> |
| 445 | | <p class="search-box"> |
| | 445 | <fieldset class="search-box"> |
| 446 | 446 | <label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php echo $text; ?>:</label> |
| 447 | 447 | <input type="search" id="<?php echo esc_attr( $input_id ); ?>" class="wp-filter-search" name="s" value="<?php _admin_search_query(); ?>" placeholder="<?php esc_attr_e( 'Search installed plugins...' ); ?>" /> |
| 448 | 448 | <?php submit_button( $text, 'hide-if-js', '', false, array( 'id' => 'search-submit' ) ); ?> |
| 449 | | </p> |
| | 449 | </fieldset> |
| 450 | 450 | <?php |
| 451 | 451 | } |
| 452 | 452 | |
diff --git a/src/wp-admin/includes/media.php b/src/wp-admin/includes/media.php
index 95a29d5e52..b6ac312c87 100644
|
a
|
b
|
function media_upload_library_form( $errors ) { |
| 2722 | 2722 | <input type="hidden" name="post_mime_type" value="<?php echo isset( $_GET['post_mime_type'] ) ? esc_attr( $_GET['post_mime_type'] ) : ''; ?>" /> |
| 2723 | 2723 | <input type="hidden" name="context" value="<?php echo isset( $_GET['context'] ) ? esc_attr( $_GET['context'] ) : ''; ?>" /> |
| 2724 | 2724 | |
| 2725 | | <p id="media-search" class="search-box"> |
| | 2725 | <fieldset id="media-search" class="search-box"> |
| 2726 | 2726 | <label class="screen-reader-text" for="media-search-input"><?php _e( 'Search Media' ); ?>:</label> |
| 2727 | 2727 | <input type="search" id="media-search-input" name="s" value="<?php the_search_query(); ?>" /> |
| 2728 | 2728 | <?php submit_button( __( 'Search Media' ), '', '', false ); ?> |
| 2729 | | </p> |
| | 2729 | </fieldset> |
| 2730 | 2730 | |
| 2731 | 2731 | <ul class="subsubsub"> |
| 2732 | 2732 | <?php |