#2134 - Focus color of buttons should be more saturated/darker not lighter

This commit is contained in:
Cave Spectre 2018-12-31 12:02:36 -05:00
parent bb46ea0fcb
commit c495118c47

View File

@ -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,