From 0357785f0e6b6a4cab71bf22b65c06f3733b0279 Mon Sep 17 00:00:00 2001 From: Solveig Natvig Date: Tue, 26 May 2026 15:36:38 +0200 Subject: [PATCH] Add css for end of game report --- src/main/Resources/Style/Global.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/main/Resources/Style/Global.css b/src/main/Resources/Style/Global.css index 05fa7ae..abacb9d 100644 --- a/src/main/Resources/Style/Global.css +++ b/src/main/Resources/Style/Global.css @@ -235,3 +235,19 @@ -fx-border-color: -dark-colour; -fx-opacity: 0.4; } + +/* Bold label in stat dialogs (stock stats, end-game report) */ +.stat-label { + -fx-font-weight: bold; +} + +/* Profit/loss colours in end-game report */ +.profit-label { + -fx-text-fill: rgb(46, 125, 50); + -fx-font-weight: bold; +} + +.loss-label { + -fx-text-fill: rgb(183, 70, 70); + -fx-font-weight: bold; +} \ No newline at end of file