Commit bea966c1 authored by Regis's avatar Regis

fix initial svg spacing for stages

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