Commit 1853d715 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix link colors by using content-list for commits

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent b5c9637c
...@@ -99,6 +99,10 @@ li.commit { ...@@ -99,6 +99,10 @@ li.commit {
color: $gl-gray; color: $gl-gray;
} }
.avatar {
margin-right: 8px;
}
.committed_ago { .committed_ago {
display: inline-block; display: inline-block;
} }
......
...@@ -5,10 +5,10 @@ ...@@ -5,10 +5,10 @@
.panel-heading .panel-heading
Commits (#{@commits.count}) Commits (#{@commits.count})
- if hidden > 0 - if hidden > 0
%ul.well-list %ul.content-list
- commits.each do |commit| - commits.each do |commit|
= render "projects/commits/inline_commit", commit: commit, project: @project = render "projects/commits/inline_commit", commit: commit, project: @project
%li.warning-row.unstyled %li.warning-row.unstyled
#{number_with_delimiter(hidden)} additional commits have been omitted to prevent performance issues. #{number_with_delimiter(hidden)} additional commits have been omitted to prevent performance issues.
- else - else
%ul.well-list= render commits, project: @project %ul.content-list= render commits, project: @project
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
.light .light
= pluralize(commits.count, 'commit') = pluralize(commits.count, 'commit')
.col-md-10.col-sm-12 .col-md-10.col-sm-12
%ul.bordered-list %ul.content-list
= render commits, project: project = render commits, project: project
%hr.lists-separator %hr.lists-separator
......
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