Remove map key image custom css

This commit is contained in:
Anton Khorev 2023-07-29 21:37:31 +03:00
parent f49c815cb5
commit dc622a32f3
2 changed files with 5 additions and 15 deletions

View file

@ -562,16 +562,6 @@ header .search_forms,
display: none;
}
/* Rules for the map key which appears in the popout sidebar */
#mapkey {
.mapkey-table-key img {
display: block;
margin-left: auto;
margin-right: auto;
}
}
/* Rules for search sidebar */
#sidebar .search_results_entry {

View file

@ -1,16 +1,16 @@
<div id="mapkey">
<table class="table table-sm table-borderless mapkey-table mb-0">
<table class="table table-sm table-borderless mb-0 align-middle">
<% @key.each do |layer_name, layer_data| %>
<% layer_data.each do |entry| %>
<%= tag.tr :class => "mapkey-table-entry", :data => { :layer => layer_name, :zoom_min => entry["min_zoom"], :zoom_max => entry["max_zoom"] } do %>
<td class="mapkey-table-key align-middle">
<td>
<% if entry["width"] && entry["height"] && entry["fill"] %>
<%= image_tag "data:image/svg+xml,#{u("<svg xmlns='http://www.w3.org/2000/svg' width='#{entry['width']}' height='#{entry['height']}'><rect width='100%' height='100%' fill='#{entry['fill']}' /></svg>")}" %>
<%= image_tag "data:image/svg+xml,#{u("<svg xmlns='http://www.w3.org/2000/svg' width='#{entry['width']}' height='#{entry['height']}'><rect width='100%' height='100%' fill='#{entry['fill']}' /></svg>")}", :class => "d-block mx-auto" %>
<% else %>
<%= image_tag "key/#{layer_name}/#{entry['image']}" %>
<%= image_tag "key/#{layer_name}/#{entry['image']}", :class => "d-block mx-auto" %>
<% end %>
</td>
<td class="mapkey-table-value">
<td>
<%= Array(t(".table.entry.#{entry['name']}")).to_sentence %>
</td>
<% end %>