I'm having trouble implementing the Angular Material list with checkboxes, where the text needs to be truncated instead of word-wrapped due to limited UI space. I have modified an example on the Angular Material site to demonstrate the issue. The text is being cut off, but not with an ellipse as expected. Can someone skilled in CSS help me out?
https://stackblitz.com/edit/angular-xqk8h8
Here's how it currently looks: https://i.stack.imgur.com/qLWBb.png
I would like each line to end with "..." before the checkbox.
I've tried using the CSS properties text-truncate: ellipsis and white-space: nowrap.