From 2e44d6a348fbbf047871bda4b4c5cc055d7d8e2b Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Mon, 2 Mar 2026 18:36:36 -0600 Subject: [PATCH] Modify active theme colors to fix empty div background Changes the active theme actions panel to have no background color to avoid possibility of empty background. --- src/wp-admin/css/themes.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/css/themes.css b/src/wp-admin/css/themes.css index 41754ad235edf..e4e3b254ed172 100644 --- a/src/wp-admin/css/themes.css +++ b/src/wp-admin/css/themes.css @@ -253,11 +253,15 @@ body.js .theme-browser.search-loading { } .theme-browser .theme.active .theme-actions { - background: rgba(44, 51, 56, 0.7); + background: transparent; border-left: none; opacity: 1; } +.theme-browser .theme.active .theme-actions .button-primary { + border-color: #fff; +} + .theme-id-container { position: relative; }