49 lines
953 B
SCSS
49 lines
953 B
SCSS
|
|
.dashboard-status-row {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: var(--space-sm);
|
||
|
|
padding: var(--space-xs) 0;
|
||
|
|
font-size: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dashboard-status-row__icon {
|
||
|
|
font-size: 1rem;
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dashboard-status-row__label {
|
||
|
|
flex: 1 1 auto;
|
||
|
|
color: var(--text-primary);
|
||
|
|
min-width: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dashboard-status-row__value {
|
||
|
|
font-weight: 600;
|
||
|
|
color: var(--text-primary);
|
||
|
|
}
|
||
|
|
|
||
|
|
.dashboard-status-row__status-text {
|
||
|
|
font-size: 0.75rem;
|
||
|
|
color: var(--text-light);
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dashboard-status-row--healthy .dashboard-status-row__icon {
|
||
|
|
color: var(--success-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.dashboard-status-row--attention .dashboard-status-row__icon {
|
||
|
|
color: var(--warning-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.dashboard-status-row--unhealthy .dashboard-status-row__icon {
|
||
|
|
color: var(--error-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.dashboard-status-row--unknown .dashboard-status-row__icon {
|
||
|
|
color: var(--text-light);
|
||
|
|
}
|