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

Any way to add text-overflow: ellipsis to the row-title element? #366

Open
samjco opened this issue Nov 1, 2022 · 0 comments
Open

Any way to add text-overflow: ellipsis to the row-title element? #366

samjco opened this issue Nov 1, 2022 · 0 comments
Assignees

Comments

@samjco
Copy link

samjco commented Nov 1, 2022

Just cant understand why this isn't a default.

When a user defines a width in the Title column, text-overflow ellipsis should auto kick in showing a [...] following the left out text... And if we wanted to get even spiffier, we could add an overflow to things and allow user to show the full title on hover.

Example below:

title-element a {
  white-space: nowrap; 
  /*width: 100px;  //width will be define by user */
  overflow: hidden;
  text-overflow: ellipsis;
}

title-element a:hover {
  overflow: visible;
  z-index: 20;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants