diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-09-22 00:50:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-22 00:50:42 +0000 |
commit | 4985d7cd04c8bcf6e2fb7dbedd7872c36693a827 (patch) | |
tree | 016bdd4e5b5917d3b2ea79cadc6a8bae846cc38c /style.css | |
parent | 5a1951f17567022612aef5302fb650923a06fb54 (diff) | |
download | stable-diffusion-webui-gfx803-4985d7cd04c8bcf6e2fb7dbedd7872c36693a827.tar.gz stable-diffusion-webui-gfx803-4985d7cd04c8bcf6e2fb7dbedd7872c36693a827.tar.bz2 stable-diffusion-webui-gfx803-4985d7cd04c8bcf6e2fb7dbedd7872c36693a827.zip |
Add aspect ratio overlay styles
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -328,3 +328,14 @@ input[type="range"]{ .modalNext:hover {
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;
+}
|