Themes: Fix missing search field in the Theme Install screen after [40572].
Props desrosj, cristianozanca for reporting. Fixes #34881. Built from https://develop.svn.wordpress.org/trunk@40586 git-svn-id: http://core.svn.wordpress.org/trunk@40456 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d7c32f6937
commit
cc9d3cfbb3
|
@ -20,7 +20,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search form */
|
/* Search form */
|
||||||
.themes-php .wp-filter-search-form {
|
.themes-php .search-form {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -20,7 +20,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search form */
|
/* Search form */
|
||||||
.themes-php .wp-filter-search-form {
|
.themes-php .search-form {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -83,7 +83,7 @@ themes.view.Appearance = wp.Backbone.View.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
// Defines search element container
|
// Defines search element container
|
||||||
searchContainer: $( '.wp-filter-search-form' ),
|
searchContainer: $( '.search-form' ),
|
||||||
|
|
||||||
// Search input and view
|
// Search input and view
|
||||||
// for current theme collection
|
// for current theme collection
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -164,7 +164,7 @@ include(ABSPATH . 'wp-admin/admin-header.php');
|
||||||
|
|
||||||
<button type="button" class="button drawer-toggle" aria-expanded="false"><?php _e( 'Feature Filter' ); ?></button>
|
<button type="button" class="button drawer-toggle" aria-expanded="false"><?php _e( 'Feature Filter' ); ?></button>
|
||||||
|
|
||||||
<div class="search-form"></div>
|
<form class="search-form"></form>
|
||||||
|
|
||||||
<div class="favorites-form">
|
<div class="favorites-form">
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -160,7 +160,7 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
||||||
<a href="<?php echo admin_url( 'theme-install.php' ); ?>" class="hide-if-no-js page-title-action"><?php echo esc_html_x( 'Add New', 'Add new theme' ); ?></a>
|
<a href="<?php echo admin_url( 'theme-install.php' ); ?>" class="hide-if-no-js page-title-action"><?php echo esc_html_x( 'Add New', 'Add new theme' ); ?></a>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<form class="wp-filter-search-form"></form>
|
<form class="search-form"></form>
|
||||||
|
|
||||||
<hr class="wp-header-end">
|
<hr class="wp-header-end">
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.8-alpha-40585';
|
$wp_version = '4.8-alpha-40586';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue