diff options
author | MMP0 <28616020+MMP0@users.noreply.github.com> | 2023-08-22 07:45:34 +0000 |
---|---|---|
committer | MMP0 <28616020+MMP0@users.noreply.github.com> | 2023-08-22 07:45:34 +0000 |
commit | 0998256fc5e040fa1c1d5826bd858ab3838a3f26 (patch) | |
tree | 3fc6856c8a52d10f59799853195b1f1e02119b7a /style.css | |
parent | 70283a9f4aa457ea16db8947f60b0e4f8fb25608 (diff) | |
download | stable-diffusion-webui-gfx803-0998256fc5e040fa1c1d5826bd858ab3838a3f26.tar.gz stable-diffusion-webui-gfx803-0998256fc5e040fa1c1d5826bd858ab3838a3f26.tar.bz2 stable-diffusion-webui-gfx803-0998256fc5e040fa1c1d5826bd858ab3838a3f26.zip |
Prevent text selection and cursor changes
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1061,6 +1061,13 @@ div.accordions > div.input-accordion.input-accordion-open{ top: 0.5em;
}
+body.resizing {
+ cursor: col-resize !important;
+}
+
+body.resizing :not(.resize-handle) {
+ pointer-events: none !important;
+}
.resize-handle {
position: relative;
|