From 3aaca02d3439a779b4a7772a235524e82c5916a6 Mon Sep 17 00:00:00 2001 From: woodser <13068859+woodser@users.noreply.github.com> Date: Thu, 15 May 2025 17:39:41 -0400 Subject: [PATCH] fix light border on chat messages --- desktop/src/main/java/haveno/desktop/haveno.css | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/desktop/src/main/java/haveno/desktop/haveno.css b/desktop/src/main/java/haveno/desktop/haveno.css index 3a5d38b951..99199864f7 100644 --- a/desktop/src/main/java/haveno/desktop/haveno.css +++ b/desktop/src/main/java/haveno/desktop/haveno.css @@ -454,11 +454,6 @@ tree-table-view:focused { -fx-font-size: 1em; } -.input-with-border { - -fx-border-width: 1; - -fx-border-color: -bs-color-border-form-field; -} - .offer-input { -fx-background-color: -bs-color-background-form-field; -fx-border-color: -bs-background-gray; @@ -2531,7 +2526,7 @@ textfield */ /******************************************************************************************************************** * * - * Popover * + * Popover * * * ********************************************************************************************************************/ .popover > .content { @@ -2546,3 +2541,13 @@ textfield */ -fx-stroke: linear-gradient(to bottom, -bs-text-color-transparent, -bs-text-color-transparent-dark) !important; -fx-fill: -bs-background-color !important; } + +/******************************************************************************************************************** + * * + * Other * + * * + ********************************************************************************************************************/ +.input-with-border { + -fx-border-width: 1; + -fx-border-color: -bs-color-border-form-field; +}