From: Tom Hughes Date: Wed, 8 May 2024 17:24:28 +0000 (+0100) Subject: Merge remote-tracking branch 'upstream/pull/4771' X-Git-Tag: live~1029 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/74195e38bf6550dc49b00c3963de62e7cbb1a39e?ds=sidebyside;hp=-c Merge remote-tracking branch 'upstream/pull/4771' --- 74195e38bf6550dc49b00c3963de62e7cbb1a39e diff --combined app/helpers/user_roles_helper.rb index bdae9ffaf,449b4e128..e839c0ae6 --- a/app/helpers/user_roles_helper.rb +++ b/app/helpers/user_roles_helper.rb @@@ -24,7 -24,7 +24,7 @@@ module UserRolesHelpe def role_icon_svg_tag(role, blank, title, **options) role_colors = { "administrator" => "#f69e42", - "moderator" => "#0606ff", + "moderator" => "#447eff", "importer" => "#38e13a" } color = role_colors[role] || "currentColor" @@@ -32,8 -32,11 +32,11 @@@ 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" tag.svg(:width => 20, :height => 20, **options) do concat tag.title(title) - concat tag.path(:d => path_data, :fill => color, :stroke => color, "stroke-width" => 2, "stroke-linejoin" => "round") - concat tag.path(:d => path_data, :fill => "#fff") if blank + concat tag.path(:d => path_data, + :fill => blank ? "none" : color, + :stroke => color, + "stroke-width" => blank ? 1.5 : 2, + "stroke-linejoin" => "round") end end end