X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2b4f8e92c969a5508b73ae7af45811a118fda6b1..98b4d62462040deb0d3564808917f69cc723c3a3:/app/views/layouts/_flash.html.erb diff --git a/app/views/layouts/_flash.html.erb b/app/views/layouts/_flash.html.erb index 51ef3fe41..8a7ed6fe4 100644 --- a/app/views/layouts/_flash.html.erb +++ b/app/views/layouts/_flash.html.erb @@ -1,20 +1,13 @@ -<% if flash[:error] %> -
- <%= image_tag("notice.png", :class => "small_icon", :border => 0) %> - <%= raw flash[:error] %> -
-<% end %> - -<% if flash[:warning] %> -- <%= image_tag("notice.png", :class => "small_icon", :border => 0) %> - <%= raw flash[:warning] %> -
-<% end %> - -<% if flash[:notice] %> -- <%= image_tag("notice.png", :class => "small_icon", :border => 0) %> - <%= raw flash[:notice] %> -
+<% [[:error, :danger], [:warning, :warning], [:notice, :success]].each do |flash_type, bootstrap_type| %> + <% if flash[flash_type] %> + <%= tag.div :class => "alert alert-#{bootstrap_type} row mx-0 mb-0 p-3 rounded-0 align-items-center", + :data => { :turbo_temporary => true } do %> +