Skip to content

Commit

Permalink
fix: drag cursor not showing (#7999)
Browse files Browse the repository at this point in the history
  • Loading branch information
BeksOmega committed Apr 8, 2024
1 parent 25ba5f0 commit 0cec8b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,9 @@ let content = `
.blocklyDragging {
cursor: grabbing;
cursor: -webkit-grabbing;
/* Drag surface disables events to not block the toolbox, so we have to
* reenable them here for the cursor values to work. */
pointer-events: auto;
}
/* Changes cursor on mouse down. Not effective in Firefox because of
Expand Down

0 comments on commit 0cec8b1

Please sign in to comment.