Style fixes

This commit is contained in:
crschnick 2024-07-18 16:34:07 +00:00
parent 0632875c7d
commit 708c2d0c3f
4 changed files with 7 additions and 7 deletions

View file

@ -42,12 +42,11 @@ public final class BrowserBookmarkHeaderComp extends SimpleComp {
var top = new HorizontalComp(List.of(category, filter))
.apply(struc -> struc.get().setFillHeight(true))
.apply(struc -> {
((Region) struc.get().getChildren().get(0))
.prefHeightProperty()
.bind(((Region) struc.get().getChildren().get(1)).heightProperty());
((Region) struc.get().getChildren().get(0))
.minWidthProperty()
.bind(struc.get().widthProperty().divide(2.0));
var first = ((Region) struc.get().getChildren().get(0));
var second = ((Region) struc.get().getChildren().get(1));
first.prefHeightProperty().bind(second.heightProperty());
first.minHeightProperty().bind(second.heightProperty());
first.maxHeightProperty().bind(second.heightProperty());
})
.styleClass("bookmarks-header")
.createRegion();

View file

@ -35,6 +35,7 @@ public class FilterComp extends Comp<CompStructure<CustomTextField>> {
}
});
var filter = new CustomTextField();
filter.setMinHeight(0);
filter.setMaxHeight(2000);
filter.getStyleClass().add("filter-comp");
filter.promptTextProperty().bind(AppI18n.observable("searchFilter"));

View file

@ -36,5 +36,5 @@
-fx-min-height: 3.3em;
-fx-pref-height: 3.3em;
-fx-max-height: 3.3em;
-fx-padding: 10 6 10 8;
-fx-padding: 9 6 9 8;
}