fix: show product evidence on ai picks
Some checks failed
CD Pipeline / deploy (push) Has been cancelled

This commit is contained in:
ogt
2026-06-27 20:20:15 +08:00
parent 9425e8f05a
commit 90e44a8f8a
6 changed files with 144 additions and 27 deletions

View File

@@ -1691,6 +1691,36 @@
font-weight: 800;
}
.dashboard-ai-product-evidence {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.dashboard-ai-product-evidence span {
display: inline-flex;
align-items: center;
max-width: 210px;
min-height: 22px;
padding: 2px 7px;
overflow: hidden;
border: 1px solid var(--momo-border-light);
border-radius: var(--momo-radius-pill);
background: var(--momo-bg-paper);
color: var(--momo-text-secondary);
font-family: var(--momo-font-family-mono);
font-size: 10px;
font-weight: 800;
text-overflow: ellipsis;
white-space: nowrap;
}
.dashboard-ai-product-evidence span.is-pending {
color: var(--momo-warning-text);
background: var(--momo-warning-bg);
border-color: rgba(161, 111, 35, 0.18);
}
.dashboard-ai-evidence-chip {
display: inline-flex;
max-width: 180px;