diff options
author | guaneec <guaneec@users.noreply.github.com> | 2022-10-15 14:10:39 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-15 14:24:02 +0000 |
commit | 606519813dd998140a741096f9029c732ee52d2a (patch) | |
tree | d1a33a230d0bb635497c3ad8883e6378e7c98108 | |
parent | b6e3b96dab94a00f51725f9cc977eebc6b4072ab (diff) | |
download | stable-diffusion-webui-gfx803-606519813dd998140a741096f9029c732ee52d2a.tar.gz stable-diffusion-webui-gfx803-606519813dd998140a741096f9029c732ee52d2a.tar.bz2 stable-diffusion-webui-gfx803-606519813dd998140a741096f9029c732ee52d2a.zip |
Prevent modal content from being selected
-rw-r--r-- | style.css | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -309,6 +309,8 @@ input[type="range"]{ height: 100%;
overflow: auto;
background-color: rgba(20, 20, 20, 0.95);
+ user-select: none;
+ -webkit-user-select: none;
}
.modalControls {
@@ -513,4 +515,4 @@ img2maskimg, #img2maskimg > .h-60, #img2maskimg > .h-60 > div, #img2maskimg > .h height: 480px !important;
max-height: 480px !important;
min-height: 480px !important;
-}
\ No newline at end of file +}
|