Show automatic pose adjustment deltas

This commit is contained in:
Codex
2026-05-29 17:16:02 +08:00
parent 692c50e22c
commit 86e25d0a51
2 changed files with 100 additions and 9 deletions

View File

@@ -1974,17 +1974,50 @@ input[type="range"] {
}
.auto-pose-result span {
min-height: 36px;
display: inline-flex;
min-height: 52px;
display: grid;
grid-template-rows: auto auto auto;
align-items: center;
justify-content: center;
row-gap: 2px;
border: 1px solid rgba(25, 214, 195, 0.38);
border-radius: 10px;
background: rgba(20, 184, 166, 0.09);
color: #ccfbf1;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 12px;
font-size: 11px;
font-weight: 900;
text-align: center;
white-space: nowrap;
}
.auto-pose-result span.changed {
border-color: rgba(52, 211, 153, 0.72);
background: rgba(20, 184, 166, 0.18);
box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.12);
}
.auto-pose-result span.muted {
border-color: rgba(148, 163, 184, 0.28);
background: rgba(15, 23, 42, 0.58);
color: #9fb3c8;
}
.auto-pose-result b,
.auto-pose-result strong,
.auto-pose-result small {
display: block;
line-height: 1.05;
}
.auto-pose-result strong {
color: #e6fffb;
font-size: 13px;
}
.auto-pose-result small {
color: #8fb3c9;
font-size: 10px;
}
.login-overlay {