diff options
author | Simon Knox <psimyn@gmail.com> | 2017-02-28 14:31:21 +1100 |
---|---|---|
committer | Simon Knox <psimyn@gmail.com> | 2017-03-07 08:44:22 +1100 |
commit | 591f0e2258a4a97d8f3eb6ade797feb54f1a321f (patch) | |
tree | f7b592a7ee4f8fd9bbd34698944cc55f67dd41e3 /app/views/projects/commits/_commits.html.haml | |
parent | 9f908cfc8ed3acf2fd6692f098ed1bd526631a0d (diff) | |
download | gitlab-ce-591f0e2258a4a97d8f3eb6ade797feb54f1a321f.tar.gz |
consistent spacing on new MR panels28230-new-mr-spacing
center spinner
show placeholder text on new MR page
remove redundant `display: block` from li - they default to `list-style` already
Diffstat (limited to 'app/views/projects/commits/_commits.html.haml')
-rw-r--r-- | app/views/projects/commits/_commits.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/commits/_commits.html.haml b/app/views/projects/commits/_commits.html.haml index 904cdb5767f..88c7d7bc44b 100644 --- a/app/views/projects/commits/_commits.html.haml +++ b/app/views/projects/commits/_commits.html.haml @@ -4,7 +4,7 @@ - commits.chunk { |c| c.committed_date.in_time_zone.to_date }.each do |day, commits| %li.commit-header #{day.strftime('%d %b, %Y')} #{pluralize(commits.count, 'commit')} %li.commits-row - %ul.content-list.commit-list.table-list.table-wide + %ul.content-list.commit-list = render commits, project: project, ref: ref - if hidden > 0 |