diff --git a/frontend/src/Calendar/Events/CalendarEvent.css b/frontend/src/Calendar/Events/CalendarEvent.css index 5189a3aac..4ebc8bc12 100644 --- a/frontend/src/Calendar/Events/CalendarEvent.css +++ b/frontend/src/Calendar/Events/CalendarEvent.css @@ -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); } } diff --git a/frontend/src/Calendar/Events/CalendarEventGroup.css b/frontend/src/Calendar/Events/CalendarEventGroup.css index 25c57fc02..ae259153b 100644 --- a/frontend/src/Calendar/Events/CalendarEventGroup.css +++ b/frontend/src/Calendar/Events/CalendarEventGroup.css @@ -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'; } diff --git a/frontend/src/Components/Filter/Builder/FilterBuilderRowValueTag.css b/frontend/src/Components/Filter/Builder/FilterBuilderRowValueTag.css index 62635b67c..461a54aaa 100644 --- a/frontend/src/Components/Filter/Builder/FilterBuilderRowValueTag.css +++ b/frontend/src/Components/Filter/Builder/FilterBuilderRowValueTag.css @@ -9,7 +9,7 @@ } .label { - composes: label from "~Components/Label.css"; + composes: label from '~Components/Label.css'; border-style: none; font-size: 13px; diff --git a/frontend/src/Components/Form/AutoSuggestInput.css b/frontend/src/Components/Form/AutoSuggestInput.css index 663cccbe1..0f3279cb9 100644 --- a/frontend/src/Components/Form/AutoSuggestInput.css +++ b/frontend/src/Components/Form/AutoSuggestInput.css @@ -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 {