Commit fa5443e3 authored by Filipa Lacerda's avatar Filipa Lacerda

Equal padding between table cells

parent 49ec2743
...@@ -55,21 +55,22 @@ require('../lib/utils/datetime_utility'); ...@@ -55,21 +55,22 @@ require('../lib/utils/datetime_utility');
}, },
template: ` template: `
<td> <td>
<p class="duration" v-if='duration'> <div class="pull-right">
<span v-html='svgs.iconTimer'></span> <p class="duration" v-if='duration'>
{{duration}} <span v-html='svgs.iconTimer'></span>
</p> {{duration}}
<p class="finished-at" v-if='timeStopped'> </p>
<i class="fa fa-calendar"></i> <p class="finished-at" v-if='timeStopped'>
<time <i class="fa fa-calendar"></i>
data-toggle="tooltip" <time
data-placement="top" data-toggle="tooltip"
data-container="body" data-placement="top"
:data-original-title='localTimeFinished' data-container="body"
> :data-original-title='localTimeFinished'>
{{timeStopped.words}} {{timeStopped.words}}
</time> </time>
</p> </p>
</div>
</td> </td>
`, `,
}); });
......
.pipelines { .pipelines {
width: 100%;
overflow: auto;
.realtime-loading { .realtime-loading {
font-size: 40px; font-size: 40px;
text-align: center; text-align: center;
...@@ -16,17 +13,16 @@ ...@@ -16,17 +13,16 @@
white-space: nowrap; white-space: nowrap;
} }
.commit-title { .table-holder {
margin: 0; width: 100%;
overflow: auto;
} }
.controls { .commit-title {
white-space: nowrap; margin: 0;
} }
.table.ci-table { .table.ci-table {
width: 100%;
table-layout: fixed;
.label { .label {
margin-bottom: 3px; margin-bottom: 3px;
...@@ -36,21 +32,9 @@ ...@@ -36,21 +32,9 @@
color: $black; color: $black;
} }
.pipeline-date, .stage-cell {
.pipeline-status {
width: 10%;
}
.pipeline-info,
.pipeline-commit,
.pipeline-stages {
width: 20%; width: 20%;
} }
.pipeline-actions {
width: 20%;
padding-right: 0;
}
} }
} }
...@@ -64,21 +48,7 @@ ...@@ -64,21 +48,7 @@
} }
} }
.content-list.pipelines .table-holder {
min-height: 300px;
}
.pipeline-holder {
width: 100%;
overflow: auto;
}
.table.ci-table { .table.ci-table {
min-width: 900px;
&.pipeline {
min-width: 650px;
}
&.builds-page { &.builds-page {
......
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