]> git.openstreetmap.org Git - rails.git/commitdiff
Let descriptions be horizontally scrollable on changeset/element pages
authorAnton Khorev <tony29@yandex.ru>
Sat, 18 May 2024 16:40:34 +0000 (19:40 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 18 May 2024 16:41:07 +0000 (19:41 +0300)
app/views/browse/_common_details.html.erb
app/views/changesets/show.html.erb

index 58956f9de728920e2f1579dd7036eb215055edb7..bf6c270cffa62d4e3d5c8d6217da8fc64283e688 100644 (file)
@@ -7,7 +7,7 @@
   #<%= link_to_unless_current common_details.version, :controller => "old_#{@type.pluralize}", :action => :show, :version => common_details.version %>
 </h4>
 
-<p class="fs-6">
+<p class="fs-6 overflow-x-auto">
   <% if common_details.changeset.tags["comment"].present? %>
     <%= linkify(common_details.changeset.tags["comment"]) %>
   <% else %>
index 7c04ee2840287ed7bf63f81ca232bf8e5491ec41..6e4e953ffa5e3c9b044dd43d11376e3974a6faa7 100644 (file)
@@ -3,7 +3,7 @@
 <%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>
 
 <div class="browse-section">
-  <p class="fs-6">
+  <p class="fs-6 overflow-x-auto">
     <%= linkify(@changeset.tags["comment"].to_s.presence || t("browse.no_comment")) %>
   </p>
   <p class="details"><%= changeset_details(@changeset) %></p>