From f383728c064e8138e975a1a42752122ae2f505c7 Mon Sep 17 00:00:00 2001 From: woodser <13068859+woodser@users.noreply.github.com> Date: Mon, 26 May 2025 15:38:42 -0400 Subject: [PATCH] make interval toggles rounded --- desktop/src/main/java/haveno/desktop/haveno.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/desktop/src/main/java/haveno/desktop/haveno.css b/desktop/src/main/java/haveno/desktop/haveno.css index 7870450f1d..13d94b67c9 100644 --- a/desktop/src/main/java/haveno/desktop/haveno.css +++ b/desktop/src/main/java/haveno/desktop/haveno.css @@ -2326,34 +2326,34 @@ textfield */ } #toggle-left { - -fx-border-radius: 4 0 0 4; + -fx-border-radius: 5 5 5 5; -fx-border-color: -bs-color-border-form-field; -fx-border-style: solid; -fx-border-width: 1 1 1 1; -fx-border-insets: 0; -fx-background-insets: 0; - -fx-background-radius: 4 0 0 4; + -fx-background-radius: 5 5 5 5; -fx-background-color: -bs-background-color; } #toggle-center { - -fx-border-radius: 0; + -fx-border-radius: 5 5 5 5; -fx-border-color: -bs-color-border-form-field; -fx-border-style: solid; - -fx-border-width: 1 1 1 0; + -fx-border-width: 1 1 1 1; -fx-border-insets: 0; -fx-background-insets: 0; - -fx-background-radius: 0; + -fx-background-radius: 5 5 5 5; -fx-background-color: -bs-background-color; } #toggle-right { - -fx-border-radius: 0 4 4 0; + -fx-border-radius: 5 5 5 5; -fx-border-color: -bs-color-border-form-field; - -fx-border-width: 1 1 1 0; + -fx-border-width: 1 1 1 1; -fx-border-insets: 0; -fx-background-insets: 0; - -fx-background-radius: 0 4 4 0; + -fx-background-radius: 5 5 5 5; -fx-background-color: -bs-background-color; }