diff options
author | Phil Hughes <me@iamphill.com> | 2016-06-01 11:23:57 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-06-10 10:41:58 +0100 |
commit | ffd07382b08586420628ae7ecda8a512adf091aa (patch) | |
tree | d6646e191b4e155c27acfc8ba20cd9e74fc1f320 /app/views | |
parent | e0f3e44b3e67b80543b6956c7ae46035fabc696f (diff) | |
download | gitlab-ce-ffd07382b08586420628ae7ecda8a512adf091aa.tar.gz |
Fixed issue with bold in issuable sidebar
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/shared/issuable/_sidebar.html.haml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/views/shared/issuable/_sidebar.html.haml b/app/views/shared/issuable/_sidebar.html.haml index fb906de829a..a1f6defafc4 100644 --- a/app/views/shared/issuable/_sidebar.html.haml +++ b/app/views/shared/issuable/_sidebar.html.haml @@ -29,8 +29,10 @@ %span.assign-yourself No assignee - if can_edit_issuable - %a.js-assign-yourself{ href: '#' } - \- assign yourself + %span.light + \- + %a.js-assign-yourself{ href: '#' } + assign yourself .selectbox.hide-collapsed = f.hidden_field 'assignee_id', value: issuable.assignee_id, id: 'issue_assignee_id' @@ -56,7 +58,7 @@ %span.has-tooltip{title: milestone_remaining_days(issuable.milestone), data: {container: 'body', html: 1}} = issuable.milestone.title - else - .light None + None .selectbox.hide-collapsed = f.hidden_field 'milestone_id', value: issuable.milestone_id, id: nil @@ -112,7 +114,7 @@ - issuable.labels_array.each do |label| = link_to_label(label, type: issuable.to_ability_name) - else - .light None + None .selectbox.hide-collapsed - issuable.labels_array.each do |label| = hidden_field_tag "#{issuable.to_ability_name}[label_names][]", label.id, id: nil |