Skip to content

Commit

Permalink
Merge pull request #2142 from cyrossignol/fix-traffic-legend
Browse files Browse the repository at this point in the history
gui: Fix debug console traffic graph legend colors
  • Loading branch information
jamescowens authored May 20, 2021
2 parents 008a384 + 2b338e0 commit 148d1b1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/qt/res/stylesheets/dark_stylesheet.qss
Original file line number Diff line number Diff line change
Expand Up @@ -816,3 +816,13 @@ NoResult #titleLabel {
#consolidateSendReadyLabel{
color: rgb(55, 250, 55);
}

/* Debug Console */

RPCConsole #greenLine {
border-top-color: rgb(0, 255, 0);
}

RPCConsole #redLine {
border-top-color: rgb(255, 0, 0);
}
10 changes: 10 additions & 0 deletions src/qt/res/stylesheets/light_stylesheet.qss
Original file line number Diff line number Diff line change
Expand Up @@ -813,3 +813,13 @@ NoResult #titleLabel {
#consolidateSendReadyLabel{
color: rgb(0, 128, 0);
}

/* Debug Console */

RPCConsole #greenLine {
border-top-color: rgb(0, 255, 0);
}

RPCConsole #redLine {
border-top-color: rgb(255, 0, 0);
}

0 comments on commit 148d1b1

Please sign in to comment.