mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-27 08:55:22 -04:00
fix historical trades rounded corner top right
This commit is contained in:
parent
0dc0fb0029
commit
205bdd2d08
2 changed files with 2 additions and 6 deletions
|
@ -1115,10 +1115,6 @@ textfield */
|
|||
-fx-padding: 2 0 2 0;
|
||||
}
|
||||
|
||||
.table-view .column-header.last-column {
|
||||
-fx-padding: 0 10 0 0;
|
||||
}
|
||||
|
||||
.table-view .column-header.last-column .label {
|
||||
-fx-alignment: center-right;
|
||||
}
|
||||
|
@ -1142,9 +1138,9 @@ textfield */
|
|||
}
|
||||
|
||||
.table-view .column-header.last-column {
|
||||
-fx-padding: 0 10 0 0;
|
||||
-fx-background-radius: 0 15 0 0;
|
||||
-fx-border-radius: 0 15 0 0;
|
||||
|
||||
}
|
||||
|
||||
.number-column.table-cell {
|
||||
|
|
|
@ -866,7 +866,7 @@ public class TradesChartsView extends ActivatableViewAndModel<VBox, TradesCharts
|
|||
|
||||
// paymentMethod
|
||||
TableColumn<TradeStatistics3ListItem, TradeStatistics3ListItem> paymentMethodColumn = new AutoTooltipTableColumn<>(Res.get("shared.paymentMethod"));
|
||||
paymentMethodColumn.getStyleClass().add("number-column");
|
||||
paymentMethodColumn.getStyleClass().addAll("number-column", "last-column");
|
||||
paymentMethodColumn.setCellValueFactory((tradeStatistics) -> new ReadOnlyObjectWrapper<>(tradeStatistics.getValue()));
|
||||
paymentMethodColumn.setCellFactory(
|
||||
new Callback<>() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue