Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions packages/core/src/components/date-picker/date-picker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,6 @@
border: none;
background: none;
cursor: initial;

.overflow {
@include text-truncation.ellipsis;
}
}
Comment thread
lzeiml marked this conversation as resolved.

&.empty-day {
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/components/date-picker/date-picker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ export class DatePicker

private setTranslations() {
this.dayNames = this.rotateWeekDayNames(
Info.weekdays('long', {
Info.weekdays('short', {
locale: this.locale,
}),
this.weekStartIndex
Comment thread
lzeiml marked this conversation as resolved.
Outdated
Expand Down Expand Up @@ -1036,7 +1036,7 @@ export class DatePicker
class="calendar-item week-day"
role="columnheader"
>
<div class="overflow">{name.slice(0, 3)}</div>
{name}
</div>
))}
Comment thread
lzeiml marked this conversation as resolved.
</div>
Expand Down
Loading