Improve auto pose refinement controls

This commit is contained in:
Codex
2026-05-30 10:52:11 +08:00
parent bdd0db2a4c
commit c1fbdd8bac
3 changed files with 179 additions and 47 deletions

View File

@@ -1872,6 +1872,42 @@ input[type="range"] {
padding: 8px;
}
.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);
border-radius: 8px;
background: rgba(7, 10, 15, 0.72);
padding: 7px 8px;
}
.auto-progress div {
height: 7px;
overflow: hidden;
border-radius: 99px;
background: rgba(148, 163, 184, 0.18);
}
.auto-progress i {
display: block;
width: 0%;
height: 100%;
border-radius: inherit;
background: linear-gradient(90deg, #22d3ee, #3b82f6);
transition: width 160ms ease;
}
.auto-progress span {
color: #c7d2fe;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 11px;
font-weight: 950;
text-align: right;
}
.compact-title {
min-height: 28px;
margin-top: 4px;
@@ -2076,7 +2112,7 @@ input[type="range"] {
}
.tool-pane .auto-pose-result {
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.compact-empty {
@@ -2084,7 +2120,7 @@ input[type="range"] {
}
.auto-pose-result span {
min-height: 52px;
min-height: 50px;
display: grid;
grid-template-rows: auto auto auto;
align-items: center;