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

Move commits dates to left

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