mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Update class name
This commit is contained in:
parent
5a2592c832
commit
5458dbe90e
2 changed files with 6 additions and 6 deletions
|
@ -31,10 +31,6 @@
|
||||||
-fx-text-fill: -bs-rd-error-red;
|
-fx-text-fill: -bs-rd-error-red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-gray-ddd {
|
|
||||||
-fx-text-fill: -bs-color-gray-ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
-fx-accent: -bs-rd-error-red;
|
-fx-accent: -bs-rd-error-red;
|
||||||
}
|
}
|
||||||
|
@ -1925,6 +1921,10 @@ textfield */
|
||||||
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, -1, 3);
|
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, -1, 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.account-status-inactive-info-item {
|
||||||
|
-fx-text-fill: -bs-color-gray-ddd;
|
||||||
|
}
|
||||||
|
|
||||||
#price-feed-combo {
|
#price-feed-combo {
|
||||||
-fx-background-color: none;
|
-fx-background-color: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -119,7 +119,7 @@ public class AccountStatusTooltipLabel extends AutoTooltipLabel {
|
||||||
if (active) {
|
if (active) {
|
||||||
icon.getStyleClass().add("highlight");
|
icon.getStyleClass().add("highlight");
|
||||||
} else {
|
} else {
|
||||||
icon.getStyleClass().add("text-gray-ddd");
|
icon.getStyleClass().add("account-status-inactive-info-item");
|
||||||
}
|
}
|
||||||
|
|
||||||
Label label = new Label(text, icon);
|
Label label = new Label(text, icon);
|
||||||
|
@ -130,7 +130,7 @@ public class AccountStatusTooltipLabel extends AutoTooltipLabel {
|
||||||
if (active) {
|
if (active) {
|
||||||
label.getStyleClass().add("success-text");
|
label.getStyleClass().add("success-text");
|
||||||
} else {
|
} else {
|
||||||
label.getStyleClass().add("text-gray-ddd");
|
label.getStyleClass().add("account-status-inactive-info-item");
|
||||||
}
|
}
|
||||||
return label;
|
return label;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue