X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/550c4a3a45814fde5c809334c85f1ebc47659a82..7f611b295f39b8c42219a5ce6c84582db74ce8f7:/app/views/layouts/_flash.html.erb
diff --git a/app/views/layouts/_flash.html.erb b/app/views/layouts/_flash.html.erb
index 5dda3ad5c..8a7ed6fe4 100644
--- a/app/views/layouts/_flash.html.erb
+++ b/app/views/layouts/_flash.html.erb
@@ -1,35 +1,13 @@
-<% if flash[:error] %>
-
-
-
-
-
<%= render_flash(flash[:error]) %>
-
-<% end %>
-
-<% if flash[:warning] %>
-
-
-
-
-
<%= render_flash(flash[:warning]) %>
-
-<% end %>
-
-<% if flash[:notice] %>
-
-
-
-
-
<%= render_flash(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 %>
+
+ <%= notice_svg_tag %>
+
+
+ <%= render_flash flash[flash_type] %>
+
+ <% end %>
+ <% end %>
<% end %>