fix(planka): drag & drop toute colonne + filtre listes par boardId
Deploy HouseHub / deploy (push) Successful in 2s

- Drop target = toute la colonne .pk-cards (plus la zone invisible de 4px)
- Filtre les listes et cartes strictement par boardId pour éliminer les listes fantômes
- Indicateur visuel 'Déposer ici' sur colonnes vides
- CSS: colonne highlight en bleu pointillé au survol drag

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
perco
2026-05-19 17:21:31 +02:00
co-authored by Claude Sonnet 4.6
parent 3516225e56
commit 285273108c
3 changed files with 41 additions and 10 deletions
+19
View File
@@ -444,3 +444,22 @@
.pk-page { height: auto; overflow: visible; }
.pk-board-area { overflow-x: auto; height: auto; padding-bottom: 4rem; }
}
/* ── Drag & Drop amélioré ──────────────────────────────────────────────────── */
.pk-cards.drag-over {
background: rgba(59,130,246,.07);
outline: 2px dashed var(--primary, #4361ee);
outline-offset: -2px;
border-radius: 8px;
min-height: 80px;
}
.pk-card.is-dragging { opacity: .4; }
.pk-drop-hint {
text-align: center;
color: var(--text-muted, #9ca3af);
font-size: .78rem;
padding: .75rem;
border: 2px dashed var(--border-light, #e5e7eb);
border-radius: 8px;
margin-bottom: .35rem;
}