From fb29a84e87ba76f32327ae20e4ddf7f70cd71005 Mon Sep 17 00:00:00 2001 From: Stephen Hulme Date: Wed, 28 Feb 2024 12:13:02 +0000 Subject: [PATCH] fix: address 'compound selectors may no longer be extended' warning --- app/assets/stylesheets/limber/pipeline-graph.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/assets/stylesheets/limber/pipeline-graph.scss b/app/assets/stylesheets/limber/pipeline-graph.scss index 5319b476c..105cbd5d8 100644 --- a/app/assets/stylesheets/limber/pipeline-graph.scss +++ b/app/assets/stylesheets/limber/pipeline-graph.scss @@ -35,7 +35,7 @@ height: calculate-graph-height(); display: block; @extend .bg-dark; - @extend .text-white; + @extend .text-light; } #key { @@ -43,7 +43,7 @@ top: 10px; right: 10px; @extend .bg-dark; - @extend .text-white; + @extend .text-light; @extend .small; header { @@ -62,7 +62,7 @@ } #show-pipeline-groups:hover { @extend .icon-pipeline_single-light; - @extend .text-light:hover; + @extend .text-light, :hover; } #show-pipelines { @@ -71,7 +71,7 @@ } #show-pipelines:hover { @extend .icon-pipeline_stack-light; - @extend .text-light:hover; + @extend .text-light, :hover; } #pipelines-back { @@ -83,7 +83,7 @@ vertical-align: text-bottom; } #pipelines-back:hover { - @extend .text-light:hover; + @extend .text-light, :hover; } } ul { @@ -97,7 +97,7 @@ @extend .bg-dark; } li:hover { - @extend .text-light:hover; + @extend .text-light, :hover; } } }