Skip to content

Commit

Permalink
Fix double click event not firing
Browse files Browse the repository at this point in the history
  • Loading branch information
MMP0 committed Aug 22, 2023
1 parent c4b11ec commit ed49c7c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1065,10 +1065,14 @@ body.resizing {
cursor: col-resize !important;
}

body.resizing :not(.resize-handle) {
body.resizing * {
pointer-events: none !important;
}

body.resizing .resize-handle {
pointer-events: initial !important;
}

.resize-handle {
position: relative;
cursor: col-resize;
Expand Down

0 comments on commit ed49c7c

Please sign in to comment.