Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(uui-card): text overflow when user name is too long #1036

Merged
merged 8 commits into from
Mar 14, 2025
13 changes: 11 additions & 2 deletions packages/uui-card-block-type/lib/uui-card-block-type.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ export class UUICardBlockTypeElement extends UUICardElement {
#renderContent() {
return html`
<div id="content">
<span id="name">${this.name}</span>
<small>${this.description}<slot name="description"></slot></small>
<span title="${this.name}" id="name">${this.name}</span>
<small title="${this.description}">${this.description}<slot name="description"></slot></small>
</div></div>
`;
}
Expand Down Expand Up @@ -176,6 +176,15 @@ export class UUICardBlockTypeElement extends UUICardElement {
#open-part:hover #name {
text-decoration: underline;
}
#open-part #name,
#open-part small {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
overflow-wrap: anywhere;
}

:host([image]:not([image=''])) #open-part {
transition: opacity 0.5s 0.5s;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ export class UUICardContentNodeElement extends UUICardElement {
? this._renderFallbackIcon()
: ''}
</span>
<div id="name">${this.name}<slot name="name"></slot></div>
<div title="${this.name}" id="name">
${this.name}<slot name="name"></slot>
</div>
</span>
${this.renderDetail()}
</span>
Expand Down Expand Up @@ -173,6 +175,15 @@ export class UUICardContentNodeElement extends UUICardElement {
padding: var(--uui-size-space-4) var(--uui-size-space-5);
}

#open-part #name {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
overflow-wrap: anywhere;
}

#content {
align-self: stretch;
display: flex;
Expand Down
9 changes: 8 additions & 1 deletion packages/uui-card-user/lib/uui-card-user.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class UUICardUserElement extends UUICardElement {
name="avatar"
class="avatar"
@slotchange=${this._avatarSlotChanged}></slot>
<span>${this.name}</span>
<span title="${this.name}">${this.name}</span>
<slot></slot>
</div>`;
}
Expand Down Expand Up @@ -159,12 +159,19 @@ export class UUICardUserElement extends UUICardElement {
position: relative;
align-items: center;
margin: 0 0 3px 0;
height: 100%;
}

#content > span {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: center;
margin-top: 3px;
font-weight: 700;
overflow-wrap: anywhere;
}

.avatar {
Expand Down
4 changes: 3 additions & 1 deletion storyhelpers/render-slots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ function renderSlots(param: TemplateResult[] | Args) {
// Join slots with consistent formatting; no extra line breaks between them
const spacing = ' ';

const stringSlots = validSlots.map(slot => slot.strings[0]);
const stringSlots = validSlots.map(slot =>
typeof slot === 'string' ? slot : slot.strings?.[0] ?? '',
);
const stringSlotsJoined = stringSlots.join('\n');
const stringSlotsJoinedWithSpacing = stringSlotsJoined
.split('\n')
Expand Down
Loading