feat: selected items

This commit is contained in:
kodi
2026-03-13 12:26:17 +01:00
parent 7ab233be2c
commit e43d49540d
3 changed files with 43 additions and 10 deletions
+16
View File
@@ -137,11 +137,27 @@ h1 {
color: var(--color-text-muted);
font-size: 12px;
line-height: 1.25;
display: flex;
align-items: center;
gap: 10px;
min-width: 0;
}
.pane-focus-name {
flex: 1 1 auto;
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.pane-focus-selected {
flex: 0 0 auto;
white-space: nowrap;
color: var(--color-text-secondary, var(--color-text-primary));
opacity: 0.9;
}
.toolbar {
display: flex;
flex-wrap: wrap;