Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2019-03-20 12:19:24 +0300
committerFilipa Lacerda <filipa@gitlab.com>2019-03-20 12:19:24 +0300
commit02d0b50b167c7bc293601c14e10f1f521373dfec (patch)
tree243976edaf47e41c4638bdcd9a5c77a432fbc781
parent1614089fcfe71bd2ff3fafc787195de380b9b6a1 (diff)
Removes EE differences for pipelines.scss
-rw-r--r--app/assets/stylesheets/pages/pipelines.scss6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss
index 2b6319ddd4f..ef9c87d0452 100644
--- a/app/assets/stylesheets/pages/pipelines.scss
+++ b/app/assets/stylesheets/pages/pipelines.scss
@@ -498,7 +498,8 @@
list-style: none;
}
- &:last-child {
+ // when downstream pipelines are present, the last stage isn't the last column
+ &:last-child:not(.has-downstream) {
.build {
// Remove right connecting horizontal line from first build in last stage
&:first-child::after {
@@ -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 {
// Remove left curved connectors from all builds in first stage
&:not(:first-child)::before {