X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2b4f8e92c969a5508b73ae7af45811a118fda6b1..HEAD:/app/views/layouts/_flash.html.erb diff --git a/app/views/layouts/_flash.html.erb b/app/views/layouts/_flash.html.erb index 51ef3fe41..1d3bc3421 100644 --- a/app/views/layouts/_flash.html.erb +++ b/app/views/layouts/_flash.html.erb @@ -1,20 +1,26 @@ <% if flash[:error] %> -

- <%= image_tag("notice.png", :class => "small_icon", :border => 0) %> - <%= raw flash[:error] %> -

+
+
+ <%= image_tag("notice.png", :srcset => image_path("notice.svg")) %> +
+
<%= render_flash(flash[:error]) %>
+
<% end %> <% if flash[:warning] %> -

- <%= image_tag("notice.png", :class => "small_icon", :border => 0) %> - <%= raw flash[:warning] %> -

+
+
+ <%= image_tag("notice.png", :srcset => image_path("notice.svg")) %> +
+
<%= render_flash(flash[:warning]) %>
+
<% end %> <% if flash[:notice] %> -

- <%= image_tag("notice.png", :class => "small_icon", :border => 0) %> - <%= raw flash[:notice] %> -

+
+
+ <%= image_tag("notice.png", :srcset => image_path("notice.svg")) %> +
+
<%= render_flash(flash[:notice]) %>
+
<% end %>