Commit 3c7806c3f29e0c2cdbb0c973a9180296267815cb

Authored by Dmitriy Zaporozhets
1 parent 283a9c7b

Improve lists. Remove unneccessary padding

app/assets/stylesheets/gitlab_bootstrap/lists.scss
... ... @@ -21,7 +21,7 @@ ul {
21 21 .author { color: #999; }
22 22  
23 23 p {
24   - padding-top:5px;
  24 + padding-top: 1px;
25 25 margin:0;
26 26 color:#222;
27 27 img {
... ...
app/assets/stylesheets/sections/events.scss
... ... @@ -43,6 +43,7 @@
43 43 .event-body {
44 44 p {
45 45 color:#555;
  46 + padding-top: 5px;
46 47 }
47 48 .event-info {
48 49 color:#666;
... ...
app/views/commits/_commit.html.haml
... ... @@ -4,8 +4,8 @@
4 4 %strong= link_to "Browse Code »", project_tree_path(@project, commit), class: "right"
5 5 %p
6 6 = link_to commit.short_id(8), project_commit_path(@project, commit), class: "commit_short_id"
7   - %strong= commit.author_link avatar: true, size: 24
8   - %span.dash –
  7 + = commit.author_link avatar: true, size: 24
  8 +  
9 9 = link_to_gfm truncate(commit.title, length: 50), project_commit_path(@project, commit.id), class: "row_title"
10 10  
11 11 %span.committed_ago
... ...