diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-03-27 04:06:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 04:06:24 +0000 |
commit | e8f34e3b4105b0b22d1f48b6f4e4b072ed3aab12 (patch) | |
tree | 6982e43c0a1596e94c19eb9f48232ba84331cf09 /style.css | |
parent | c19036d3fe746a4d6599ecd247be095e264aeccb (diff) | |
parent | 945f6e5e99413ef74c386cdb7f029d1cac93a456 (diff) | |
download | stable-diffusion-webui-gfx803-e8f34e3b4105b0b22d1f48b6f4e4b072ed3aab12.tar.gz stable-diffusion-webui-gfx803-e8f34e3b4105b0b22d1f48b6f4e4b072ed3aab12.tar.bz2 stable-diffusion-webui-gfx803-e8f34e3b4105b0b22d1f48b6f4e4b072ed3aab12.zip |
Merge pull request #8938 from space-nuko/fix-image-ar-overlay
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
@@ -520,6 +520,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{
|