Fix double click event not firing

This commit is contained in:
MMP0 2023-08-22 21:21:06 +09:00
parent c4b11ec54e
commit ed49c7c246

View File

@ -1065,10 +1065,14 @@ body.resizing {
cursor: col-resize !important; cursor: col-resize !important;
} }
body.resizing :not(.resize-handle) { body.resizing * {
pointer-events: none !important; pointer-events: none !important;
} }
body.resizing .resize-handle {
pointer-events: initial !important;
}
.resize-handle { .resize-handle {
position: relative; position: relative;
cursor: col-resize; cursor: col-resize;