diff --git a/src/wp-admin/css/wp-admin.css b/src/wp-admin/css/wp-admin.css index 27195bfdac..92dcfda388 100644 --- a/src/wp-admin/css/wp-admin.css +++ b/src/wp-admin/css/wp-admin.css @@ -6682,6 +6682,7 @@ span.imgedit-scale-warn { font-size: 16px; font-weight: 300; line-height: 1.5; + width: 280px; } /** diff --git a/src/wp-admin/js/theme.js b/src/wp-admin/js/theme.js index 02d335ed17..9a525895a2 100644 --- a/src/wp-admin/js/theme.js +++ b/src/wp-admin/js/theme.js @@ -70,7 +70,9 @@ themes.view.Appearance = wp.Backbone.View.extend({ // Render and append after screen title view.render(); - $('#wpbody h2:first').append( view.el ); + $('#wpbody h2:first') + .append( $.parseHTML( '' ) ) + .append( view.el ); }, // Checks when the user gets close to the bottom @@ -597,7 +599,7 @@ themes.view.Search = wp.Backbone.View.extend({ className: 'theme-search', attributes: { - placeholder: l10n.search, + placeholder: l10n.searchPlaceholder, type: 'search' }, diff --git a/src/wp-admin/themes.php b/src/wp-admin/themes.php index bac6631b19..5d4fa6f1d9 100644 --- a/src/wp-admin/themes.php +++ b/src/wp-admin/themes.php @@ -106,7 +106,8 @@ wp_localize_script( 'theme', '_wpThemeSettings', array( ), 'l10n' => array( 'addNew' => __( 'Add New Theme' ), - 'search' => __( 'Search...' ), + 'search' => __( 'Search Installed Themes' ), + 'searchPlaceholder' => __( 'Search installed themes...' ), ), ) );