aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authorMMP0 <28616020+MMP0@users.noreply.github.com>2023-08-22 12:21:06 +0000
committerMMP0 <28616020+MMP0@users.noreply.github.com>2023-08-22 12:21:06 +0000
commited49c7c246c320562df977865476a8c43e81f1b3 (patch)
tree81174265c365197d2555da5f487f2ac7285d4bcb /style.css
parentc4b11ec54e236cc42d43fe8282ef4e4f55ccd605 (diff)
downloadstable-diffusion-webui-gfx803-ed49c7c246c320562df977865476a8c43e81f1b3.tar.gz
stable-diffusion-webui-gfx803-ed49c7c246c320562df977865476a8c43e81f1b3.tar.bz2
stable-diffusion-webui-gfx803-ed49c7c246c320562df977865476a8c43e81f1b3.zip
Fix double click event not firing
Diffstat (limited to 'style.css')
-rw-r--r--style.css6
1 files changed, 5 insertions, 1 deletions
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;