@ -66,6 +66,10 @@ class CoinCell extends TreeTableCell<Entry, Number> {
} else {
setGraphic(null);
}
if(amount.longValue() < 0) {
getStyleClass().add("negative-amount");
} else if(entry instanceof UtxoEntry) {
} else if(entry instanceof HashIndexEntry) {
@ -416,6 +416,7 @@ public class EntryCell extends TreeTableCell<Entry, Entry> {
cell.getStyleClass().remove("address-cell");
cell.getStyleClass().remove("hashindex-row");
cell.getStyleClass().remove("confirming");
cell.getStyleClass().remove("negative-amount");
cell.getStyleClass().remove("spent");
cell.getStyleClass().remove("unspendable");
@ -110,6 +110,10 @@
-fx-text-fill: #e06c75;
.root .coin-cell.negative-amount {
-fx-text-fill: #e09499;
.root .etched-raised-border {
-fx-border-color: #ffffff, #000000;
-fx-border-style: solid, solid;
@ -75,6 +75,14 @@
-fx-padding: 0 8 0 0;
.coin-cell.negative-amount {
-fx-text-fill: rgb(202, 18, 67);
.tree-table-row-cell:selected .coin-cell.negative-amount {
-fx-text-fill: white;
.confirmation-progress-circle, .confirmation-progress-tick {
-fx-stroke: -fx-text-base-color;