diff --git a/src/wp-admin/css/wp-admin.css b/src/wp-admin/css/wp-admin.css index d80d37bfad..e3d530cbd8 100644 --- a/src/wp-admin/css/wp-admin.css +++ b/src/wp-admin/css/wp-admin.css @@ -7689,6 +7689,7 @@ body.full-overlay-active { font-size: 16px; line-height: 24px; margin-bottom: 0; + margin-top: 0; } .install-theme-info .theme-screenshot { @@ -7717,6 +7718,26 @@ body.full-overlay-active { line-height: 20px; } +#theme-installer .wp-full-overlay-header { + margin-top: 9px; +} + +#theme-installer .wp-full-overlay-header .theme-install { + float: right; + /* For when .theme-install is a span rather than a.button-primary (already installed theme) */ + line-height: 26px; +} + +#theme-installer .wp-full-overlay-sidebar { + background: #EEE; + border-right: 1px solid #DDD; +} + +#theme-installer .wp-full-overlay-main { + background: #fff url('../images/spinner.gif') no-repeat fixed center center; + background-size: 20px 20px; +} + /*------------------------------------------------------------------------------ 25.0 - Misc ------------------------------------------------------------------------------*/ @@ -10720,7 +10741,8 @@ li#wp-admin-bar-toggle-button { .spinner, .imgedit-wait, .customize-loading #customize-container, - .revision-tick.completed-false { + .revision-tick.completed-false, + #theme-installer .wp-full-overlay-main { background-image: url('../images/spinner-2x.gif'); } diff --git a/src/wp-admin/includes/class-wp-theme-install-list-table.php b/src/wp-admin/includes/class-wp-theme-install-list-table.php index 356a3f9412..7bb8f18626 100644 --- a/src/wp-admin/includes/class-wp-theme-install-list-table.php +++ b/src/wp-admin/includes/class-wp-theme-install-list-table.php @@ -255,7 +255,8 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {