]> git.openstreetmap.org Git - rails.git/blob - app/helpers/user_roles_helper.rb
Move role colors to css
[rails.git] / app / helpers / user_roles_helper.rb
1 module UserRolesHelper
2   def role_icon_svg_tag(role, blank, title, classes = [])
3     path_data = "M 10,2 8.125,8 2,8 6.96875,11.71875 5,18 10,14 15,18 13.03125,11.71875 18,8 11.875,8 10,2 z"
4     tag.svg(:width => 20, :height => 20, :class => ["role-icon", role, *classes]) do
5       concat tag.title(title)
6       concat tag.path(:d => path_data,
7                       :fill => blank ? "none" : "currentColor",
8                       :stroke => "currentColor",
9                       "stroke-width" => blank ? 1.5 : 2,
10                       "stroke-linejoin" => "round")
11     end
12   end
13 end