feat: health bar coloring
This commit is contained in:
@@ -4128,6 +4128,23 @@ html {
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
/* Utilization bar colors based on percentage (same as gauges) */
|
||||
.utilization-empty {
|
||||
background: rgba(255, 255, 255, 0.1) !important;
|
||||
}
|
||||
|
||||
.utilization-green {
|
||||
background: linear-gradient(90deg, var(--accent-success), var(--accent-success)) !important;
|
||||
}
|
||||
|
||||
.utilization-yellow {
|
||||
background: linear-gradient(90deg, var(--accent-warning), var(--accent-warning)) !important;
|
||||
}
|
||||
|
||||
.utilization-red {
|
||||
background: linear-gradient(90deg, var(--accent-error), var(--accent-error)) !important;
|
||||
}
|
||||
|
||||
.utilization-text {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.75rem;
|
||||
|
||||
Reference in New Issue
Block a user