mirror of
https://github.com/openvinotoolkit/stable-diffusion-webui.git
synced 2024-12-14 22:53:25 +03:00
New position and interrupt integration
This commit is contained in:
parent
70e39f6cfe
commit
8af8fa2055
29
style.css
29
style.css
@ -86,7 +86,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#style_pos_col, #style_neg_col{
|
#style_pos_col, #style_neg_col{
|
||||||
min-width: 4em !important;
|
min-width: 8em !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#style_index, #style2_index{
|
#style_index, #style2_index{
|
||||||
@ -100,6 +100,7 @@
|
|||||||
#toprow div{
|
#toprow div{
|
||||||
border: none;
|
border: none;
|
||||||
gap: 0;
|
gap: 0;
|
||||||
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
#resize_mode{
|
#resize_mode{
|
||||||
@ -206,13 +207,20 @@ input[type="range"]{
|
|||||||
#progressbar{
|
#progressbar{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
width: 100%;
|
right: 0;
|
||||||
display: none;
|
padding-left: 5px;
|
||||||
|
padding-right: 5px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progressRow{
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-top: -18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progressDiv{
|
.progressDiv{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 72px;
|
height: 20px;
|
||||||
background: #b4c0cc;
|
background: #b4c0cc;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
@ -223,11 +231,11 @@ input[type="range"]{
|
|||||||
|
|
||||||
.progressDiv .progress{
|
.progressDiv .progress{
|
||||||
width: 0%;
|
width: 0%;
|
||||||
height: 72px;
|
height: 20px;
|
||||||
background: #0060df;
|
background: #0060df;
|
||||||
color: white;
|
color: white;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
line-height: 72px;
|
line-height: 20px;
|
||||||
padding: 0 8px 0 0;
|
padding: 0 8px 0 0;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
@ -328,3 +336,12 @@ input[type="range"]{
|
|||||||
.modalNext:hover {
|
.modalNext:hover {
|
||||||
background-color: rgba(0, 0, 0, 0.8);
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#interrupt{
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 72px;
|
||||||
|
background: #b4c0cc;
|
||||||
|
border-radius: 8px;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user