mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
#2134 - Focus color of buttons should be more saturated/darker not lighter
This commit is contained in:
parent
bb46ea0fcb
commit
c495118c47
@ -298,12 +298,12 @@ bg color of non edit textFields: fafafa
|
||||
-fx-cursor: hand;
|
||||
}
|
||||
|
||||
.jfx-button:hover {
|
||||
-fx-background-color: derive(-bs-rd-grey-light, 30%);
|
||||
.jfx-button:hover, .jfx-button:focused {
|
||||
-fx-background-color: derive(-bs-rd-grey-light, -30%);
|
||||
}
|
||||
|
||||
.action-button:hover {
|
||||
-fx-background-color: derive(-bs-rd-green-dark, 30%);
|
||||
.action-button:hover, .action-button:focused {
|
||||
-fx-background-color: derive(-bs-rd-green-dark, -30%);
|
||||
}
|
||||
|
||||
.action-button {
|
||||
@ -1718,8 +1718,9 @@ textfield */
|
||||
-fx-text-fill: -bs-rd-white;
|
||||
}
|
||||
|
||||
#buy-button-big:hover, #buy-button:hover {
|
||||
-fx-background-color: derive(-bs-buy, 30%);
|
||||
#buy-button-big:hover, #buy-button:hover,
|
||||
#buy-button-big:focused, #buy-button:focused {
|
||||
-fx-background-color: derive(-bs-buy, -30%);
|
||||
}
|
||||
|
||||
#sell-button-big {
|
||||
@ -1733,8 +1734,9 @@ textfield */
|
||||
-fx-text-fill: -bs-rd-white;
|
||||
}
|
||||
|
||||
#sell-button-big:hover, #sell-button:hover {
|
||||
-fx-background-color: derive(-bs-sell, 30%);
|
||||
#sell-button-big:hover, #sell-button:hover,
|
||||
#sell-button-big:focused, #sell-button:focused {
|
||||
-fx-background-color: derive(-bs-sell, -30%);
|
||||
}
|
||||
|
||||
#sell-button-big.grey-style, #buy-button-big.grey-style,
|
||||
|
Loading…
Reference in New Issue
Block a user