mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Resize table rows in offer book
This commit is contained in:
parent
b172068cb3
commit
ee7f2e116a
2 changed files with 5 additions and 0 deletions
|
@ -721,6 +721,10 @@ textfield */
|
|||
-fx-alignment: center;
|
||||
}
|
||||
|
||||
.offer-table .table-row-cell {
|
||||
-fx-cell-size: 23px;
|
||||
}
|
||||
|
||||
/* Offer */
|
||||
|
||||
.percentage-label {
|
||||
|
|
|
@ -302,6 +302,7 @@ public class OfferBookChartView extends ActivatableViewAndModel<VBox, OfferBookC
|
|||
tableView.setMinHeight(109);
|
||||
tableView.setPrefHeight(121);
|
||||
tableView.setMinWidth(480);
|
||||
tableView.getStyleClass().add("offer-table");
|
||||
|
||||
// price
|
||||
TableColumn<OfferListItem, OfferListItem> priceColumn = new TableColumn<>();
|
||||
|
|
Loading…
Add table
Reference in a new issue