Commit 21efc1a2 authored by Phil Hughes's avatar Phil Hughes

Merge branch '10517-pipelines-css' into 'master'

Removes EE differences for pipelines.scss

Closes gitlab-ee#10517

See merge request gitlab-org/gitlab-ce!26350
parents d8e27949 02d0b50b
...@@ -498,7 +498,8 @@ ...@@ -498,7 +498,8 @@
list-style: none; list-style: none;
} }
&:last-child { // when downstream pipelines are present, the last stage isn't the last column
&:last-child:not(.has-downstream) {
.build { .build {
// Remove right connecting horizontal line from first build in last stage // Remove right connecting horizontal line from first build in last stage
&:first-child::after { &:first-child::after {
...@@ -515,7 +516,8 @@ ...@@ -515,7 +516,8 @@
} }
} }
&:first-child { // when upstream pipelines are present, the first stage isn't the first column
&:first-child:not(.has-upstream) {
.build { .build {
// Remove left curved connectors from all builds in first stage // Remove left curved connectors from all builds in first stage
&:not(:first-child)::before { &:not(:first-child)::before {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment