diff options
author | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-25 18:44:41 +0000 |
---|---|---|
committer | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-25 18:44:41 +0000 |
commit | 945f6e5e99413ef74c386cdb7f029d1cac93a456 (patch) | |
tree | a0a856e203112e3e0b0f89896071d2aaa3a43941 /style.css | |
parent | 91ae48fd7e20c60d6374f340cac0939f56d87048 (diff) | |
download | stable-diffusion-webui-gfx803-945f6e5e99413ef74c386cdb7f029d1cac93a456.tar.gz stable-diffusion-webui-gfx803-945f6e5e99413ef74c386cdb7f029d1cac93a456.tar.bz2 stable-diffusion-webui-gfx803-945f6e5e99413ef74c386cdb7f029d1cac93a456.zip |
Fix img2img aspect ratio overlay in Gradio 3.23.0
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -507,6 +507,17 @@ div.dimensions-tools{ background-color: rgba(0, 0, 0, 0.8);
}
+#imageARPreview {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ border: 2px solid red;
+ background: rgba(255, 0, 0, 0.3);
+ z-index: 900;
+ pointer-events: none;
+ display: none;
+}
+
/* context menu (ie for the generate button) */
#context-menu{
|