Restore size and position for fork icon

This commit is contained in:
George Tsiolis 2018-04-18 13:12:54 +03:00
parent f150f262a9
commit 952f18e908
4 changed files with 8 additions and 2 deletions

View file

@ -19,6 +19,7 @@
.fork-svg { .fork-svg {
margin-right: 4px; margin-right: 4px;
vertical-align: bottom;
} }
} }

View file

@ -70,7 +70,7 @@
} }
.branch-info .commit-icon { .branch-info .commit-icon {
margin-right: 3px; margin-right: 8px;
svg { svg {
top: 3px; top: 3px;

View file

@ -63,7 +63,7 @@ module CommitsHelper
# Returns a link formatted as a commit branch link # Returns a link formatted as a commit branch link
def commit_branch_link(url, text) def commit_branch_link(url, text)
link_to(url, class: 'label label-gray ref-name branch-link') do link_to(url, class: 'label label-gray ref-name branch-link') do
sprite_icon('fork', size: 16, css_class: 'fork-svg') + "#{text}" sprite_icon('fork', size: 12, css_class: 'fork-svg') + "#{text}"
end end
end end

View file

@ -0,0 +1,5 @@
---
title: Fix size and position for fork icon
merge_request: 18449
author: George Tsiolis
type: changed