diff options
author | Constance Okoghenun <constanceokoghenun@gmail.com> | 2019-01-21 06:04:54 +0100 |
---|---|---|
committer | Constance Okoghenun <constanceokoghenun@gmail.com> | 2019-01-21 06:04:54 +0100 |
commit | 311b0cd658c44e01539365fbef2960fb2099d936 (patch) | |
tree | a02e2857847a31b6d29c8ba3b9a0e1c26282fd34 /app/views | |
parent | 6f268e9c99169ece2a5f7d6f960acc2d0b24e551 (diff) | |
download | gitlab-ce-311b0cd658c44e01539365fbef2960fb2099d936.tar.gz |
Removed margin from issues related MR status tooltip
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/issues/_merge_requests_status.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/issues/_merge_requests_status.html.haml b/app/views/projects/issues/_merge_requests_status.html.haml index a64d4fedc3c..38126d6f0c6 100644 --- a/app/views/projects/issues/_merge_requests_status.html.haml +++ b/app/views/projects/issues/_merge_requests_status.html.haml @@ -16,7 +16,7 @@ - mr_status_icon = 'issue-open-m' - mr_status_class = 'open' -- mr_status_tooltip = "<div class=\"mb-1\"><span class=\"bold\">#{mr_status_title}</span> #{time_ago_in_words(mr_status_date)} ago</div><span class=\"text-tertiary\">#{l(mr_status_date.to_time, format: time_format)}</span>" +- mr_status_tooltip = "<div><span class=\"bold\">#{mr_status_title}</span> #{time_ago_in_words(mr_status_date)} ago</div><span class=\"text-tertiary\">#{l(mr_status_date.to_time, format: time_format)}</span>" %span.mr-status-wrapper.suggestion-help-hover{ class: css_class, data: { toggle: 'tooltip', placement: 'bottom', html: 'true', title: mr_status_tooltip } } = sprite_icon(mr_status_icon, size: 16, css_class: "merge-request-status #{mr_status_class}") |