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