summaryrefslogtreecommitdiff
path: root/app/helpers/icons_helper.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-06 22:14:55 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-06 22:14:55 +0200
commit97e05469e284a18f6663e0b65d8f98ff8d46c1c6 (patch)
treef4f9cba086c4fa8b65aaaf2f8948eb61ba3c3614 /app/helpers/icons_helper.rb
parenta4a27a5a2bdb44ad831a3b64c598be8d1062f653 (diff)
downloadgitlab-ce-97e05469e284a18f6663e0b65d8f98ff8d46c1c6.tar.gz
Remove colors from icon helpers
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/helpers/icons_helper.rb')
-rw-r--r--app/helpers/icons_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/helpers/icons_helper.rb b/app/helpers/icons_helper.rb
index 1688cfc40b1..53d4a8f2e6e 100644
--- a/app/helpers/icons_helper.rb
+++ b/app/helpers/icons_helper.rb
@@ -8,14 +8,14 @@ module IconsHelper
end
def public_icon
- content_tag :i, nil, class: 'icon-globe cblue'
+ content_tag :i, nil, class: 'icon-globe'
end
def internal_icon
- content_tag :i, nil, class: 'icon-shield camber'
+ content_tag :i, nil, class: 'icon-shield'
end
def private_icon
- content_tag :i, nil, class: 'icon-lock cgreen'
+ content_tag :i, nil, class: 'icon-lock'
end
end