Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
22 changes: 20 additions & 2 deletions src/components/MeetingListItem/MeetingListItem.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -307,12 +307,21 @@ Colors.parameters = {
{
buttonGroup: (
<ButtonGroup spaced>
<ButtonHyperlink>Link</ButtonHyperlink>
<ButtonHyperlink>
Link for Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book. It
has survived not only five centuries, but also the leap
</ButtonHyperlink>
</ButtonGroup>
),
children: (
<Text type="body-primary" tagName="p">
{MeetingMarker.AcceptedActive}
What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap
</Text>
),
color: MeetingMarker.AcceptedActive,
Expand All @@ -327,6 +336,10 @@ Colors.parameters = {
children: (
<Text type="body-primary" tagName="p">
{MeetingMarker.AcceptedInactive}
What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap
</Text>
),
color: MeetingMarker.AcceptedInactive,
Expand All @@ -335,7 +348,12 @@ Colors.parameters = {
{
buttonGroup: (
<ButtonGroup spaced>
<ButtonHyperlink>Link</ButtonHyperlink>
<ButtonHyperlink>
Link for Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book. It
has survived not only five centuries, but also the leap
</ButtonHyperlink>
</ButtonGroup>
),
children: (
Expand Down
36 changes: 36 additions & 0 deletions src/components/MeetingRowContent/MeetingRowContent.style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,42 @@
}
}

.md-meeting-list-item-wrapper {
display: grid;
grid-template-columns: max-content minmax(0, 3fr) minmax(0, 2fr);
justify-content: unset;

div[data-position='middle'] {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

> * {
width: 100%;
}
}

div[data-position='end'] {
width: 100%;
display: flex;
justify-content: end;
justify-self: end;
flex-direction: column;
align-items: flex-end;

> * {
width: 100%;
justify-content: end;
}

a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}

.md-meeting-row-content-end-section {
.md-button-group-wrapper > .md-icon-wrapper > svg {
path {
Expand Down
Loading