diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-11-02 06:47:53 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-11-02 06:48:02 +0000 |
commit | 95c6308ccd2e075d1fb804f5b98a4f0b07b87b7d (patch) | |
tree | 6d76338895052fe2e1769699ee630fef5477b85c /style.css | |
parent | 65522ff157e4be4095a99421da04ecb0749824ac (diff) | |
download | stable-diffusion-webui-gfx803-95c6308ccd2e075d1fb804f5b98a4f0b07b87b7d.tar.gz stable-diffusion-webui-gfx803-95c6308ccd2e075d1fb804f5b98a4f0b07b87b7d.tar.bz2 stable-diffusion-webui-gfx803-95c6308ccd2e075d1fb804f5b98a4f0b07b87b7d.zip |
switch to gradio 3.8
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;
|