Commit 11c67e7c authored by Phil Hughes's avatar Phil Hughes

Merge branch '38534-minigraph' into 'master'

Fixes mini graph in commit view

Closes #38534

See merge request gitlab-org/gitlab-ce!14758
parents a550942d ceb317d7
...@@ -54,12 +54,15 @@ ...@@ -54,12 +54,15 @@
.mr-widget-pipeline-graph { .mr-widget-pipeline-graph {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
margin-right: 4px;
.stage-cell .stage-container { .stage-cell .stage-container {
margin: 3px 3px 3px 0; margin: 3px 3px 3px 0;
} }
.stage-container:last-child {
margin-right: 0;
}
.dropdown-menu { .dropdown-menu {
margin-top: 11px; margin-top: 11px;
} }
......
...@@ -209,9 +209,11 @@ ...@@ -209,9 +209,11 @@
} }
.stage-cell { .stage-cell {
@media (min-width: $screen-md-min) { &.table-section {
min-width: 148px; @media (min-width: $screen-md-min) {
margin-right: -4px; min-width: 148px;
margin-right: -4px;
}
} }
.mini-pipeline-graph-dropdown-toggle svg { .mini-pipeline-graph-dropdown-toggle svg {
......
---
title: Fixes mini pipeline graph in commit view
merge_request:
author:
type: fixed
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