]> git.openstreetmap.org Git - rails.git/commitdiff
Truncate username in user menu
authorAnton Khorev <tony29@yandex.ru>
Sun, 26 May 2024 22:59:32 +0000 (01:59 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sun, 26 May 2024 22:59:32 +0000 (01:59 +0300)
app/assets/stylesheets/common.scss
app/views/layouts/_header.html.erb

index 8fc503cbdd9a96e92e2c40c8fc39d1f1b6cc6472..9be17a83a34beb1786dbdd40cec9ec0e72be0f8d 100644 (file)
@@ -114,6 +114,10 @@ header {
   nav.primary {
     margin-right: auto;
   }
+
+  .username {
+    max-width: 12em;
+  }
 }
 
 nav.primary {
index 95b2c5537a96e39d05b4a90883f3b235b53ccd8c..fdabea7cd162d24da68e560b71ea058701f2fabb 100644 (file)
     </ul>
     <% if current_user && current_user.id %>
       <div class='d-inline-flex dropdown user-menu logged-in'>
-        <button class='dropdown-toggle btn btn-outline-secondary border-secondary-subtle bg-body text-secondary px-2 py-1 flex-grow-1' type='button' data-bs-toggle='dropdown'>
+        <button class='d-flex gap-1 align-items-center justify-content-center dropdown-toggle btn btn-outline-secondary border-secondary-subtle bg-body text-secondary px-2 py-1 flex-grow-1' type='button' data-bs-toggle='dropdown'>
           <%= user_thumbnail_tiny(current_user, :width => 25, :height => 25, :class => "user_thumbnail_tiny rounded-1 bg-body") %>
           <% if current_user.new_messages.size > 0 %>
-            <span class="badge count-number position-static m-1"><%= current_user.new_messages.size %></span>
+            <span class="badge count-number position-static"><%= current_user.new_messages.size %></span>
           <% end %>
-          <span class='username align-middle'>
+          <span class='username text-truncate'>
             <%= current_user.display_name %>
           </span>
         </button>