feat: add per-layer LED range and collapsible layers to composite source
Some checks failed
Lint & Test / test (push) Failing after 33s

Composite layers now support optional start/end LED range (toggleable)
and reverse flag, making composite a superset of mapped source. Layers
are collapsible with animated expand/collapse and consistent 0.85rem
font sizing. Delete button restyled as ghost icon button.

Also includes minor dashboard CSS overflow fixes.
This commit is contained in:
2026-03-24 17:15:22 +03:00
parent 4caafbb78f
commit bbef7e5869
12 changed files with 349 additions and 51 deletions

View File

@@ -119,6 +119,11 @@
color: var(--primary-text-color);
}
.dashboard-target-info > div {
min-width: 0;
overflow: hidden;
}
.dashboard-target-name {
font-size: 0.85rem;
font-weight: 600;
@@ -130,6 +135,11 @@
gap: 4px;
}
.dashboard-target-name-text {
overflow: hidden;
text-overflow: ellipsis;
}
.dashboard-card-link {
cursor: pointer;
}