Fixed stylelint errors
This commit is contained in:
parent
57a059eecb
commit
f371e8a523
|
@ -57,13 +57,7 @@
|
||||||
border-left-color: $gray !important;
|
border-left-color: $gray !important;
|
||||||
|
|
||||||
&:global(.colorImpaired) {
|
&:global(.colorImpaired) {
|
||||||
background: repeating-linear-gradient(
|
background: repeating-linear-gradient(45deg, $colorImpairedGradientDark, $colorImpairedGradientDark 5px, $colorImpairedGradient 5px, $colorImpairedGradient 10px);
|
||||||
45deg,
|
|
||||||
$colorImpairedGradientDark,
|
|
||||||
$colorImpairedGradientDark 5px,
|
|
||||||
$colorImpairedGradient 5px,
|
|
||||||
$colorImpairedGradient 10px
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,13 +65,7 @@
|
||||||
border-left-color: $warningColor !important;
|
border-left-color: $warningColor !important;
|
||||||
|
|
||||||
&:global(.colorImpaired) {
|
&:global(.colorImpaired) {
|
||||||
background: repeating-linear-gradient(
|
background: repeating-linear-gradient(90deg, $colorImpairedGradientDark, $colorImpairedGradientDark 5px, $colorImpairedGradient 5px, $colorImpairedGradient 10px);
|
||||||
90deg,
|
|
||||||
$colorImpairedGradientDark,
|
|
||||||
$colorImpairedGradientDark 5px,
|
|
||||||
$colorImpairedGradient 5px,
|
|
||||||
$colorImpairedGradient 10px
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,13 +74,7 @@
|
||||||
|
|
||||||
&:global(.colorImpaired) {
|
&:global(.colorImpaired) {
|
||||||
border-left-color: color($dangerColor saturation(+15%)) !important;
|
border-left-color: color($dangerColor saturation(+15%)) !important;
|
||||||
background: repeating-linear-gradient(
|
background: repeating-linear-gradient(90deg, $colorImpairedGradientDark, $colorImpairedGradientDark 5px, $colorImpairedGradient 5px, $colorImpairedGradient 10px);
|
||||||
90deg,
|
|
||||||
$colorImpairedGradientDark,
|
|
||||||
$colorImpairedGradientDark 5px,
|
|
||||||
$colorImpairedGradient 5px,
|
|
||||||
$colorImpairedGradient 10px
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -100,12 +82,6 @@
|
||||||
border-left-color: $primaryColor !important;
|
border-left-color: $primaryColor !important;
|
||||||
|
|
||||||
&:global(.colorImpaired) {
|
&:global(.colorImpaired) {
|
||||||
background: repeating-linear-gradient(
|
background: repeating-linear-gradient(90deg, $colorImpairedGradientDark, $colorImpairedGradientDark 5px, $colorImpairedGradient 5px, $colorImpairedGradient 10px);
|
||||||
90deg,
|
|
||||||
$colorImpairedGradientDark,
|
|
||||||
$colorImpairedGradientDark 5px,
|
|
||||||
$colorImpairedGradient 5px,
|
|
||||||
$colorImpairedGradient 10px
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,25 +58,25 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.downloaded {
|
.downloaded {
|
||||||
composes: downloaded from "~Calendar/Events/CalendarEvent.css";
|
composes: downloaded from '~Calendar/Events/CalendarEvent.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.downloading {
|
.downloading {
|
||||||
composes: downloading from "~Calendar/Events/CalendarEvent.css";
|
composes: downloading from '~Calendar/Events/CalendarEvent.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.unmonitored {
|
.unmonitored {
|
||||||
composes: unmonitored from "~Calendar/Events/CalendarEvent.css";
|
composes: unmonitored from '~Calendar/Events/CalendarEvent.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.onAir {
|
.onAir {
|
||||||
composes: onAir from "~Calendar/Events/CalendarEvent.css";
|
composes: onAir from '~Calendar/Events/CalendarEvent.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.missing {
|
.missing {
|
||||||
composes: missing from "~Calendar/Events/CalendarEvent.css";
|
composes: missing from '~Calendar/Events/CalendarEvent.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.premiere {
|
.premiere {
|
||||||
composes: premiere from "~Calendar/Events/CalendarEvent.css";
|
composes: premiere from '~Calendar/Events/CalendarEvent.css';
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.label {
|
.label {
|
||||||
composes: label from "~Components/Label.css";
|
composes: label from '~Components/Label.css';
|
||||||
|
|
||||||
border-style: none;
|
border-style: none;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
.input {
|
.input {
|
||||||
composes: input from "~Components/Form/Input.css";
|
composes: input from '~Components/Form/Input.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.hasError {
|
.hasError {
|
||||||
composes: hasError from "~Components/Form/Input.css";
|
composes: hasError from '~Components/Form/Input.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.hasWarning {
|
.hasWarning {
|
||||||
composes: hasWarning from "~Components/Form/Input.css";
|
composes: hasWarning from '~Components/Form/Input.css';
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputContainer {
|
.inputContainer {
|
||||||
|
|
Loading…
Reference in New Issue