Update class name

This commit is contained in:
xyzmaker123 2021-06-24 17:37:37 +02:00 committed by Christoph Atteneder
parent 5a2592c832
commit 5458dbe90e
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B
2 changed files with 6 additions and 6 deletions

View file

@ -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;
} }

View file

@ -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;
} }