We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666ee1e commit 5edeb54Copy full SHA for 5edeb54
1 file changed
packages/core/src/editor/editor.css
@@ -80,6 +80,11 @@
80
hidden. So setting it to an extremely low value instead makes the element
81
functionally invisible while not affecting the drag preview itself. */
82
opacity: 0.001;
83
+ /* The element is kept in the DOM after setDragImage captures its snapshot,
84
+ so it can overlap the editor and block drops in that area. Disabling
85
+ pointer-events lets drag/drop events pass through to the editor while
86
+ leaving the captured preview unaffected. */
87
+ pointer-events: none;
88
}
89
90
.bn-editor .bn-collaboration-cursor__base {
0 commit comments