aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-05 23:09:01 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-09-05 23:09:01 +0000
commita243bc7859b7ab92a28d28c11b0ed5525fa0d6ba (patch)
tree8da54414ef8918317a6b7eab14f6ada3bed47d0e /style.css
parentb6763fb8847df5a5678f37137e7a702569e5c925 (diff)
downloadstable-diffusion-webui-gfx803-a243bc7859b7ab92a28d28c11b0ed5525fa0d6ba.tar.gz
stable-diffusion-webui-gfx803-a243bc7859b7ab92a28d28c11b0ed5525fa0d6ba.tar.bz2
stable-diffusion-webui-gfx803-a243bc7859b7ab92a28d28c11b0ed5525fa0d6ba.zip
added progressbar
added an option to disable progressbar added interrupt support to DDIM/PLMS
Diffstat (limited to 'style.css')
-rw-r--r--style.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/style.css b/style.css
index f10e7ee0..93bdcb13 100644
--- a/style.css
+++ b/style.css
@@ -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;
+}