feat: backfill growth momo matches
All checks were successful
CD Pipeline / deploy (push) Successful in 1m9s

This commit is contained in:
OoO
2026-06-18 16:02:02 +08:00
parent 6d6f3b473f
commit 9ca8d4e43c
9 changed files with 421 additions and 4 deletions

View File

@@ -272,6 +272,40 @@
box-shadow: inset 3px 0 0 var(--momo-success);
}
.growth-task.is-loading {
opacity: 0.78;
}
.growth-backfill-status {
margin-top: 9px;
padding: 8px 10px;
color: var(--momo-text-secondary);
background: color-mix(in srgb, var(--momo-bg-paper) 72%, transparent);
border: 1px solid var(--momo-border-light);
border-radius: 8px;
font-size: 11px;
font-weight: 900;
line-height: 1.35;
}
.growth-backfill-status.is-success {
color: var(--momo-success);
border-color: rgba(48, 133, 94, 0.24);
background: rgba(235, 248, 241, 0.72);
}
.growth-backfill-status.is-warning {
color: var(--momo-warning-text);
border-color: rgba(210, 158, 58, 0.34);
background: rgba(255, 248, 231, 0.72);
}
.growth-backfill-status.is-danger {
color: var(--momo-danger);
border-color: rgba(188, 75, 49, 0.32);
background: rgba(255, 244, 239, 0.72);
}
.growth-strategy-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));