From 529190687914e239117d1a7bd385cf3b20ec51af Mon Sep 17 00:00:00 2001 From: Rashed Hossain Date: Fri, 21 Aug 2026 15:46:33 +0600 Subject: [PATCH] Themes / Plugins: Ensure visual consistency between theme and plugin upload screens. Applies the responsive font-size and padding rules for `.install-help` to both `.upload-plugin` and `.upload-theme` at `max-width: 1120px`, and fixes indentation in `themes.css`. Fixes #55524. --- src/wp-admin/css/themes.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/css/themes.css b/src/wp-admin/css/themes.css index 24be8ac58c5be..d5cf0314a7139 100644 --- a/src/wp-admin/css/themes.css +++ b/src/wp-admin/css/themes.css @@ -1144,8 +1144,8 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { .upload-theme .wp-upload-form input[type="file"], .upload-plugin .wp-upload-form input[type="file"] { background: transparent; - margin: 0; - padding: 30px 0 30px 30px; + margin: 0; + padding: 30px 0 30px 30px; } .wp-upload-form input[type="submit"].button { @@ -1188,7 +1188,8 @@ p.no-themes-local { margin: 20px 0; max-width: 100%; } - .upload-theme .install-help { + .upload-theme .install-help, + .upload-plugin .install-help { font-size: 15px; padding: 20px 0 0; }