Skip to content

Commit 2b338e0

Browse files
committed
Fix GUI debug console traffic graph legend colors
The stylesheets override the custom palette colors for line widgets. This sets the colors for the traffic graph legend with style rules.
1 parent d03cb67 commit 2b338e0

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/qt/res/stylesheets/dark_stylesheet.qss

+10
Original file line numberDiff line numberDiff line change
@@ -803,3 +803,13 @@ QStatusBar QToolTip {
803803
#consolidateSendReadyLabel{
804804
color: rgb(55, 250, 55);
805805
}
806+
807+
/* Debug Console */
808+
809+
RPCConsole #greenLine {
810+
border-top-color: rgb(0, 255, 0);
811+
}
812+
813+
RPCConsole #redLine {
814+
border-top-color: rgb(255, 0, 0);
815+
}

src/qt/res/stylesheets/light_stylesheet.qss

+10
Original file line numberDiff line numberDiff line change
@@ -800,3 +800,13 @@ QStatusBar .QFrame QLabel {
800800
#consolidateSendReadyLabel{
801801
color: rgb(0, 128, 0);
802802
}
803+
804+
/* Debug Console */
805+
806+
RPCConsole #greenLine {
807+
border-top-color: rgb(0, 255, 0);
808+
}
809+
810+
RPCConsole #redLine {
811+
border-top-color: rgb(255, 0, 0);
812+
}

0 commit comments

Comments
 (0)