Updates
CI / test (push) Successful in 58s
Release rolling / release (push) Successful in 7m10s

This commit is contained in:
Raven Scott
2026-07-18 19:16:58 -04:00
parent 1d46b7b3ad
commit 462cce4b5b
24 changed files with 1398 additions and 51 deletions
+37
View File
@@ -687,6 +687,43 @@ code {
gap: 12px;
}
.chart-panel.anomaly-warn {
border-color: rgba(240, 180, 41, 0.55);
box-shadow: inset 0 0 0 1px rgba(240, 180, 41, 0.2);
}
.chart-panel.anomaly-crit {
border-color: rgba(255, 107, 122, 0.65);
box-shadow: inset 0 0 0 1px rgba(255, 107, 122, 0.25);
animation: anomaly-pulse 1.6s ease-in-out infinite;
}
.stat.anomaly-warn strong,
.stat.anomaly-crit strong {
color: #f0b429;
}
.stat.anomaly-crit strong {
color: var(--danger);
}
@keyframes anomaly-pulse {
0%,
100% {
box-shadow: inset 0 0 0 1px rgba(255, 107, 122, 0.2);
}
50% {
box-shadow: inset 0 0 0 1px rgba(255, 107, 122, 0.45);
}
}
.event-list li .score {
font-family: var(--mono);
font-size: 11px;
color: var(--muted);
margin-right: 4px;
}
.chart-panel header {
display: flex;
justify-content: space-between;