Skip to content
Snippets Groups Projects
Unverified Commit 97e05469 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Remove colors from icon helpers

parent a4a27a5a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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
Loading
Loading
@@ -46,7 +46,8 @@
%ul.well-list
- @projects.each do |project|
%li
= visibility_level_icon(project.visibility_level)
%span{ class: visibility_level_color(project.visibility_level) }
= visibility_level_icon(project.visibility_level)
= link_to project.name_with_namespace, [:admin, project]
.pull-right
%span.label.label-gray
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment