Merge branch '29558-pipelines-scroll' into 'master'

Remove overflow hidden from table

Closes #29257

See merge request !10058
This commit is contained in:
Annabel Dunstone Gray 2017-03-23 19:15:11 +00:00
commit 435468af38
3 changed files with 10 additions and 6 deletions

View File

@ -87,7 +87,7 @@ export default Vue.component('pipelines-table', {
},
template: `
<div class="pipelines">
<div class="content-list pipelines">
<div class="realtime-loading" v-if="isLoading">
<i class="fa fa-spinner fa-spin"></i>
</div>
@ -99,7 +99,7 @@ export default Vue.component('pipelines-table', {
</h2>
</div>
<div class="table-holder pipelines"
<div class="table-holder"
v-if="!isLoading && state.pipelines.length > 0">
<pipelines-table-component
:pipelines="state.pipelines"

View File

@ -18,7 +18,10 @@
.environments-container {
.table-holder {
width: 100%;
overflow: auto;
@media (max-width: $screen-sm-max) {
overflow: auto;
}
}
.table.ci-table {

View File

@ -15,7 +15,10 @@
.table-holder {
width: 100%;
overflow: auto;
@media (max-width: $screen-sm-max) {
overflow: auto;
}
}
.commit-title {
@ -99,8 +102,6 @@
@media (max-width: $screen-md-max) {
.content-list {
&.pipelines,
&.environments-container,
&.builds-content-list {
width: 100%;
overflow: auto;