From 25db62b68b925e1929cd53f7f4dde2d5646e8920 Mon Sep 17 00:00:00 2001 From: woodser <13068859+woodser@users.noreply.github.com> Date: Sat, 17 May 2025 20:46:48 -0400 Subject: [PATCH] fix zero decimals --- desktop/src/main/java/haveno/desktop/haveno.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/desktop/src/main/java/haveno/desktop/haveno.css b/desktop/src/main/java/haveno/desktop/haveno.css index 9cadeb1714..840606c0bf 100644 --- a/desktop/src/main/java/haveno/desktop/haveno.css +++ b/desktop/src/main/java/haveno/desktop/haveno.css @@ -85,9 +85,6 @@ -fx-fill: -bs-color-gray-6; } -.zero-decimals { - -fx-text-fill: -bs-color-gray-3; -} .confirmation-label { -fx-font-size: 1.077em; @@ -2559,10 +2556,14 @@ textfield */ .table-view.non-interactive-table .table-cell.highlight-text .text, .table-view.non-interactive-table .table-cell.highlight-text .hyperlink, .table-view.non-interactive-table .table-cell.highlight-text .hyperlink .text { - -fx-fill: -fx-dark-text-color; -fx-text-fill: -fx-dark-text-color; } .highlight-text { -fx-text-fill: -fx-dark-text-color !important; } + +.zero-decimals, +.table-view.non-interactive-table .table-cell.highlight-text .zero-decimals { /* Match specificity with the above to override */ + -fx-text-fill: -bs-color-gray-3; +} \ No newline at end of file