diff options
author | Gokhan Apaydin <gapay84@gmail.com> | 2019-02-20 20:04:32 +0000 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.m.gray@gmail.com> | 2019-02-20 20:04:32 +0000 |
commit | deafa368812f2e1416a3c266a5d7f4065ad68896 (patch) | |
tree | 784b30bb94f19f97950e6e55e760dd2fb0869f1e /app/helpers | |
parent | e0fc809b2697d06cb89e9d6acbb9339e36ef59e7 (diff) | |
download | gitlab-ce-deafa368812f2e1416a3c266a5d7f4065ad68896.tar.gz |
fix #39010 - add left margin to 1st time contributor badge
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/issuables_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issuables_helper.rb b/app/helpers/issuables_helper.rb index 1a471034972..af28e6fcb93 100644 --- a/app/helpers/issuables_helper.rb +++ b/app/helpers/issuables_helper.rb @@ -200,7 +200,7 @@ module IssuablesHelper author_output end - output << content_tag(:span, (issuable_first_contribution_icon if issuable.first_contribution?), class: 'has-tooltip', title: _('1st contribution!')) + output << content_tag(:span, (issuable_first_contribution_icon if issuable.first_contribution?), class: 'has-tooltip prepend-left-4', title: _('1st contribution!')) output << content_tag(:span, (issuable.task_status if issuable.tasks?), id: "task_status", class: "d-none d-sm-none d-md-inline-block prepend-left-8") output << content_tag(:span, (issuable.task_status_short if issuable.tasks?), id: "task_status_short", class: "d-md-none") |