]> git.openstreetmap.org Git - rails.git/commitdiff
Force word wrap in tag table
authorAnton Khorev <tony29@yandex.ru>
Wed, 17 Apr 2024 14:30:53 +0000 (17:30 +0300)
committerAnton Khorev <tony29@yandex.ru>
Wed, 17 Apr 2024 14:42:12 +0000 (17:42 +0300)
Bootstrap disables word wrap in rtl, this overrides it.

app/assets/stylesheets/common.scss
app/views/browse/_tag_details.html.erb

index 549226f58d6c551197f8ef98df0dedb3a18ac239..61c825fca81c818f9125c892ecf937f849540701 100644 (file)
@@ -616,6 +616,8 @@ tr.turn {
   .browse-tag-list {
     table-layout: fixed;
     white-space: pre-wrap;
+    word-wrap: break-word;
+    word-break: break-word;
 
     tr:last-child th, tr:last-child td {
       border-bottom: 0;
index 2b4ec1bb0708b8b8be8f17be931b9a023aaca45f..cb876198c310bbe0b7c7f4d50da7bdd20453fd95 100644 (file)
@@ -1,7 +1,7 @@
 <% unless tag_details.empty? %>
   <h4><%= t ".tags" %></h4>
   <div class='mb-3 border border-secondary-subtle rounded overflow-hidden'>
-    <table class='mb-0 browse-tag-list table align-middle text-break'>
+    <table class='mb-0 browse-tag-list table align-middle'>
       <%= render :partial => "browse/tag", :collection => tag_details.sort %>
     </table>
   </div>