Commit a79eb842 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

commit show page styled a bit

parent 9d9493c8
...@@ -47,6 +47,14 @@ ...@@ -47,6 +47,14 @@
padding-left: 32px; padding-left: 32px;
} }
.author,
.committer {
font-size:14px;
line-height:22px;
text-shadow:0 1px 1px #fff;
color:#777;
}
.avatar { .avatar {
margin-right: 10px; margin-right: 10px;
} }
...@@ -227,3 +235,13 @@ ...@@ -227,3 +235,13 @@
} }
} }
} }
.label_commit {
@include round-borders-all(4px);
padding:2px 4px;
border:none;
font-size:13px;
background: #474D57;
color:#fff;
font-family: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
}
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
= gfm escape_once(@commit.description) = gfm escape_once(@commit.description)
.commit-info .commit-info
.row .row
.span4 .span5
= image_tag gravatar_icon(@commit.author_email, 40), class: "avatar" = image_tag gravatar_icon(@commit.author_email, 40), class: "avatar"
.author .author
%strong= @commit.author_name %strong= @commit.author_name
...@@ -31,10 +31,10 @@ ...@@ -31,10 +31,10 @@
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
.span7.right .span6.right
.sha-block .sha-block
%span.cgray commit %span.cgray commit
%code= @commit.id %code.label_commit= @commit.id
.sha-block .sha-block
%span.cgray= pluralize(@commit.parents.count, "parent") %span.cgray= pluralize(@commit.parents.count, "parent")
- @commit.parents.each do |parent| - @commit.parents.each do |parent|
......
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