mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-27 17:05:29 -04:00
filter boxes generally working
This commit is contained in:
parent
a4bb43a1d5
commit
014dced7b1
3 changed files with 22 additions and 10 deletions
|
@ -222,7 +222,7 @@
|
|||
-jfx-focus-color: transparent;
|
||||
-fx-background-color: -bs-background-color;
|
||||
-fx-border-color: -bs-background-gray;
|
||||
-fx-padding: 5 14;
|
||||
-fx-padding: 4 14;
|
||||
}
|
||||
|
||||
.jfx-combo-box .prompt-container {
|
||||
|
@ -1544,9 +1544,9 @@ textfield */
|
|||
-fx-border-radius: 999;
|
||||
-fx-focus-color: transparent;
|
||||
-fx-faint-focus-color: transparent;
|
||||
-fx-padding: 5 14 5 14;
|
||||
-fx-border-width: 0;
|
||||
-fx-border-color: transparent;
|
||||
-fx-padding: 9 18 9 18;
|
||||
-fx-border-width: 1px;
|
||||
-fx-border-color: -bs-color-background-button-border;
|
||||
-fx-background-insets: 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -188,7 +188,6 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
|
|||
|
||||
noDepositOffersToggleButton = new ToggleButton(Res.get("offerbook.filterNoDeposit"));
|
||||
noDepositOffersToggleButton.getStyleClass().add("toggle-button-no-slider");
|
||||
noDepositOffersToggleButton.setPrefHeight(27);
|
||||
Tooltip noDepositOffersTooltip = new Tooltip(Res.get("offerbook.noDepositOffers"));
|
||||
Tooltip.install(noDepositOffersToggleButton, noDepositOffersTooltip);
|
||||
|
||||
|
|
|
@ -556,16 +556,29 @@
|
|||
|
||||
.toggle-button-no-slider {
|
||||
-fx-background-color: -bs-color-background-button-background;
|
||||
-fx-border-color: -bs-color-background-button-border;
|
||||
-fx-padding: 4 13 4 13;
|
||||
-fx-border-width: 1px;
|
||||
}
|
||||
|
||||
.toggle-button-no-slider:selected {
|
||||
-fx-text-fill: white;
|
||||
-fx-background-color: -bs-color-gray-ccc;
|
||||
-fx-padding: 5 14 5 14;
|
||||
-fx-border-width: 0px;
|
||||
-fx-border-color: -bs-color-gray-ccc;
|
||||
-fx-border-width: 1px;
|
||||
}
|
||||
|
||||
.toggle-button-no-slider:hover {
|
||||
-fx-cursor: hand;
|
||||
-fx-background-color: -bs-color-gray-ddd;
|
||||
-fx-border-color: -bs-color-gray-ddd;
|
||||
}
|
||||
|
||||
.toggle-button-no-slider:selected:hover {
|
||||
-fx-cursor: hand;
|
||||
-fx-background-color: -bs-color-gray-3;
|
||||
-fx-border-color: -bs-color-gray-3;
|
||||
}
|
||||
|
||||
.toggle-button-no-slider:pressed, .toggle-button-no-slider:selected:hover:pressed {
|
||||
-fx-background-color: -bs-color-gray-bbb;
|
||||
}
|
||||
|
||||
#image-logo-landscape {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue