Skip to content

Commit

Permalink
Set the same size for search and dropdown items
Browse files Browse the repository at this point in the history
  • Loading branch information
axpoems committed Sep 25, 2024
1 parent 56497fa commit 2aaf926
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ private RichTableView(SortedList<T> sortedList,
VBox.setVgrow(tableView, Priority.ALWAYS);
VBox.setMargin(footerVBox, new Insets(10, 0, 0, 0));
getChildren().addAll(headerBox, tableView, footerVBox);
getStyleClass().add("rich-table-view-box");

listChangeListener = c -> listItemsChanged();
toggleChangeListener = (observable, oldValue, newValue) -> selectedFilterMenuItemChanged();
Expand Down
7 changes: 7 additions & 0 deletions apps/desktop/desktop/src/main/resources/css/containers.css
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,13 @@
* *
******************************************************************************/

.rich-table-view-box {
}

.rich-table-view-box .dropdown-menu {
-fx-padding: 5;
}

.standard-table-headline {
-fx-font-size: 1.8em;
-fx-font-family: "IBM Plex Sans Light";
Expand Down

0 comments on commit 2aaf926

Please sign in to comment.