Merge pull request #11889 from Budibase/fix/selected-by-user-obscured-nav-item

Fix for to ensure selectedBy Avatar is not obscured in NavItem
This commit is contained in:
Andrew Kingston 2023-10-12 08:38:41 +01:00 committed by GitHub
commit cc0ab75405
1 changed files with 6 additions and 4 deletions

View File

@ -102,7 +102,7 @@
</div>
{/if}
<div class="text" title={showTooltip ? text : null}>
{text}
<span title={text}>{text}</span>
{#if selectedBy}
<UserAvatars size="XS" users={selectedBy} />
{/if}
@ -227,9 +227,6 @@
.text {
font-weight: 600;
font-size: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1 1 auto;
color: var(--spectrum-global-color-gray-900);
order: 2;
@ -238,6 +235,11 @@
align-items: center;
gap: 8px;
}
.text span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.scrollable .text {
flex: 0 0 auto;
max-width: 160px;