1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #276 from thornbill/fix-text-overflow

Fix text overflow not displaying ellipsis in cards
This commit is contained in:
Anthony Lavado 2019-04-26 00:41:06 -04:00 committed by GitHub
commit 8b5004dda4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -315,6 +315,12 @@ button {
padding-top: .24em;
}
.cardText > .textActionButton {
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
.innerCardFooter > .cardText {
padding: .3em .5em;
}