mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 07:39:02 +02:00
Fix tag name overflow in projects list (#20120)
GitOrigin-RevId: 9fc317dbebd8115ab8af97f4753350f5ee79c1cd
This commit is contained in:
@@ -78,12 +78,9 @@ function TagsList({ onTagClick, onEditClick }: TagsListProps) {
|
||||
style={{ verticalAlign: 'sub' }}
|
||||
/>
|
||||
</span>
|
||||
<span>
|
||||
{tag.name}{' '}
|
||||
<span className="subdued">
|
||||
{' '}
|
||||
({tag.project_ids?.length})
|
||||
</span>
|
||||
<span className="tag-name-and-size">
|
||||
<span className="tag-name">{tag.name}</span>
|
||||
<span className="subdued">({tag.project_ids?.length})</span>
|
||||
</span>
|
||||
</span>
|
||||
</MenuItemButton>
|
||||
|
||||
@@ -714,6 +714,7 @@
|
||||
|
||||
& + .projects-dropdown-menu {
|
||||
min-width: 226px;
|
||||
max-width: 92vw;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -814,6 +815,7 @@
|
||||
.menu-item-button {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
background: inherit;
|
||||
@@ -822,6 +824,18 @@
|
||||
|
||||
.menu-item-button-text {
|
||||
padding-left: 14px;
|
||||
overflow: hidden;
|
||||
|
||||
.tag-name-and-size {
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
gap: 1ex;
|
||||
}
|
||||
|
||||
.tag-name {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
|
||||
.menu-item-button-icon {
|
||||
|
||||
Reference in New Issue
Block a user