Style fixes

This commit is contained in:
crschnick 2024-06-23 23:08:26 +00:00
parent eeeef57b8f
commit 140040468a
2 changed files with 7 additions and 2 deletions

View file

@ -48,9 +48,9 @@ public abstract class StoreEntryComp extends SimpleComp {
public static final PseudoClass FAILED = PseudoClass.getPseudoClass("failed");
public static final PseudoClass INCOMPLETE = PseudoClass.getPseudoClass("incomplete");
public static final ObservableDoubleValue INFO_NO_CONTENT_WIDTH =
App.getApp().getStage().widthProperty().divide(2.2).add(-100);
App.getApp().getStage().widthProperty().divide(2.1).add(-100);
public static final ObservableDoubleValue INFO_WITH_CONTENT_WIDTH =
App.getApp().getStage().widthProperty().divide(2.2).add(-200);
App.getApp().getStage().widthProperty().divide(2.1).add(-200);
protected final StoreEntryWrapper wrapper;
protected final Comp<?> content;

View file

@ -46,6 +46,11 @@
-fx-border-width: 2.70em 0 0 0, 2.65em 0 0 0;
}
.root:seamless-frame .browser .welcome {
-fx-background-radius: 0 10 0 0;
-fx-border-radius: 0 10 0 0;
}
.browser .welcome .button:hover {
-fx-background-color: -color-neutral-muted;
}