mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-19 22:04:56 -04:00
71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
.footer {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 20px;
|
|
font-size: $smallFontSize;
|
|
}
|
|
|
|
.legendItem {
|
|
display: flex;
|
|
margin-bottom: 4px;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.legendItemColor {
|
|
margin-right: 8px;
|
|
width: 30px;
|
|
height: 16px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.disabled {
|
|
composes: legendItemColor;
|
|
|
|
background-color: $darkGray;
|
|
}
|
|
|
|
.enabled {
|
|
composes: legendItemColor;
|
|
|
|
background-color: $successColor;
|
|
}
|
|
|
|
.redirected {
|
|
composes: legendItemColor;
|
|
|
|
background-color: $infoColor;
|
|
}
|
|
|
|
.error {
|
|
composes: legendItemColor;
|
|
|
|
background-color: $dangerColor;
|
|
|
|
&:global(.colorImpaired) {
|
|
background: repeating-linear-gradient(90deg, color($dangerColor shade(5%)), color($dangerColor shade(5%)) 5px, color($dangerColor shade(15%)) 5px, color($dangerColor shade(15%)) 10px);
|
|
}
|
|
}
|
|
|
|
.statistics {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
@media (max-width: $breakpointLarge) {
|
|
.statistics {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
@media (max-width: $breakpointSmall) {
|
|
.footer {
|
|
display: block;
|
|
}
|
|
|
|
.statistics {
|
|
display: flex;
|
|
margin-top: 20px;
|
|
}
|
|
}
|