diff options
author | MMP0 <28616020+MMP0@users.noreply.github.com> | 2023-08-22 12:21:06 +0000 |
---|---|---|
committer | MMP0 <28616020+MMP0@users.noreply.github.com> | 2023-08-22 12:21:06 +0000 |
commit | ed49c7c246c320562df977865476a8c43e81f1b3 (patch) | |
tree | 81174265c365197d2555da5f487f2ac7285d4bcb /style.css | |
parent | c4b11ec54e236cc42d43fe8282ef4e4f55ccd605 (diff) | |
download | stable-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.css | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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;
|