support playlist folder drag/drop

This commit is contained in:
jeffvli
2026-05-13 18:39:06 -07:00
parent c4ef6f3799
commit fcd4c27fb8
5 changed files with 539 additions and 69 deletions
@@ -3,6 +3,20 @@
flex-direction: column;
}
.header-dragged-over {
position: relative;
&::after {
position: absolute;
inset: 0;
pointer-events: none;
content: "";
border: 2px solid var(--theme-colors-primary);
border-radius: var(--theme-radius-md);
opacity: 0.8;
}
}
.header {
display: flex;
gap: var(--theme-spacing-md);
@@ -110,3 +124,17 @@
flex-shrink: 0;
opacity: 0.6;
}
.root-drop-target-dragged-over {
position: relative;
&::after {
position: absolute;
inset: 0;
pointer-events: none;
content: "";
border: 2px solid var(--theme-colors-primary);
border-radius: var(--theme-radius-md);
opacity: 0.8;
}
}