mirror of
https://github.com/Radarr/Radarr
synced 2026-01-13 02:53:10 +01:00
Fixed: Fix issue with calendar not showing Downloaded + Unmonitored (Yellow) Fixed: Fix issue with colorblind mode not working anywhere except the Calendar Refactor status color function so it is used everywhere instead of one for the calendar and one everywhere else Refactor css style naming to be more consistent in the calendar with everything else
46 lines
1,002 B
CSS
46 lines
1,002 B
CSS
.center {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.missingUnmonitoredBackground {
|
|
&:global(.colorImpaired) {
|
|
background: repeating-linear-gradient(45deg, $colorImpairedGradientDark, $colorImpairedGradientDark 5px, $colorImpairedGradient 5px, $colorImpairedGradient 10px);
|
|
}
|
|
}
|
|
|
|
.missingMonitoredBackground {
|
|
&:global(.colorImpaired) {
|
|
background: repeating-linear-gradient(90deg, $colorImpairedGradientDark, $colorImpairedGradientDark 5px, $colorImpairedGradient 5px, $colorImpairedGradient 10px);
|
|
}
|
|
}
|
|
|
|
.queue {
|
|
padding-right: 2px;
|
|
border-left: 5px solid $queueColor;
|
|
}
|
|
|
|
.continuing {
|
|
padding-right: 2px;
|
|
border-left: 5px solid $primaryColor;
|
|
}
|
|
|
|
.availNotMonitored {
|
|
padding-right: 2px;
|
|
border-left: 5px solid $darkGray;
|
|
}
|
|
|
|
.ended {
|
|
padding-right: 2px;
|
|
border-left: 5px solid $successColor;
|
|
}
|
|
|
|
.missingMonitored {
|
|
padding-right: 2px;
|
|
border-left: 5px solid $dangerColor;
|
|
}
|
|
|
|
.missingUnmonitored {
|
|
padding-right: 2px;
|
|
border-left: 5px solid $warningColor;
|
|
}
|