diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-03-28 16:40:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 16:40:52 +0000 |
commit | cb3e1ba9bd5a24373f10406f14c8c8a36dd3fb08 (patch) | |
tree | 985d2b54ca19bfbac0266cf703effb34cca0c695 | |
parent | f1db987e6a3d16e278ea44979b43e585d893237e (diff) | |
parent | 4b4902050684dc4db1bbd007a4f2e8f7c37bf1a4 (diff) | |
download | stable-diffusion-webui-gfx803-cb3e1ba9bd5a24373f10406f14c8c8a36dd3fb08.tar.gz stable-diffusion-webui-gfx803-cb3e1ba9bd5a24373f10406f14c8c8a36dd3fb08.tar.bz2 stable-diffusion-webui-gfx803-cb3e1ba9bd5a24373f10406f14c8c8a36dd3fb08.zip |
Merge pull request #9061 from zetclansu/patch-1
fix [Bug]: very wide image doesn't fit in inpaint. Update style.css
-rw-r--r-- | style.css | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -318,6 +318,13 @@ div.dimensions-tools{ min-height: 480px !important;
}
+#img2img_sketch, #img2maskimg, #inpaint_sketch {
+ overflow: overlay !important;
+ resize: auto;
+ background: var(--panel-background-fill);
+ z-index: 5;
+}
+
.image-buttons button{
min-width: auto;
}
|