feat: 同步质量校验修复并精简工作台操作

This commit is contained in:
GouJ
2026-09-03 19:38:57 +08:00
parent 771b66cafc
commit 13bb6dc83b
47 changed files with 2244 additions and 260 deletions
+45
View File
@@ -1472,6 +1472,51 @@ body {
.form-image-card-focused {
box-shadow: inset 3px 0 0 var(--app-accent-text);
}
/* 低频记录收起后归还正文宽度,不留下历史列的占位。 */
.breakdown-results-section > .content-with-history.history-hidden {
grid-template-columns: minmax(0, 1fr);
grid-template-rows: minmax(0, 1fr);
}
/* 补充说明只按需展开,继续使用平直背景层级,不增加边框或圆角。 */
.detail-disclosure.n-collapse {
font-size: 12px;
color: var(--app-muted);
}
.detail-disclosure-content {
padding: 12px 14px;
background: var(--app-subtle);
color: var(--app-ink);
line-height: 1.8;
}
.quality-fields {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
align-items: start;
gap: 16px;
}
.quality-result {
margin-top: 24px;
padding: 16px;
background: var(--app-subtle);
}
.quality-result-row {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px 12px;
margin-top: 10px;
padding: 12px;
background: var(--app-control);
font-size: 12px;
overflow-wrap: anywhere;
}
.quality-json {
margin-top: 16px;
white-space: pre-wrap;
overflow-wrap: anywhere;
font-size: 11px;
line-height: 1.7;
}
.select-control {
min-width: 130px;
}