Skip to content

Commit

Permalink
Merge pull request #1600 from sanger/sh51/fix-scss-warnings
Browse files Browse the repository at this point in the history
fix: address 'compound selectors may no longer be extended' warning
  • Loading branch information
StephenHulme authored Feb 28, 2024
2 parents 2bedafd + fb29a84 commit 4821e8a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/assets/stylesheets/limber/pipeline-graph.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
height: calculate-graph-height();
display: block;
@extend .bg-dark;
@extend .text-white;
@extend .text-light;
}

#key {
position: absolute;
top: 10px;
right: 10px;
@extend .bg-dark;
@extend .text-white;
@extend .text-light;
@extend .small;

header {
Expand All @@ -62,7 +62,7 @@
}
#show-pipeline-groups:hover {
@extend .icon-pipeline_single-light;
@extend .text-light:hover;
@extend .text-light, :hover;
}

#show-pipelines {
Expand All @@ -71,7 +71,7 @@
}
#show-pipelines:hover {
@extend .icon-pipeline_stack-light;
@extend .text-light:hover;
@extend .text-light, :hover;
}

#pipelines-back {
Expand All @@ -83,7 +83,7 @@
vertical-align: text-bottom;
}
#pipelines-back:hover {
@extend .text-light:hover;
@extend .text-light, :hover;
}
}
ul {
Expand All @@ -97,7 +97,7 @@
@extend .bg-dark;
}
li:hover {
@extend .text-light:hover;
@extend .text-light, :hover;
}
}
}
Expand Down

0 comments on commit 4821e8a

Please sign in to comment.