added progressbar

added an option to disable progressbar
added interrupt support to DDIM/PLMS
This commit is contained in:
AUTOMATIC
2022-09-06 02:09:01 +03:00
parent b6763fb884
commit a243bc7859
11 changed files with 170 additions and 9 deletions

View File

@@ -71,3 +71,28 @@ input[type="range"]{
padding-left: 0.6em;
padding-right: 0.6em;
}
.progressDiv{
width: 100%;
height: 30px;
background: #b4c0cc;
border-radius: 8px;
}
.dark .progressDiv{
background: #424c5b;
}
.progressDiv .progress{
width: 0%;
height: 30px;
background: #0060df;
color: white;
font-weight: bold;
line-height: 30px;
padding: 0 8px 0 0;
text-align: right;
border-radius: 8px;
}