Commit 3c7806c3f29e0c2cdbb0c973a9180296267815cb
1 parent
283a9c7b
Exists in
master
and in
4 other branches
Improve lists. Remove unneccessary padding
Showing
3 changed files
with
4 additions
and
3 deletions
Show diff stats
app/assets/stylesheets/gitlab_bootstrap/lists.scss
app/assets/stylesheets/sections/events.scss
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 | ... | ... |