Commit bea966c1 authored by Regis's avatar Regis

fix initial svg spacing for stages

parent 5838b160
......@@ -40,7 +40,7 @@
return `Build: ${this.stage.status.label}`;
},
tooltip() {
return `has-tooltip ci-status-icon-${this.stage.status.group}`;
return `has-tooltip ci-status-icon ci-status-icon-${this.stage.status.group}`;
},
svg() {
const icon = this.stage.status.icon;
......@@ -52,9 +52,8 @@
},
},
template: `
<div class="stage-container mini-pipeline-graph">
<div class="dropdown inline build-content">
<button
@click='fetchBuilds'
@blur='fetchBuilds'
......@@ -64,7 +63,7 @@
data-toggle="dropdown"
type="button"
>
<span :class='tooltip'>
<span :class='tooltip'></span>
<span class="mini-pipeline-graph-icon-container">
<span
:class='spanClass'
......@@ -86,7 +85,6 @@
</div>
</div>
</div>
</div>
</div>
`,
......
......@@ -10,7 +10,7 @@
template: `
<td class="stage-cell">
<div
class="stage-container"
class="stage-container mini-pipeline-graph"
v-for='stage in pipeline.details.stages'
>
<vue-stage :stage='stage' :svgs='svgs' :match='match'></vue-stage>
......
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