Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/pull/4842'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed May 27, 2024
2 parents 2c90432 + b79e4f0 commit a90302a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions app/assets/stylesheets/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ header {
nav.primary {
margin-right: auto;
}

.username {
max-width: 12em;
}
}

nav.primary {
Expand Down
4 changes: 2 additions & 2 deletions app/views/layouts/_header.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@
</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>
<% end %>
<span class='username align-middle'>
<span class='username align-middle text-truncate'>
<%= current_user.display_name %>
</span>
</button>
Expand Down

0 comments on commit a90302a

Please sign in to comment.