]> git.openstreetmap.org Git - rails.git/commitdiff
Truncate usernames in block navigation tabs
authorAnton Khorev <tony29@yandex.ru>
Mon, 2 Dec 2024 09:22:45 +0000 (12:22 +0300)
committerAnton Khorev <tony29@yandex.ru>
Mon, 2 Dec 2024 09:22:45 +0000 (12:22 +0300)
app/assets/stylesheets/common.scss
app/views/user_blocks/_navigation.html.erb
config/locales/en.yml

index 4bedf42b6ac2b6571a7b09d27f2bf11973c6d222..b179ec5ada7638a3d27ce482820b9d06af26d301 100644 (file)
@@ -938,7 +938,11 @@ div.secondary-actions {
   max-width: 20em;
 }
 
-/* Rules for tabs inside secondary background sections */
+/* Rules for navigation tabs */
+
+.nav-tabs .username {
+  max-width: 20em;
+}
 
 .bg-body-secondary .nav-tabs {
   --bs-border-color: var(--bs-secondary-border-subtle);
index 061989586a255b067cdcf94d219feb7d8b06df86..0770e331fdd7827d13eac1b95092bf6de36b379d 100644 (file)
@@ -14,7 +14,7 @@
   <% on_user = @user || @user_block&.user %>
   <% if on_user != current_user && on_user&.blocks&.exists? %>
     <li class="nav-item">
-      <%= link_to t(".blocks_on_user", :user => on_user.display_name),
+      <%= link_to t(".blocks_on_user_html", :user => tag.span(on_user.display_name, :class => "username text-truncate d-inline-block align-bottom", :dir => "auto")),
                   user_blocks_on_path(on_user),
                   :class => ["nav-link", { :active => action_name == "blocks_on" }] %>
     </li>
@@ -29,7 +29,7 @@
   <% by_user = @user || @user_block&.creator %>
   <% if by_user != current_user && by_user&.blocks_created&.exists? %>
     <li class="nav-item">
-      <%= link_to t(".blocks_by_user", :user => by_user.display_name),
+      <%= link_to t(".blocks_by_user_html", :user => tag.span(by_user.display_name, :class => "username text-truncate d-inline-block align-bottom", :dir => "auto")),
                   user_blocks_by_path(by_user),
                   :class => ["nav-link", { :active => action_name == "blocks_by" }] %>
     </li>
index 2a92fbb63c65ecf4dda142b567c35943971e4efb..b190c2ca0bca1924078caeeee55e052b08aa7e06 100644 (file)
@@ -2925,9 +2925,9 @@ en:
     navigation:
       all_blocks: "All Blocks"
       blocks_on_me: "Blocks on Me"
-      blocks_on_user: "Blocks on %{user}"
+      blocks_on_user_html: "Blocks on %{user}"
       blocks_by_me: "Blocks by Me"
-      blocks_by_user: "Blocks by %{user}"
+      blocks_by_user_html: "Blocks by %{user}"
       block: "Block #%{id}"
       new_block: "New Block"
   user_mutes: