diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-10-01 22:29:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-01 22:29:26 +0000 |
commit | 027c5aae5546ff3650347cb3c2b87df4415ab900 (patch) | |
tree | a6e7a72e958be6836aee049deef4292808e80694 /modules/ui.py | |
parent | 6048002dade91b82b1ce9fea3c6ff5b5c1f8c990 (diff) | |
download | stable-diffusion-webui-gfx803-027c5aae5546ff3650347cb3c2b87df4415ab900.tar.gz stable-diffusion-webui-gfx803-027c5aae5546ff3650347cb3c2b87df4415ab900.tar.bz2 stable-diffusion-webui-gfx803-027c5aae5546ff3650347cb3c2b87df4415ab900.zip |
update reloading message style
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 72846a12..7b2359c2 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1010,7 +1010,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo, run_modelmerger): fn=request_restart,
inputs=[],
outputs=[],
- _js='function(){document.body.innerHTML=\'<h1 style="color:white;text-align: center;">Reloading</h1>\';setTimeout(function(){location.reload()},2000)}'
+ _js='function(){document.body.innerHTML=\'<h1 style="font-family:monospace;margin-top:20%;color:lightgray;text-align:center;">Reloading...</h1>\';setTimeout(function(){location.reload()},2000)}'
)
if column is not None:
|