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.
2 parents 0adf321 + d4d6ded commit ec386beCopy full SHA for ec386be
src/components/blocks/blocks.css
@@ -79,8 +79,13 @@
79
/*
80
Fix an issue where the drag surface was preventing hover events for sharing blocks.
81
This does not prevent user interaction on the blocks themselves.
82
+ This was previously pointer-events: none, but that allowed clicks to fall through
83
+ causing incorrect stack clicks on duplicate, and prevented the correct
84
+ cursor from showing when dragging over the toolbox to delete.
85
*/
- pointer-events: none;
86
+ width: 1px;
87
+ height: 1px;
88
+ overflow: visible;
89
z-index: $z-index-drag-layer; /* make blocks match gui drag layer */
90
}
91
0 commit comments