Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2015-09-15 03:30:58 +0300
committerPatricio Cano <suprnova32@gmail.com>2015-09-15 03:30:58 +0300
commitdd2ffafea4c4cd0a2c9ccebe6d52e00afe371535 (patch)
treebe8a0b9e068845b8021b202990c146f3743c0ec0 /app/helpers/notifications_helper.rb
parentadcae6ebd597c731b22a748b882b668e6301763f (diff)
Added spacing to icons in Notification drop down
Diffstat (limited to 'app/helpers/notifications_helper.rb')
-rw-r--r--app/helpers/notifications_helper.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/helpers/notifications_helper.rb b/app/helpers/notifications_helper.rb
index 4aa9ccedda0..0e4fd039831 100644
--- a/app/helpers/notifications_helper.rb
+++ b/app/helpers/notifications_helper.rb
@@ -18,25 +18,25 @@ module NotificationsHelper
when Notification::N_DISABLED
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_DISABLED } do
- icon('microphone-slash', text: 'Disabled')
+ icon('microphone-slash fw', text: 'Disabled')
end
end
when Notification::N_PARTICIPATING
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_PARTICIPATING } do
- icon('volume-up', text: 'Participating')
+ icon('volume-up fw', text: 'Participating')
end
end
when Notification::N_WATCH
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_WATCH } do
- icon('globe', text: 'Watch')
+ icon('globe fw', text: 'Watch')
end
end
when Notification::N_MENTION
content_tag(:li) do
link_to '#', class: 'update-notification', data: { notification_level: Notification::N_MENTION } do
- icon('at', text: 'Mention')
+ icon('at fw', text: 'Mention')
end
end
else