In some cases, like SDG icons and the proposals map, the image was bigger than the link containing it, resulting in a funny-looking outline on focus. For reasons I don't understand, using `&:active,&:focus:active` didn't compile to the CSS I was expecting, so I'm repeating the same code for these two separate cases.
10 lines
357 B
Plaintext
10 lines
357 B
Plaintext
<div class="sidebar-divider"></div>
|
|
|
|
<div class="proposals-geozones">
|
|
<h2 class="sidebar-title"><%= t("shared.tags_cloud.districts") %></h2>
|
|
<br>
|
|
<%= link_to map_proposals_path, id: "map", title: t("shared.tags_cloud.districts_list") do %>
|
|
<%= image_tag(image_path_for("map.jpg"), alt: t("shared.tags_cloud.districts_list")) %>
|
|
<% end %>
|
|
</div>
|