tweak borders of intervals

This commit is contained in:
woodser 2025-05-27 08:40:29 -04:00
parent f383728c06
commit cbb9112506
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF
2 changed files with 18 additions and 25 deletions

View file

@ -2326,49 +2326,46 @@ textfield */
}
#toggle-left {
-fx-border-radius: 5 5 5 5;
-fx-border-color: -bs-color-border-form-field;
-fx-border-color: -bs-rd-separator-dark;
-fx-border-radius: 4 0 0 4;
-fx-border-style: solid;
-fx-border-width: 1 1 1 1;
-fx-background-radius: 4 0 0 4;
-fx-border-insets: 0;
-fx-background-insets: 0;
-fx-background-radius: 5 5 5 5;
-fx-background-insets: 1 1 1 1;
-fx-background-color: -bs-background-color;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent, 4, 0, 0, 0, 2);
}
#toggle-center {
-fx-border-radius: 5 5 5 5;
-fx-border-color: -bs-color-border-form-field;
-fx-border-color: -bs-rd-separator-dark;
-fx-border-radius: 0;
-fx-border-style: solid;
-fx-border-width: 1 1 1 1;
-fx-border-width: 1 1 1 0;
-fx-border-insets: 0;
-fx-background-insets: 0;
-fx-background-radius: 5 5 5 5;
-fx-background-insets: 1 1 1 0;
-fx-background-radius: 0;
-fx-background-color: -bs-background-color;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent, 4, 0, 0, 0, 2);
}
#toggle-right {
-fx-border-radius: 5 5 5 5;
-fx-border-color: -bs-color-border-form-field;
-fx-border-width: 1 1 1 1;
-fx-border-color: -bs-rd-separator-dark;
-fx-border-radius: 0 4 4 0;
-fx-border-width: 1 1 1 0;
-fx-border-insets: 0;
-fx-background-insets: 0;
-fx-background-radius: 5 5 5 5;
-fx-background-insets: 1 1 1 0;
-fx-background-radius: 0 4 4 0;
-fx-background-color: -bs-background-color;
}
#toggle-center:focused, #toggle-left::focused, #toggle-right::focused {
-fx-text-fill: -bs-text-color;
-fx-background-color: -bs-toggle-selected;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent, 4, 0, 0, 0, 2);
}
#toggle-center:selected, #toggle-left:selected, #toggle-right:selected {
-fx-text-fill: white;
-fx-background-color: -bs-toggle-selected;
/*-fx-border-width: 0;*/
}
#toggle-left:hover, #toggle-right:hover, #toggle-center:hover {
#toggle-left:hover, #toggle-right:hover, #toggle-center:hover {
-fx-background-color: -bs-toggle-selected;
-fx-cursor: hand;
}

View file

@ -630,10 +630,6 @@
-fx-text-fill: -bs-text-color;
}
#toggle-left, #toggle-center, #toggle-right {
-fx-border-color: black;
}
#image-splash-logo {
-fx-image: url("../../images/logo_splash.png");
}