fix non default split menu button text color on dark theme
What changed, and why it matters
This commit fixes a visual styling bug in the Sparrow Wallet dark theme. It changes a CSS rule so that the text color of labels inside split-menu buttons is white, matching the dark background. There is no security relevance in this change.
No security action needed. Treat as a normal UI/theme fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change modifies src/main/resources/com/sparrowwallet/sparrow/darktheme.css. It broadens a CSS selector from .split-menu-button.default-button > .label to .split-menu-button > .label so that all split-menu-button labels, not just default ones, get white text fill. This is purely a UI/theme correction.
Changed components
src/main/resources/com/sparrowwallet/sparrow/darktheme.cssInspect captured patch +1 / −1
diff --git a/src/main/resources/com/sparrowwallet/sparrow/darktheme.css b/src/main/resources/com/sparrowwallet/sparrow/darktheme.css
index 477a769..534a500 100644
--- a/src/main/resources/com/sparrowwallet/sparrow/darktheme.css
+++ b/src/main/resources/com/sparrowwallet/sparrow/darktheme.css
@@ -38,7 +38,7 @@
-fx-base: -fx-default-button;
}
-.split-menu-button.default-button > .label, .menu-item.default-button > .label {
+.split-menu-button > .label, .menu-item.default-button > .label {
-fx-text-fill: white;
}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.