diff options
author | innovaciones <sonygarcia99@gmail.com> | 2022-09-21 17:47:17 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-22 05:12:10 +0000 |
commit | 12622105dc54f8904842e098a6e6dda7dace3d38 (patch) | |
tree | bfdaf8558dc2079aa8a2152a8e57ee115491ce0d | |
parent | 057206cb738b42dd624265b0c20505a2637d8626 (diff) | |
download | stable-diffusion-webui-gfx803-12622105dc54f8904842e098a6e6dda7dace3d38.tar.gz stable-diffusion-webui-gfx803-12622105dc54f8904842e098a6e6dda7dace3d38.tar.bz2 stable-diffusion-webui-gfx803-12622105dc54f8904842e098a6e6dda7dace3d38.zip |
Use generate button as progress bar
-rw-r--r-- | style.css | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -100,7 +100,6 @@ #toprow div{
border: none;
gap: 0;
- background: transparent;
}
#resize_mode{
@@ -205,15 +204,15 @@ input[type="range"]{ }
#progressbar{
- position: relative;
+ position: absolute;
z-index: 1000;
- right: 0;
+ width: 100%;
display: none;
}
.progressDiv{
width: 100%;
- height: 30px;
+ height: 72px;
background: #b4c0cc;
border-radius: 8px;
}
@@ -224,11 +223,11 @@ input[type="range"]{ .progressDiv .progress{
width: 0%;
- height: 30px;
+ height: 72px;
background: #0060df;
color: white;
font-weight: bold;
- line-height: 30px;
+ line-height: 72px;
padding: 0 8px 0 0;
text-align: right;
border-radius: 8px;
|