diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-22 05:15:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-22 05:15:22 +0000 |
commit | 013e9a4bdabb1438d60dbbea3c121a88e43c518e (patch) | |
tree | aaf99ae3cb8fcd1b3b47cc8988ac5fc4dcea2324 /style.css | |
parent | 2d271c0e6255fbfc04042d242073e54801a86f2f (diff) | |
parent | aa1d1bf44ece3f0495873fc3129d2dba664f8c2f (diff) | |
download | stable-diffusion-webui-gfx803-013e9a4bdabb1438d60dbbea3c121a88e43c518e.tar.gz stable-diffusion-webui-gfx803-013e9a4bdabb1438d60dbbea3c121a88e43c518e.tar.bz2 stable-diffusion-webui-gfx803-013e9a4bdabb1438d60dbbea3c121a88e43c518e.zip |
Merge branch 'master' into patch-6
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 27 |
1 files changed, 22 insertions, 5 deletions
@@ -86,7 +86,7 @@ }
#style_pos_col, #style_neg_col{
- min-width: 4em !important;
+ min-width: 8em !important;
}
#style_index, #style2_index{
@@ -208,11 +208,19 @@ input[type="range"]{ position: absolute;
z-index: 1000;
right: 0;
+ padding-left: 5px;
+ padding-right: 5px;
+ display: block;
+}
+
+#progressRow{
+ margin-bottom: 10px;
+ margin-top: -18px;
}
.progressDiv{
width: 100%;
- height: 30px;
+ height: 20px;
background: #b4c0cc;
border-radius: 8px;
}
@@ -223,11 +231,11 @@ input[type="range"]{ .progressDiv .progress{
width: 0%;
- height: 30px;
+ height: 20px;
background: #0060df;
color: white;
font-weight: bold;
- line-height: 30px;
+ line-height: 20px;
padding: 0 8px 0 0;
text-align: right;
border-radius: 8px;
@@ -337,5 +345,14 @@ input[type="range"]{ background:rgba(255, 0, 0, 0.3);
z-index: 900;
pointer-events:none;
- display:none;
+ display:none
+}
+
+#interrupt{
+ position: absolute;
+ width: 100%;
+ height: 72px;
+ background: #b4c0cc;
+ border-radius: 8px;
+ display: none;
}
|