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

Allow card text to continue through line breaks

tmp
This commit is contained in:
Abbe98 2019-07-28 18:24:54 +02:00 committed by abbe98
parent c04e001986
commit 2e44bc4ef8

View file

@ -267,6 +267,7 @@ button {
.cardFooter {
padding: .3em .3em .5em .3em;
height: 3.5em;
position: relative;
}
@ -297,7 +298,6 @@ button {
.cardText {
padding: .06em .5em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: left;
@ -309,6 +309,11 @@ button {
.cardText-first {
padding-top: .24em;
display: -webkit-box;
line-height: 16px; /* fallback */
max-height: 32px; /* fallback */
-webkit-line-clamp: 2; /* number of lines to show */
-webkit-box-orient: vertical;
}
.cardText > .textActionButton {