BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
435468af
Commit
435468af
authored
Mar 23, 2017
by
Annabel Dunstone Gray
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '29558-pipelines-scroll' into 'master'
Remove overflow hidden from table Closes #29257 See merge request !10058
parents
ca3759a5
1e7cc6f2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
pipelines_table.js
app/assets/javascripts/commit/pipelines/pipelines_table.js
+2
-2
environments.scss
app/assets/stylesheets/pages/environments.scss
+4
-1
pipelines.scss
app/assets/stylesheets/pages/pipelines.scss
+4
-3
No files found.
app/assets/javascripts/commit/pipelines/pipelines_table.js
View file @
435468af
...
...
@@ -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"
...
...
app/assets/stylesheets/pages/environments.scss
View file @
435468af
...
...
@@ -18,7 +18,10 @@
.environments-container
{
.table-holder
{
width
:
100%
;
overflow
:
auto
;
@media
(
max-width
:
$screen-sm-max
)
{
overflow
:
auto
;
}
}
.table.ci-table
{
...
...
app/assets/stylesheets/pages/pipelines.scss
View file @
435468af
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment