(cherry picked from commit 0210b5c5c1b5c56dce6f4c9f3f56366adba950d3)pull/9174/head
parent
e3abda9afc
commit
4e827e726f
@ -1,74 +1,37 @@
|
|||||||
.legendItemContainer {
|
.legendItem {
|
||||||
margin-right: 5px;
|
margin: 3px 0;
|
||||||
|
margin-right: 6px;
|
||||||
|
padding-left: 5px;
|
||||||
width: 220px;
|
width: 220px;
|
||||||
|
border-left-width: 4px;
|
||||||
|
border-left-style: solid;
|
||||||
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
.legendItem {
|
/*
|
||||||
display: inline-flex;
|
* Status
|
||||||
margin-top: -1px;
|
*/
|
||||||
vertical-align: middle;
|
|
||||||
line-height: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.legendItemColor {
|
.downloaded {
|
||||||
margin-right: 8px;
|
composes: downloaded from '~Calendar/Events/CalendarEvent.css';
|
||||||
width: 30px;
|
|
||||||
height: 16px;
|
|
||||||
border-radius: 4px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.queue {
|
.queue {
|
||||||
composes: legendItemColor;
|
composes: queue from '~Calendar/Events/CalendarEvent.css';
|
||||||
|
|
||||||
background-color: var(--queueColor);
|
|
||||||
}
|
|
||||||
|
|
||||||
.continuing {
|
|
||||||
composes: legendItemColor;
|
|
||||||
|
|
||||||
background-color: var(--primaryColor);
|
|
||||||
}
|
|
||||||
|
|
||||||
.availNotMonitored {
|
|
||||||
composes: legendItemColor;
|
|
||||||
|
|
||||||
background-color: var(--darkGray);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.ended {
|
.unmonitored {
|
||||||
composes: legendItemColor;
|
composes: unmonitored from '~Calendar/Events/CalendarEvent.css';
|
||||||
|
|
||||||
background-color: var(--successColor);
|
|
||||||
}
|
|
||||||
|
|
||||||
.missingMonitored {
|
|
||||||
composes: legendItemColor;
|
|
||||||
|
|
||||||
background-color: var(--dangerColor);
|
|
||||||
|
|
||||||
&:global(.colorImpaired) {
|
|
||||||
background: repeating-linear-gradient(90deg, color(var(--dangerColor) shade(5%)), color(var(--dangerColor) shade(5%)) 5px, color(var(--dangerColor) shade(15%)) 5px, color(var(--dangerColor) shade(15%)) 10px);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.missingUnmonitored {
|
.missingUnmonitored {
|
||||||
composes: legendItemColor;
|
composes: missingUnmonitored from '~Calendar/Events/CalendarEvent.css';
|
||||||
|
|
||||||
background-color: var(--warningColor);
|
|
||||||
|
|
||||||
&:global(.colorImpaired) {
|
|
||||||
background: repeating-linear-gradient(45deg, var(--warningColor), var(--warningColor) 5px, color(var(--warningColor) tint(15%)) 5px, color(var(--warningColor) tint(15%)) 10px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.missingMonitoredColorImpaired {
|
|
||||||
background: repeating-linear-gradient(90deg, var(--colorImpairedGradientDark), var(--colorImpairedGradientDark) 5px, var(--colorImpairedGradient) 5px, var(--colorImpairedGradient) 10px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.missingUnmonitoredColorImpaired {
|
.missingMonitored {
|
||||||
background: repeating-linear-gradient(45deg, var(--colorImpairedGradientDark), var(--colorImpairedGradientDark) 5px, var(--colorImpairedGradient) 5px, var(--colorImpairedGradient) 10px);
|
composes: missingMonitored from '~Calendar/Events/CalendarEvent.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.legendItemText {
|
.continuing {
|
||||||
display: inline-block;
|
composes: continuing from '~Calendar/Events/CalendarEvent.css';
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,13 @@
|
|||||||
// This file is automatically generated.
|
// This file is automatically generated.
|
||||||
// Please do not change this file!
|
// Please do not change this file!
|
||||||
interface CssExports {
|
interface CssExports {
|
||||||
'availNotMonitored': string;
|
|
||||||
'continuing': string;
|
'continuing': string;
|
||||||
'ended': string;
|
'downloaded': string;
|
||||||
'legendItem': string;
|
'legendItem': string;
|
||||||
'legendItemColor': string;
|
|
||||||
'legendItemContainer': string;
|
|
||||||
'legendItemText': string;
|
|
||||||
'missingMonitored': string;
|
'missingMonitored': string;
|
||||||
'missingMonitoredColorImpaired': string;
|
|
||||||
'missingUnmonitored': string;
|
'missingUnmonitored': string;
|
||||||
'missingUnmonitoredColorImpaired': string;
|
|
||||||
'queue': string;
|
'queue': string;
|
||||||
|
'unmonitored': string;
|
||||||
}
|
}
|
||||||
export const cssExports: CssExports;
|
export const cssExports: CssExports;
|
||||||
export default cssExports;
|
export default cssExports;
|
||||||
|
Loading…
Reference in new issue