From ed49c7c246c320562df977865476a8c43e81f1b3 Mon Sep 17 00:00:00 2001 From: MMP0 <28616020+MMP0@users.noreply.github.com> Date: Tue, 22 Aug 2023 21:21:06 +0900 Subject: Fix double click event not firing --- style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'style.css') diff --git a/style.css b/style.css index 3cce8212..76c186a1 100644 --- a/style.css +++ b/style.css @@ -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; -- cgit v1.2.3