Updates
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user