diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2016-08-04 10:53:05 -0500 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2016-08-25 12:21:37 -0500 |
commit | 82302b04fc53446a01fe1f36da261345415dca91 (patch) | |
tree | 2cb9a1a1d7c9ba684fd2ee3e41286b407c21af1e /app/views/projects | |
parent | b099a10e8595a517a401c9e9d2a3962f96578081 (diff) | |
download | gitlab-ce-82302b04fc53446a01fe1f36da261345415dca91.tar.gz |
Add hover color to emoji icon
Diffstat (limited to 'app/views/projects')
-rw-r--r-- | app/views/projects/notes/_note.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/notes/_note.html.haml b/app/views/projects/notes/_note.html.haml index d2ac1ce2b9a..7c82177f9ea 100644 --- a/app/views/projects/notes/_note.html.haml +++ b/app/views/projects/notes/_note.html.haml @@ -52,11 +52,11 @@ - if note.emoji_awardable? = link_to '#', title: 'Award Emoji', class: 'note-action-button note-emoji-button js-add-award js-note-emoji', data: { position: 'right' } do = icon('spinner spin') - = icon('smile-o') + = icon('smile-o', class: 'link-highlight') - if note_editable = link_to '#', title: 'Edit comment', class: 'note-action-button js-note-edit' do - = icon('pencil') + = icon('pencil', class: 'link-highlight') = link_to namespace_project_note_path(note.project.namespace, note.project, note), title: 'Remove comment', method: :delete, data: { confirm: 'Are you sure you want to remove this comment?' }, remote: true, class: 'note-action-button hidden-xs js-note-delete danger' do = icon('trash-o') .note-body{class: note_editable ? 'js-task-list-container' : ''} |