Drag-and-drop improvements for projects and issue pins (#29875)

1. Add "grabbing" cursor while dragging items:

![](c60845ff-7544-4215-aeaa-408e8c4ef03a)

2. Make project board only drag via their header, not via their whole
body.

![](62c27f3d-993a-481d-9cc3-b6226b4c5d61)

3. Fix some cursor problems in projects
4. Move shared options into `createSortable`.

(cherry picked from commit 7fda109aba6cd077343edef086b2f2ff60124f78)
This commit is contained in:
silverwind 2024-03-28 00:20:38 +01:00 committed by Earl Warren
parent c5ac296cd9
commit 47c61f909c
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
6 changed files with 27 additions and 10 deletions

View file

@ -19,6 +19,7 @@
overflow: visible;
display: flex;
flex-direction: column;
cursor: default;
}
.project-column-header {
@ -46,6 +47,7 @@
.project-column-title {
background: none !important;
line-height: 1.25 !important;
cursor: inherit;
}
.project-column > .cards {
@ -92,6 +94,7 @@
}
.card-ghost {
border-color: var(--color-secondary-dark-4) !important;
border-style: dashed !important;
background: none !important;
}

View file

@ -19,3 +19,7 @@
font-size: 14px;
margin-left: 4px;
}
.issue-card.sortable-chosen .issue-card-title {
cursor: inherit;
}