feat: add fallback routes and repository event enrichment

This commit is contained in:
RhenCloud 2026-08-02 23:23:07 +08:00
parent 44b8fead78
commit d419b9c940
No known key found for this signature in database
GPG key ID: A574A617378C4E0B
11 changed files with 104 additions and 8 deletions

View file

@ -14,6 +14,8 @@
--accent-text: #3730a3;
--ok: #16a34a;
--ok-dim: #ecfdf3;
--warn: #b45309;
--warn-dim: #fef3c7;
--bad: #dc2626;
--bad-dim: #fef2f2;
--dot: rgba(15, 23, 42, 0.05);
@ -44,6 +46,8 @@
--accent-text: #c7d2fe;
--ok: #22c55e;
--ok-dim: #10241a;
--warn: #fbbf24;
--warn-dim: #2a2410;
--bad: #f05252;
--bad-dim: #2a1618;
--dot: rgba(148, 163, 184, 0.08);
@ -345,6 +349,12 @@ main {
border: 1px solid transparent;
}
.badge.fallback {
background: var(--warn-dim);
color: var(--warn);
border: 1px solid transparent;
}
.card-actions {
display: flex;
gap: 6px;