diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-11-19 10:49:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-19 10:49:21 +0000 |
commit | 4b22ec413843cfc787bf5fced1193f77bb5cf0b6 (patch) | |
tree | 4f33c4dc3b60f08378ea8949b485b57262a37cbf | |
parent | 413c077969d35bc90a8b3218ab0db7e35c8c46f2 (diff) | |
parent | 72b52fbb77360f848cfa296b0c79d2bc0a1060f2 (diff) | |
download | stable-diffusion-webui-gfx803-4b22ec413843cfc787bf5fced1193f77bb5cf0b6.tar.gz stable-diffusion-webui-gfx803-4b22ec413843cfc787bf5fced1193f77bb5cf0b6.tar.bz2 stable-diffusion-webui-gfx803-4b22ec413843cfc787bf5fced1193f77bb5cf0b6.zip |
Merge pull request #4759 from dtlnor/kill-gradio-progress-bar
Hide Gradio progress again
-rw-r--r-- | modules/ui.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/ui.py b/modules/ui.py index b19c28c0..5dd97754 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -69,8 +69,11 @@ sample_img2img = sample_img2img if os.path.exists(sample_img2img) else None css_hide_progressbar = """
.wrap .m-12 svg { display:none!important; }
.wrap .m-12::before { content:"Loading..." }
+.wrap .z-20 svg { display:none!important; }
+.wrap .z-20::before { content:"Loading..." }
.progress-bar { display:none!important; }
.meta-text { display:none!important; }
+.meta-text-center { display:none!important; }
"""
# Using constants for these since the variation selector isn't visible.
|