]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/layouts/_flash.html.erb
Remove inline javascript from potlatch view
[rails.git] / app / views / layouts / _flash.html.erb
index 0380a50945454794a7065785c8ad07d0b7822c59..8b04dac91d465f44844ffe7145519c9375c70732 100644 (file)
@@ -1,11 +1,29 @@
 <% if flash[:error] %>
-  <div id="error"><%= raw flash[:error] %></div>
+  <div class="flash error">
+    <picture>
+      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
+      <%= image_tag("notice.png", :srcset => image_path("notice.svg"), :class => "small_icon", :border => 0) %>
+    </picture>
+    <div class="message"><%= flash[:error] %></div>
+  </div>
 <% end %>
 
 <% if flash[:warning] %>
-  <div id="warning"><%= raw flash[:warning] %></div>
+  <div class="flash warning">
+    <picture>
+      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
+      <%= image_tag("notice.png", :srcset => image_path("notice.svg"), :class => "small_icon", :border => 0) %>
+    </picture>
+    <div class="message"><%= flash[:warning] %></div>
+  </div>
 <% end %>
 
 <% if flash[:notice] %>
-  <div id="notice"><%= raw flash[:notice] %></div>
+  <div class="flash notice">
+    <picture>
+      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
+      <%= image_tag("notice.png", :srcset => image_path("notice.svg"), :class => "small_icon", :border => 0) %>
+    </picture>
+    <div class="message"><%= flash[:notice] %></div>
+  </div>
 <% end %>