Skip to content
Snippets Groups Projects
Commit 27b7aedd authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

More compact lists for dashboard issues, mr

parent 512cd023
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -15,6 +15,22 @@
border: 1px solid #CCC;
word-wrap: break-word;
 
&.small-box {
margin-bottom: 10px;
.title {
font-size: 13px;
line-height: 30px;
a {
color: #666;
&:hover {
text-decoration: underline;
}
}
}
}
&.ui-box-show {
margin:20px 0;
background: #FFF;
Loading
Loading
- if @issues.any?
- @issues.group_by(&:project).each do |group|
%div.ui-box
.ui-box.small-box
- project = group[0]
.title
= link_to_project project
 
%i.icon-angle-right
 
= link_to 'issues', project_issues_path(project)
= link_to 'show all', project_issues_path(project), class: 'pull-right'
 
%ul.well-list.issues-list
- group[1].each do |issue|
Loading
Loading
- if @merge_requests.any?
- @merge_requests.group_by(&:project).each do |group|
.ui-box
.ui-box.small-box
- project = group[0]
.title
= link_to_project project
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment