Remove <picture>s around <img srcset=...>

This commit is contained in:
Anton Khorev 2023-10-03 03:06:12 +03:00
parent 95041ec81a
commit 0fae5627a5
5 changed files with 9 additions and 62 deletions

View file

@ -25,9 +25,7 @@ module UserRolesHelper
end
if image
svg_icon = tag.source(:srcset => image_path("#{image}.svg"), :type => "image/svg+xml")
png_icon = image_tag("#{image}.png", :srcset => image_path("#{image}.svg"), :size => "20x20", :border => 0, :alt => alt, :title => title)
icon = tag.picture(svg_icon + png_icon)
icon = image_tag("#{image}.png", :srcset => image_path("#{image}.svg"), :size => "20x20", :border => 0, :alt => alt, :title => title)
icon = link_to(icon, url, :method => :post, :data => { :confirm => confirm }) if url
end

View file

@ -6,10 +6,7 @@
<div class="alert alert-danger row mx-0 p-3 align-items-center">
<div class="col-auto">
<picture>
<source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
<%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
</picture>
<%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
</div>
<div class="col">
<p class="mb-0"><%= t ".warning" %></p>

View file

@ -1,10 +1,7 @@
<% if flash[:error] %>
<div class="alert alert-danger row mx-0 mb-0 p-3 rounded-0 align-items-center">
<div class="col-auto">
<picture>
<source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml" />
<%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
</picture>
<%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
</div>
<div class="col"><%= render_flash(flash[:error]) %></div>
</div>
@ -13,10 +10,7 @@
<% if flash[:warning] %>
<div class="alert alert-warning row mx-0 mb-0 p-3 rounded-0 align-items-center">
<div class="col-auto">
<picture>
<source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
<%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
</picture>
<%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
</div>
<div class="col"><%= render_flash(flash[:warning]) %></div>
</div>
@ -25,10 +19,7 @@
<% if flash[:notice] %>
<div class="alert alert-success row mx-0 mb-0 p-3 rounded-0 align-items-center">
<div class="col-auto">
<picture>
<source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
<%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
</picture>
<%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
</div>
<div class="col"><%= render_flash(flash[:notice]) %></div>
</div>

View file

@ -8,10 +8,7 @@
</head>
<body>
<a href="<%= root_path %>">
<picture>
<source srcset="<%= image_path "osm_logo.svg" %>" type="image/svg+xml" />
<%= image_tag "osm_logo.png", :srcset => image_path("osm_logo.svg"), :alt => t("layouts.logo.alt_text"), :class => "logo" %>
</picture>
<%= image_tag "osm_logo.png", :srcset => image_path("osm_logo.svg"), :alt => t("layouts.logo.alt_text"), :class => "logo" %>
</a>
<div class="details">
<%= yield %>