From 6c2f717cb72ca124644e9ec0a953914480728418 Mon Sep 17 00:00:00 2001 From: pasta Date: Fri, 21 Aug 2026 12:40:53 -0500 Subject: [PATCH] fix(qt): restore transparent background for all scroll areas cebae5a44556 narrowed the global .QScrollArea rule to only the masternode wizard's mnWizardScroll, so every other scroll area (e.g. the send entries area on the Send and CoinJoin screens) lost its transparent background and painted the default darker gray panel. Restore the global rule and keep the wizard-specific child-widget rules it actually needed. Co-Authored-By: Claude Fable 5 --- src/qt/res/css/general.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/qt/res/css/general.css b/src/qt/res/css/general.css index 48cb8e037d10..820972b87afa 100644 --- a/src/qt/res/css/general.css +++ b/src/qt/res/css/general.css @@ -811,7 +811,11 @@ QRadioButton::indicator:unchecked:disabled { QScrollArea ******************************************************/ -QScrollArea#mnWizardScroll, +.QScrollArea { + background-color: #00000000; + border: 0px; +} + QScrollArea#mnWizardScroll > QWidget, QScrollArea#mnWizardScroll > QWidget > QWidget { background-color: #00000000;