Fix double click event not firing

This commit is contained in:
MMP0 2023-08-22 21:21:06 +09:00
parent c4b11ec54e
commit ed49c7c246
1 changed files with 5 additions and 1 deletions

View File

@ -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;