Resize table rows in offer book

This commit is contained in:
Christoph Atteneder 2018-02-16 12:33:36 +01:00
parent b172068cb3
commit ee7f2e116a
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B
2 changed files with 5 additions and 0 deletions

View file

@ -721,6 +721,10 @@ textfield */
-fx-alignment: center;
}
.offer-table .table-row-cell {
-fx-cell-size: 23px;
}
/* Offer */
.percentage-label {

View file

@ -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<>();