OSDN Git Service

Pollished push event
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>
Tue, 25 Sep 2012 10:14:20 +0000 (13:14 +0300)
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>
Tue, 25 Sep 2012 10:15:06 +0000 (13:15 +0300)
app/assets/stylesheets/sections/events.scss
app/views/events/_event_push.html.haml

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