Commit 9e9f0551 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Move commits dates to left

parent b349af20
......@@ -374,6 +374,15 @@
min-width: 65px;
font-family: $monospace_font;
}
.row_title {
font-weight: bold;
color: #444;
&:hover {
color: #444;
text-decoration: underline;
}
}
}
.file-stats a {
......@@ -496,3 +505,9 @@ li.commit {
font-weight: bold;
}
}
.commits-row {
padding-bottom: 10px;
margin-bottom: 10px;
border-bottom: 1px solid #DDD;
}
- @commits.group_by { |c| c.committed_date.to_date }.sort.reverse.each do |day, commits|
.ui-box.small-box
.title
%i.icon-calendar
%span= day.stamp("28 Aug, 2010")
.pull-right
%small= pluralize(commits.count, 'commit')
%ul.well-list= render commits, project: @project
.row.commits-row
.span2
%h4
%i.icon-calendar
%span= day.stamp("28 Aug, 2010")
%p= pluralize(commits.count, 'commit')
.span10
%ul.well-list
= render commits, project: @project
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