Skip to content

Commit

Permalink
fix(content-explorer): fix text ellipsis in breadcrumbs (#3481)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
tjuanitas and mergify[bot] committed Jan 5, 2024
1 parent fa68f9b commit 6099b1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Expand Up @@ -162,6 +162,10 @@
}
}

.bdl-ContentExplorerBreadcrumbs-crumbLink {
width: 100%;
}

.content-explorer .modal-actions .status-message {
margin-right: auto;
}
Expand Down
Expand Up @@ -30,9 +30,11 @@ const ContentExplorerBreadcrumbs = ({
<IconChevron direction="left" size="6px" color="#333" />
</Button>
<Breadcrumb label={formatMessage(messages.breadcrumb)} {...breadcrumbProps}>
{/* The outer div for each crumb prevents styling conflicts when the crumbs menu is active */}
{foldersPath.map((folder, i) => (
<div key={folder.id} className="lnk">
<PlainButton
className="bdl-ContentExplorerBreadcrumbs-crumbLink"
data-testid="breadcrumb-lnk"
onClick={event => onBreadcrumbClick(i, event)}
title={folder.name}
Expand Down

0 comments on commit 6099b1d

Please sign in to comment.