feat(dashboard): Widget-Reihenfolge per Drag-and-Drop anpassbar

Config-Schema um order-Feld erweitert.
Bestehende Configs werden automatisch migriert.
Drag-and-Drop zusätzlich zu Up/Down-Buttons im Customize-Modal.
This commit is contained in:
Ulas Kalayci
2026-04-27 22:27:59 +02:00
parent a66bd2b05c
commit 218282875c
2 changed files with 44 additions and 2 deletions
+14
View File
@@ -1266,6 +1266,20 @@
background-color: var(--color-surface-hover);
}
.customize-row[draggable="true"] {
cursor: grab;
}
.customize-row--dragging {
opacity: 0.4;
}
.customize-row--over {
background-color: var(--color-surface-3);
outline: 1px dashed var(--color-border);
outline-offset: -1px;
}
.customize-row__toggle {
position: relative;
display: inline-flex;