Skip to content

Commit

Permalink
New position and interrupt integration
Browse files Browse the repository at this point in the history
  • Loading branch information
innovaciones authored and AUTOMATIC1111 committed Sep 22, 2022
1 parent 70e39f6 commit 8af8fa2
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
}

#style_pos_col, #style_neg_col{
min-width: 4em !important;
min-width: 8em !important;
}

#style_index, #style2_index{
Expand All @@ -100,6 +100,7 @@
#toprow div{
border: none;
gap: 0;
background: transparent;
}

#resize_mode{
Expand Down Expand Up @@ -206,13 +207,20 @@ input[type="range"]{
#progressbar{
position: absolute;
z-index: 1000;
width: 100%;
display: none;
right: 0;
padding-left: 5px;
padding-right: 5px;
display: block;
}

#progressRow{
margin-bottom: 10px;
margin-top: -18px;
}

.progressDiv{
width: 100%;
height: 72px;
height: 20px;
background: #b4c0cc;
border-radius: 8px;
}
Expand All @@ -223,11 +231,11 @@ input[type="range"]{

.progressDiv .progress{
width: 0%;
height: 72px;
height: 20px;
background: #0060df;
color: white;
font-weight: bold;
line-height: 72px;
line-height: 20px;
padding: 0 8px 0 0;
text-align: right;
border-radius: 8px;
Expand Down Expand Up @@ -328,3 +336,12 @@ input[type="range"]{
.modalNext:hover {
background-color: rgba(0, 0, 0, 0.8);
}

#interrupt{
position: absolute;
width: 100%;
height: 72px;
background: #b4c0cc;
border-radius: 8px;
display: none;
}

0 comments on commit 8af8fa2

Please sign in to comment.