Commit c3efcf7a authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Pollished push event

parent c3907bef
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
} }
.event-body { .event-body {
p { p {
color:#666; color:#555;
} }
.event-info { .event-info {
color:#666; color:#666;
...@@ -73,7 +73,8 @@ ...@@ -73,7 +73,8 @@
margin-left:50px; margin-left:50px;
margin-bottom:5px; margin-bottom:5px;
.avatar { .avatar {
width:22px; width:18px;
margin-top:3px;
} }
} }
...@@ -84,10 +85,17 @@ ...@@ -84,10 +85,17 @@
.event_commits { .event_commits {
margin-top: 5px; margin-top: 5px;
li.commit { li {
background: transparent; &.commit {
padding:5px; background: transparent;
border:none; padding:3px;
border:none;
font-size:12px;
}
&.commits-stat {
display: block;
margin-top: 5px;
}
} }
} }
} }
......
...@@ -9,22 +9,18 @@ ...@@ -9,22 +9,18 @@
%strong= event.ref_name %strong= event.ref_name
at at
%strong= link_to event.project.name, event.project %strong= link_to event.project.name, event.project
- if event.push_with_commits?
- if event.commits_count > 1
= link_to compare_project_commits_path(event.project, from: event.parent_commit.id, to: event.last_commit.id) do
%strong #{event.parent_commit.id[0..7]}...#{event.last_commit.id[0..7]}
- if event.push_with_commits? - if event.push_with_commits?
- project = event.project - project = event.project
.event-body .event-body
%ul.unstyled.event_commits %ul.unstyled.event_commits
- if event.commits_count > 3 - few_commits = event.commits[0...2]
- event.commits[0...2].each do |commit| - few_commits.each do |commit|
= render "events/commit", commit: commit, project: project = render "events/commit", commit: commit, project: project
%li
%br %li.commits-stat
\... and #{event.commits_count - 2} more commits - if event.commits_count > 2
- else %span ... and #{event.commits_count - 2} more commits.
- event.commits.each do |commit| = link_to compare_project_commits_path(event.project, from: event.parent_commit.id, to: event.last_commit.id) do
= render "events/commit", commit: commit, project: project %strong Compare → #{event.parent_commit.id[0..7]}...#{event.last_commit.id[0..7]}
.clearfix .clearfix
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