mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +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;
|
||||
}
|
||||
|
||||
.text-gray-ddd {
|
||||
-fx-text-fill: -bs-color-gray-ddd;
|
||||
}
|
||||
|
||||
.error {
|
||||
-fx-accent: -bs-rd-error-red;
|
||||
}
|
||||
|
@ -1925,6 +1921,10 @@ textfield */
|
|||
-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 {
|
||||
-fx-background-color: none;
|
||||
}
|
||||
|
|
|
@ -119,7 +119,7 @@ public class AccountStatusTooltipLabel extends AutoTooltipLabel {
|
|||
if (active) {
|
||||
icon.getStyleClass().add("highlight");
|
||||
} else {
|
||||
icon.getStyleClass().add("text-gray-ddd");
|
||||
icon.getStyleClass().add("account-status-inactive-info-item");
|
||||
}
|
||||
|
||||
Label label = new Label(text, icon);
|
||||
|
@ -130,7 +130,7 @@ public class AccountStatusTooltipLabel extends AutoTooltipLabel {
|
|||
if (active) {
|
||||
label.getStyleClass().add("success-text");
|
||||
} else {
|
||||
label.getStyleClass().add("text-gray-ddd");
|
||||
label.getStyleClass().add("account-status-inactive-info-item");
|
||||
}
|
||||
return label;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue