From 6b91b057e55a32953f55f0c760b56f5bf5677506 Mon Sep 17 00:00:00 2001 From: bvcxza <175357591+bvcxza@users.noreply.github.com> Date: Thu, 31 Oct 2024 11:01:00 -0300 Subject: [PATCH] fix background color of txid when funds are withdrawn in dark mode (#1367) --- desktop/src/main/java/haveno/desktop/theme-dark.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/desktop/src/main/java/haveno/desktop/theme-dark.css b/desktop/src/main/java/haveno/desktop/theme-dark.css index db5c66a2..8e7345b3 100644 --- a/desktop/src/main/java/haveno/desktop/theme-dark.css +++ b/desktop/src/main/java/haveno/desktop/theme-dark.css @@ -241,6 +241,10 @@ -fx-border-width: 0 0 10 0; } +#address-text-field.jfx-text-field:readonly { + -fx-background-color: derive(-bs-background-color, 15%); +} + .wallet-seed-words { -fx-text-fill: -bs-color-gray-6; }