diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-10-11 14:15:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 14:15:09 +0000 |
commit | 1eaad955330bbe2d55f6b528c902758739413dc8 (patch) | |
tree | fba92d854e283d3a413b1b36682bb23171a086d7 /style.css | |
parent | 7aa8fcac1e45c3ad9c6a40df0e44a346afcd5032 (diff) | |
parent | e0ee5bf703996b33e6d97aa36e0973ceedc88503 (diff) | |
download | stable-diffusion-webui-gfx803-1eaad955330bbe2d55f6b528c902758739413dc8.tar.gz stable-diffusion-webui-gfx803-1eaad955330bbe2d55f6b528c902758739413dc8.tar.bz2 stable-diffusion-webui-gfx803-1eaad955330bbe2d55f6b528c902758739413dc8.zip |
Merge branch 'master' into embed-embeddings-in-images
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -2,6 +2,27 @@ max-width: 100%;
}
+#txt2img_token_counter {
+ height: 0px;
+}
+
+#img2img_token_counter {
+ height: 0px;
+}
+
+#sh{
+ min-width: 2em;
+ min-height: 2em;
+ max-width: 2em;
+ max-height: 2em;
+ flex-grow: 0;
+ padding-left: 0.25em;
+ padding-right: 0.25em;
+ margin: 0.1em 0;
+ opacity: 0%;
+ cursor: default;
+}
+
.output-html p {margin: 0 0.5em;}
.row > *,
@@ -467,3 +488,10 @@ input[type="range"]{ max-width: 32em;
padding: 0;
}
+
+canvas[key="mask"] {
+ z-index: 12 !important;
+ filter: invert();
+ mix-blend-mode: multiply;
+ pointer-events: none;
+}
|