summaryrefslogtreecommitdiff
path: root/app/helpers/icons_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/icons_helper.rb')
-rw-r--r--app/helpers/icons_helper.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/helpers/icons_helper.rb b/app/helpers/icons_helper.rb
index f0f771b4ba0..aaa8f8d0077 100644
--- a/app/helpers/icons_helper.rb
+++ b/app/helpers/icons_helper.rb
@@ -1,21 +1,21 @@
module IconsHelper
def boolean_to_icon(value)
if value.to_s == "true"
- content_tag :i, nil, class: 'icon-circle cgreen'
+ content_tag :i, nil, class: 'fa fa-circle cgreen'
else
- content_tag :i, nil, class: 'icon-off clgray'
+ content_tag :i, nil, class: 'fa fa-power-off clgray'
end
end
def public_icon
- content_tag :i, nil, class: 'icon-globe'
+ content_tag :i, nil, class: 'fa fa-globe'
end
def internal_icon
- content_tag :i, nil, class: 'icon-shield'
+ content_tag :i, nil, class: 'fa fa-shield'
end
def private_icon
- content_tag :i, nil, class: 'icon-lock'
+ content_tag :i, nil, class: 'fa fa-lock'
end
end