feat: v4.3.0 - cross-day drag (blocks can move between day rows)
Some checks failed
Build & Push Docker / build (push) Has been cancelled

This commit is contained in:
2026-02-20 18:36:51 +01:00
parent f3e2ae2cda
commit 751ffe6f82
5 changed files with 81 additions and 23 deletions

View File

@@ -765,6 +765,20 @@ body {
border: 1px solid var(--border);
border-radius: var(--radius-sm);
overflow: hidden;
position: relative;
}
/* Allow blocks to visually leave their row during cross-day drag */
.day-rows.dragging .day-row,
.day-rows.dragging .day-timeline {
overflow: visible;
}
/* Highlight the row being dragged over */
.day-timeline.drag-target {
background: #eff6ff;
outline: 2px solid var(--accent);
outline-offset: -2px;
}
.day-label {