Commit ad25dac8 authored by Arthur Schreiber's avatar Arthur Schreiber

Change the design a bit to look more like before.

parent d9ba277e
.commit-head { .commit-head {
@extend .well; @extend .main_box;
@extend .clearfix;
padding: 14px; padding: 14px;
padding-bottom: 8px; padding-bottom: 8px;
...@@ -17,9 +16,29 @@ ...@@ -17,9 +16,29 @@
} }
.commit-description { .commit-description {
font-size: 14px;
padding: 0px;
padding-bottom: 4px;
border: none;
background-color: white; background-color: white;
} }
.commit-info {
@extend .middle_box_content;
@extend .clearfix;
padding-bottom: 8px;
padding-top: 8px;
margin-left: -14px;
margin-right: -14px;
margin-bottom: -8px;
.author .name, .committer .name {
font-weight: bold;
}
}
.sha-block { .sha-block {
float: right; float: right;
margin-left: 10px margin-left: 10px
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
- if @commit.description.present? - if @commit.description.present?
%pre.commit-description %pre.commit-description
= commit_msg_with_link_to_issues(@project, @commit.description) = commit_msg_with_link_to_issues(@project, @commit.description)
.commit-info
%span.sha-block %span.sha-block
commit commit
%code= @commit.id %code= @commit.id
...@@ -12,16 +13,15 @@ ...@@ -12,16 +13,15 @@
= pluralize(@commit.parents.count, "parent") = pluralize(@commit.parents.count, "parent")
- @commit.parents.each do |parent| - @commit.parents.each do |parent|
%code= link_to parent.id, project_commit_path(@project, parent) %code= link_to parent.id, project_commit_path(@project, parent)
.commit-info
.author .author
= image_tag gravatar_icon(@commit.author_email, 24), :class => "avatar", :height => 24, :width => 24 = image_tag gravatar_icon(@commit.author_email, 24), :class => "avatar", :height => 24, :width => 24
= @commit.author_name %span.name= @commit.author_name
authored authored
%time{title: @commit.authored_date.stamp("Aug 21, 2011 9:23pm")} %time{title: @commit.authored_date.stamp("Aug 21, 2011 9:23pm")}
#{time_ago_in_words(@commit.authored_date)} ago #{time_ago_in_words(@commit.authored_date)} ago
- if @commit.different_committer? - if @commit.different_committer?
.committer .committer
= @commit.committer_name %span.name= @commit.committer_name
committed committed
%time{title: @commit.committed_date.stamp("Aug 21, 2011 9:23pm")} %time{title: @commit.committed_date.stamp("Aug 21, 2011 9:23pm")}
#{time_ago_in_words(@commit.committed_date)} ago #{time_ago_in_words(@commit.committed_date)} ago
......
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