fix zero decimals

This commit is contained in:
woodser 2025-05-17 20:46:48 -04:00
parent 67935f8f8a
commit 25db62b68b
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF

View file

@ -85,9 +85,6 @@
-fx-fill: -bs-color-gray-6;
}
.zero-decimals {
-fx-text-fill: -bs-color-gray-3;
}
.confirmation-label {
-fx-font-size: 1.077em;
@ -2559,10 +2556,14 @@ textfield */
.table-view.non-interactive-table .table-cell.highlight-text .text,
.table-view.non-interactive-table .table-cell.highlight-text .hyperlink,
.table-view.non-interactive-table .table-cell.highlight-text .hyperlink .text {
-fx-fill: -fx-dark-text-color;
-fx-text-fill: -fx-dark-text-color;
}
.highlight-text {
-fx-text-fill: -fx-dark-text-color !important;
}
.zero-decimals,
.table-view.non-interactive-table .table-cell.highlight-text .zero-decimals { /* Match specificity with the above to override */
-fx-text-fill: -bs-color-gray-3;
}