]> git.openstreetmap.org Git - rails.git/commitdiff
Use Bootstrap nowrap class in messages table
authorAnton Khorev <tony29@yandex.ru>
Fri, 11 Aug 2023 15:54:14 +0000 (18:54 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 11 Aug 2023 15:54:39 +0000 (18:54 +0300)
app/assets/stylesheets/common.scss
app/views/messages/_message_summary.html.erb
app/views/messages/_sent_message_summary.html.erb

index 1b200ded7e412e8c459cb946f3b95e2e27cc9df5..8e29424c278aa7c71789cf5ede7c2212668e9a59 100644 (file)
@@ -1132,11 +1132,6 @@ tr.turn:hover {
 /* Rules for messages pages */
 
 .messages {
-  button[type="submit"] {
-    margin: auto;
-    white-space: nowrap;
-  }
-
   .inbox-row {
     background: $offwhite;
   }
@@ -1150,10 +1145,6 @@ tr.turn:hover {
   display: none !important;
 }
 
-.inbox-sent {
-  white-space: nowrap;
-}
-
 .inbox-row-unread .inbox-mark-unread {
   display: none !important;
 }
index b0f5f931b75f014edf5f72c66ee18c0e70242b39..e93b7fa900caad4c3b6bedb271ec50f9c4eaf7a8 100644 (file)
@@ -1,8 +1,8 @@
 <tr id="inbox-<%= message_summary.id %>" class="inbox-row<%= "-unread" unless message_summary.message_read? %>">
   <td class="inbox-sender"><%= link_to message_summary.sender.display_name, user_path(message_summary.sender) %></td>
   <td class="inbox-subject"><%= link_to message_summary.title, message_path(message_summary) %></td>
-  <td class="inbox-sent"><%= l message_summary.sent_on, :format => :friendly %></td>
-  <td class="text-end">
+  <td class="text-nowrap"><%= l message_summary.sent_on, :format => :friendly %></td>
+  <td class="text-nowrap text-end">
     <%= button_to t(".unread_button"), message_mark_path(message_summary, :mark => "unread"), :remote => true, :class => "btn btn-sm btn-primary", :form_class => "d-inline-block inbox-mark-unread" %>
     <%= button_to t(".read_button"), message_mark_path(message_summary, :mark => "read"), :remote => true, :class => "btn btn-sm btn-primary", :form_class => "d-inline-block inbox-mark-read" %>
     <%= button_to t(".destroy_button"), message_path(message_summary, :referer => request.fullpath), :method => :delete, :remote => true, :class => "btn btn-sm btn-danger", :form_class => "d-inline-block inbox-destroy" %>
index fa690e09268e802104f9e30d6e3a4b10ccfafcae..39ba0cf817d373e8855fb3f0cc4664b466b17a87 100644 (file)
@@ -1,8 +1,8 @@
 <tr class="inbox-row">
   <td class="inbox-sender"><%= link_to sent_message_summary.recipient.display_name, user_path(sent_message_summary.recipient) %></td>
   <td class="inbox-subject"><%= link_to sent_message_summary.title, message_path(sent_message_summary) %></td>
-  <td class="inbox-sent"><%= l sent_message_summary.sent_on, :format => :friendly %></td>
-  <td class="text-end">
+  <td class="text-nowrap"><%= l sent_message_summary.sent_on, :format => :friendly %></td>
+  <td class="text-nowrap text-end">
     <%= button_to t(".destroy_button"), message_path(sent_message_summary, :referer => request.fullpath), :method => :delete, :remote => true, :class => "btn btn-sm btn-danger", :form_class => "d-inline-block inbox-destroy" %>
   </td>
 </tr>