From: Andy Allan Date: Wed, 6 Sep 2023 15:43:20 +0000 (+0100) Subject: Fix lack of margin on changeset browsing messages X-Git-Tag: live~1494^2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/b7ad61560c498adf46c97746593506141de97e47?ds=sidebyside Fix lack of margin on changeset browsing messages The display area here uses negative margins to make the flush list work, so we need to add them back in for normal text. --- diff --git a/app/views/changesets/index.html.erb b/app/views/changesets/index.html.erb index 43f194522..97e6351a0 100644 --- a/app/views/changesets/index.html.erb +++ b/app/views/changesets/index.html.erb @@ -13,9 +13,9 @@ <% end -%> <% elsif params[:bbox] %> -

<%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %>

+

<%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %>

<% elsif params[:display_name] %> -

<%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %>

+

<%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %>

<% else %> -

<%= t(params[:max_id] ? ".no_more" : ".empty") %>

+

<%= t(params[:max_id] ? ".no_more" : ".empty") %>

<% end %>