Fixed: Add redirect to legend

This commit is contained in:
Qstick
2021-04-30 00:08:01 -04:00
parent c836b3c43c
commit be61fb40fd
3 changed files with 26 additions and 35 deletions
@@ -18,31 +18,25 @@
border-radius: 4px;
}
.queue {
composes: legendItemColor;
background-color: $queueColor;
}
.continuing {
composes: legendItemColor;
background-color: $primaryColor;
}
.availNotMonitored {
.disabled {
composes: legendItemColor;
background-color: $darkGray;
}
.ended {
.enabled {
composes: legendItemColor;
background-color: $successColor;
}
.missingMonitored {
.redirected {
composes: legendItemColor;
background-color: $infoColor;
}
.error {
composes: legendItemColor;
background-color: $dangerColor;
@@ -52,16 +46,6 @@
}
}
.missingUnmonitored {
composes: legendItemColor;
background-color: $warningColor;
&:global(.colorImpaired) {
background: repeating-linear-gradient(45deg, $warningColor, $warningColor 5px, color($warningColor tint(15%)) 5px, color($warningColor tint(15%)) 10px);
}
}
.statistics {
display: flex;
justify-content: space-between;