summaryrefslogtreecommitdiff
path: root/app/views/admin
diff options
context:
space:
mode:
authorJarek Ostrowski <jarek.j.ostrowski@gmail.com>2019-05-20 14:43:44 -0400
committerJarek Ostrowski <jarek.j.ostrowski@gmail.com>2019-05-21 12:17:16 -0400
commit4f2426f51e31980ba4d4e5ac1d41873b61201fc6 (patch)
tree6fd9985312b032d11341fbc6fc9aefd1797b6465 /app/views/admin
parentff61f92cf0940570cc6e10c93ba2b2b75386a648 (diff)
downloadgitlab-ce-4f2426f51e31980ba4d4e5ac1d41873b61201fc6.tar.gz
Update broadcast message icons39304-broadcast-message-buttons
Add icons from gitlab-svgs Remove btn-sm class for better sizing Add changelog Update mr number changelog Change to sprite_icon
Diffstat (limited to 'app/views/admin')
-rw-r--r--app/views/admin/broadcast_messages/index.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/broadcast_messages/index.html.haml b/app/views/admin/broadcast_messages/index.html.haml
index 9ef58faf8cc..eb4dfdf2858 100644
--- a/app/views/admin/broadcast_messages/index.html.haml
+++ b/app/views/admin/broadcast_messages/index.html.haml
@@ -32,7 +32,7 @@
%td
= message.ends_at
%td
- = link_to icon('pencil-square-o'), edit_admin_broadcast_message_path(message), title: 'Edit', class: 'btn btn-sm'
- = link_to icon('times'), admin_broadcast_message_path(message), method: :delete, remote: true, title: 'Remove', class: 'js-remove-tr btn btn-sm btn-danger'
+ = link_to sprite_icon('pencil-square'), edit_admin_broadcast_message_path(message), title: 'Edit', class: 'btn'
+ = link_to sprite_icon('remove'), admin_broadcast_message_path(message), method: :delete, remote: true, title: 'Remove', class: 'js-remove-tr btn btn-danger'
= paginate @broadcast_messages, theme: 'gitlab'