Improve registration iteration feedback

This commit is contained in:
Codex
2026-05-30 14:17:55 +08:00
parent 40e18ed45d
commit 30f73937aa
3 changed files with 390 additions and 60 deletions

View File

@@ -1874,24 +1874,39 @@ input[type="range"] {
.auto-progress {
display: grid;
grid-template-columns: minmax(0, 1fr) 42px;
align-items: center;
gap: 10px;
min-height: 28px;
border: 1px solid rgba(59, 130, 246, 0.3);
gap: 8px;
min-height: 92px;
border: 1px solid rgba(59, 130, 246, 0.34);
border-radius: 8px;
background: rgba(7, 10, 15, 0.72);
padding: 7px 8px;
padding: 9px 10px;
}
.auto-progress div {
.auto-progress-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.auto-progress-head b {
min-width: 0;
overflow: hidden;
color: #dbeafe;
font-size: 12px;
font-weight: 950;
text-overflow: ellipsis;
white-space: nowrap;
}
.auto-progress-track {
height: 7px;
overflow: hidden;
border-radius: 99px;
background: rgba(148, 163, 184, 0.18);
}
.auto-progress i {
.auto-progress-track i {
display: block;
width: 0%;
height: 100%;
@@ -1900,7 +1915,7 @@ input[type="range"] {
transition: width 160ms ease;
}
.auto-progress span {
.auto-progress-head span {
color: #c7d2fe;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 11px;
@@ -1908,6 +1923,60 @@ input[type="range"] {
text-align: right;
}
.auto-progress-steps {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 4px;
}
.auto-progress-steps span {
min-width: 0;
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 7px;
background: rgba(15, 23, 42, 0.62);
color: #8ea3bb;
font-size: 10px;
font-weight: 900;
line-height: 1.2;
padding: 5px 3px;
text-align: center;
}
.auto-progress-steps span.active {
border-color: rgba(34, 211, 238, 0.68);
background: rgba(8, 145, 178, 0.2);
color: #cffafe;
}
.auto-progress-steps span.done {
border-color: rgba(52, 211, 153, 0.42);
background: rgba(20, 184, 166, 0.12);
color: #a7f3d0;
}
.auto-progress p {
margin: 0;
color: #9fb3c8;
font-size: 11px;
line-height: 1.45;
}
.pose-control.locked,
.flip-row.locked,
.pose-actions.locked,
.auto-settings-panel.locked {
opacity: 0.58;
}
.pose-control button:disabled,
.pose-control input:disabled,
.pose-actions button:disabled,
.flip-row button:disabled,
.auto-box button:disabled,
.auto-box input:disabled {
cursor: not-allowed;
}
.compact-title {
min-height: 28px;
margin-top: 4px;