summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushalspandya@gmail.com>2019-05-06 17:04:44 +0000
committerKushal Pandya <kushalspandya@gmail.com>2019-05-06 17:04:44 +0000
commitae39e73a3351e142f390bd631cea477de1f9bae3 (patch)
tree94f2d2dc8fdbed04941bfd4981d8ce0a94ec0e1b
parent3990e52d0a0789233444831d7d293229803d736b (diff)
parent4db5f4ac04d53884fb766bf2cdeaa591d8e21d77 (diff)
downloadgitlab-ce-ae39e73a3351e142f390bd631cea477de1f9bae3.tar.gz
Merge branch '61469-align-play-icon' into 'master'
Aligns the play button for stages Closes #61469 See merge request gitlab-org/gitlab-ce!28124
-rw-r--r--app/assets/javascripts/pipelines/components/graph/stage_column_component.vue2
-rw-r--r--app/assets/stylesheets/pages/pipelines.scss5
-rw-r--r--changelogs/unreleased/61469-align-play-icon.yml5
3 files changed, 11 insertions, 1 deletions
diff --git a/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue b/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue
index 7e611b93087..d5c124dc0ca 100644
--- a/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue
+++ b/app/assets/javascripts/pipelines/components/graph/stage_column_component.vue
@@ -61,7 +61,7 @@ export default {
:action-icon="action.icon"
:tooltip-text="action.title"
:link="action.path"
- class="js-stage-action position-absolute position-top-0 rounded"
+ class="js-stage-action stage-action position-absolute position-top-0 rounded"
@pipelineActionRequestComplete="pipelineActionRequestComplete"
/>
</div>
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss
index 96fdf74267e..12a3b8c88f3 100644
--- a/app/assets/stylesheets/pages/pipelines.scss
+++ b/app/assets/stylesheets/pages/pipelines.scss
@@ -702,6 +702,11 @@
}
}
}
+
+ .stage-action svg {
+ left: 1px;
+ top: -2px;
+ }
}
// Triggers the dropdown in the big pipeline graph
diff --git a/changelogs/unreleased/61469-align-play-icon.yml b/changelogs/unreleased/61469-align-play-icon.yml
new file mode 100644
index 00000000000..a118da29703
--- /dev/null
+++ b/changelogs/unreleased/61469-align-play-icon.yml
@@ -0,0 +1,5 @@
+---
+title: Vertically aligns the play button for stages
+merge_request:
+author:
+type: fixed