diff options
author | KyuSeok Jung <wjdrbtjr495@gmail.com> | 2022-11-02 08:10:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 08:10:56 +0000 |
commit | af6fba247553e670ef5e2dcc1866279f9f065d6d (patch) | |
tree | 160b205b1c11025b0195c3857c8a73cccc0c80c5 /style.css | |
parent | 467cae167a3066ffa2b2a5e6f16dd42642219aba (diff) | |
parent | 95c6308ccd2e075d1fb804f5b98a4f0b07b87b7d (diff) | |
download | stable-diffusion-webui-gfx803-af6fba247553e670ef5e2dcc1866279f9f065d6d.tar.gz stable-diffusion-webui-gfx803-af6fba247553e670ef5e2dcc1866279f9f065d6d.tar.bz2 stable-diffusion-webui-gfx803-af6fba247553e670ef5e2dcc1866279f9f065d6d.zip |
Merge branch 'master' into master
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -260,6 +260,16 @@ input[type="range"]{ #txt2img_negative_prompt, #img2img_negative_prompt{
}
+/* gradio 3.8 adds opacity to progressbar which makes it blink; disable it here */
+.transition.opacity-20 {
+ opacity: 1 !important;
+}
+
+/* more gradio's garbage cleanup */
+.min-h-\[4rem\] {
+ min-height: unset !important;
+}
+
#txt2img_progressbar, #img2img_progressbar, #ti_progressbar{
position: absolute;
z-index: 1000;
|