Remove border from issues, todos and MR pages

This commit is contained in:
Oswaldo Ferreira 2017-01-26 11:10:04 -02:00
parent ed3cf83a63
commit 6a5a5d0ec0
4 changed files with 7 additions and 3 deletions

View File

@ -162,6 +162,10 @@
}
}
}
&.panel-without-border {
border: 0;
}
}
.panel-succes .panel-heading,

View File

@ -70,7 +70,7 @@
.prepend-top-default
- if @todos.any?
.js-todos-options{ data: {per_page: @todos.limit_value, current_page: @todos.current_page, total_pages: @todos.total_pages} }
.panel.panel-default.panel-small
.panel.panel-default.panel-small.panel-without-border
%ul.content-list.todos-list
= render @todos
= paginate @todos, theme: "gitlab"

View File

@ -1,5 +1,5 @@
- if @issues.to_a.any?
.panel.panel-default.panel-small
.panel.panel-default.panel-small.panel-without-border
%ul.content-list.issues-list
= render partial: 'projects/issues/issue', collection: @issues
= paginate @issues, theme: "gitlab"

View File

@ -1,5 +1,5 @@
- if @merge_requests.to_a.any?
.panel.panel-default.panel-small
.panel.panel-default.panel-small.panel-without-border
%ul.content-list.mr-list
= render partial: 'projects/merge_requests/merge_request', collection: @merge_requests