X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e119200c1f6d372673d40f778c1561fa3b1358eb..168087eba0556d427bd21fd0272bc76afeb6df00:/app/views/old_nodes/show.html.erb
diff --git a/app/views/old_nodes/show.html.erb b/app/views/old_nodes/show.html.erb
index b69c29723..9220b2cc2 100644
--- a/app/views/old_nodes/show.html.erb
+++ b/app/views/old_nodes/show.html.erb
@@ -14,12 +14,18 @@
<% if @feature.version > 1 %>
- <%= link_to "<< #{t('browse.version')} ##{@feature.version - 1}", old_node_path(@feature.node_id, @feature.version - 1) %>
+ <%= link_to old_node_path(@feature.node_id, @feature.version - 1), :class => "icon-link" do %>
+ <%= previous_page_svg_tag :height => 11 %>
+ <%= "#{t('browse.version')} ##{@feature.version - 1}" %>
+ <% end %>
·
<% end %>
<%= link_to t("browse.view_history"), node_history_path(@feature.node_id) %>
<% if @feature.version < @feature.current_node.version %>
·
- <%= link_to "#{t('browse.version')} ##{@feature.version + 1} >>", old_node_path(@feature.node_id, @feature.version + 1) %>
+ <%= link_to old_node_path(@feature.node_id, @feature.version + 1), :class => "icon-link" do %>
+ <%= "#{t('browse.version')} ##{@feature.version + 1}" %>
+ <%= next_page_svg_tag :height => 11 %>
+ <% end %>
<% end %>