Sortable
Sortable copied to clipboard
[bug] why cant't turn the cursor style to 'move' while dragging even though set the dropEffect of 'move'

- I want the cursor turn to move style while dragging
I want too
Ditto! pointer-events: none is blocking being able to set the cursor. Don't know the implications of pointer-events though.
You could set document.body.classList.add('is-dragging') onStart event, and set document.body.classList.remove(is-dragging') onEnd event. The class 'is-dragging' like this:
.is-dragging, .is-dragging * { cursor: copy; }