diff options
author | innovaciones <sonygarcia99@gmail.com> | 2022-09-20 18:06:38 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-22 05:12:10 +0000 |
commit | b9aed0c692c89c61e621b3ad988cd56995ed035f (patch) | |
tree | 572cc64ab5d01dd54e57d0401a7d8ef3c890fdd9 | |
parent | f183e09fcc17ee28c2ede2c5f0506c630d79486e (diff) | |
download | stable-diffusion-webui-gfx803-b9aed0c692c89c61e621b3ad988cd56995ed035f.tar.gz stable-diffusion-webui-gfx803-b9aed0c692c89c61e621b3ad988cd56995ed035f.tar.bz2 stable-diffusion-webui-gfx803-b9aed0c692c89c61e621b3ad988cd56995ed035f.zip |
Fix progress bar position
-rw-r--r-- | style.css | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -205,9 +205,10 @@ input[type="range"]{ }
#progressbar{
- position: absolute;
+ position: relative;
z-index: 1000;
right: 0;
+ display: none;
}
.progressDiv{
|