]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/layouts/_flash.html.erb
Added greeting to friendship notification
[rails.git] / app / views / layouts / _flash.html.erb
index 51ef3fe41548d202bec942e39748e39b79a4e940..8a7ed6fe4b643bbb08a9b8b8cdfec58f298581d7 100644 (file)
@@ -1,20 +1,13 @@
-<% if flash[:error] %>
-  <p class="error">
-    <%= image_tag("notice.png", :class => "small_icon", :border => 0) %>
-    <%= raw flash[:error] %>
-  </p>
-<% end %>
-
-<% if flash[:warning] %>
-  <p class="warning">
-    <%= image_tag("notice.png", :class => "small_icon", :border => 0) %>
-    <%= raw flash[:warning] %>
-  </p>
-<% end %>
-
-<% if flash[:notice] %>
-  <p class="notice">
-    <%= image_tag("notice.png", :class => "small_icon", :border => 0) %>
-    <%= raw flash[:notice] %>
-  </p>
+<% [[: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 %>
+      <div class="col-auto">
+        <%= notice_svg_tag %>
+      </div>
+      <div class="col">
+        <%= render_flash flash[flash_type] %>
+      </div>
+    <% end %>
+  <% end %>
 <% end %>