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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-07 00:14:55 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-07 00:14:55 +0400
commit97e05469e284a18f6663e0b65d8f98ff8d46c1c6 (patch)
treef4f9cba086c4fa8b65aaaf2f8948eb61ba3c3614 /app/helpers/icons_helper.rb
parenta4a27a5a2bdb44ad831a3b64c598be8d1062f653 (diff)
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