mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Rework
This commit is contained in:
parent
c2f26f5fd4
commit
af8540a331
3 changed files with 4 additions and 9 deletions
|
@ -83,13 +83,7 @@ public class StoreEntryListOverviewComp extends SimpleComp {
|
|||
return inRootCategory && showProvider;
|
||||
},
|
||||
StoreViewState.get().getActiveCategory());
|
||||
var shownList = all.filtered(
|
||||
storeEntryWrapper -> {
|
||||
return storeEntryWrapper.matchesFilter(
|
||||
StoreViewState.get().getFilterString().getValue());
|
||||
},
|
||||
StoreViewState.get().getFilterString());
|
||||
var count = new CountComp<>(shownList.getList(), all.getList());
|
||||
var count = new CountComp<>(all.getList(), all.getList());
|
||||
|
||||
var c = count.createRegion();
|
||||
var topBar = new HBox(
|
||||
|
|
|
@ -43,9 +43,9 @@
|
|||
|
||||
.prefs .sidebar .button {
|
||||
-fx-background-color: transparent;
|
||||
-fx-padding: 0.5em 1em 0.5em 1.5em;
|
||||
-fx-padding: 0.5em 1em 0.5em 1.0em;
|
||||
-fx-background-radius: 0, 4, 4;
|
||||
-fx-background-insets: 0, 1 8 1 8;
|
||||
-fx-background-insets: 0, 1 4 1 4;
|
||||
}
|
||||
|
||||
.prefs .sidebar .button:selected {
|
||||
|
|
|
@ -402,3 +402,4 @@ virshInstall.displayDescription=Connect to all available libvirt hypervisors via
|
|||
addHypervisor=Add hypervisor
|
||||
serialConsole=Serial console
|
||||
interactiveTerminal=Interactive terminal
|
||||
editDomain=Edit domain
|
||||
|
|
Loading…
Reference in a new issue