mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-04-22 15:40:31 -04:00
Fix batch mode actions not working in small windows
This commit is contained in:
@@ -48,7 +48,8 @@ public class StoreEntryListStatusBarComp extends SimpleComp {
|
||||
struc.get().setAlignment(Pos.CENTER);
|
||||
});
|
||||
var busy = new SimpleBooleanProperty();
|
||||
var actions = new ToolbarComp(createActions(busy));
|
||||
var actions = new HorizontalComp(createActions(busy));
|
||||
actions.spacing(2);
|
||||
var close = new IconButtonComp("mdi2c-close", () -> {
|
||||
StoreViewState.get().getBatchMode().setValue(false);
|
||||
});
|
||||
|
||||
@@ -6,6 +6,19 @@
|
||||
|
||||
.store-entry-list-status-bar .button {
|
||||
-fx-padding: 4 8;
|
||||
-fx-background-color: transparent;
|
||||
-fx-border-width: 1;
|
||||
-fx-border-color: transparent;
|
||||
-fx-border-radius: 4;
|
||||
}
|
||||
|
||||
.root.nord .store-entry-list-status-bar .button {
|
||||
-fx-border-radius: 0;
|
||||
}
|
||||
|
||||
.store-entry-list-status-bar .button:hover {
|
||||
-fx-border-color: -color-border-default;
|
||||
-fx-border-width: 1;
|
||||
}
|
||||
|
||||
.store-list-comp.scroll-pane * {
|
||||
|
||||
Reference in New Issue
Block a user