mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Extend row height
This commit is contained in:
parent
77989ebf91
commit
083856aace
3 changed files with 6 additions and 0 deletions
|
@ -1093,6 +1093,10 @@ textfield */
|
|||
-fx-border-width: 0px;
|
||||
}
|
||||
|
||||
.table-view.large-rows .table-row-cell {
|
||||
-fx-cell-size: 47px;
|
||||
}
|
||||
|
||||
.number-column.table-cell {
|
||||
|
||||
-fx-font-family: "IBM Plex Mono";
|
||||
|
|
|
@ -154,6 +154,7 @@ public class TransactionsView extends ActivatableView<VBox, Void> {
|
|||
|
||||
tableView.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
|
||||
tableView.setPlaceholder(new AutoTooltipLabel(Res.get("funds.tx.noTxAvailable")));
|
||||
tableView.getStyleClass().add("large-rows");
|
||||
|
||||
setDateColumnCellFactory();
|
||||
setDetailsColumnCellFactory();
|
||||
|
|
|
@ -69,6 +69,7 @@ public class SpreadView extends ActivatableViewAndModel<GridPane, SpreadViewMode
|
|||
@Override
|
||||
public void initialize() {
|
||||
tableView = new TableView<>();
|
||||
tableView.getStyleClass().add("large-rows");
|
||||
int gridRow = 0;
|
||||
GridPane.setRowIndex(tableView, gridRow);
|
||||
GridPane.setVgrow(tableView, Priority.ALWAYS);
|
||||
|
|
Loading…
Add table
Reference in a new issue