mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix text truncation bug (#6589)
The fixed height can cause the text to be cut off in other languages
This commit is contained in:
parent
1d25fae65b
commit
1693618589
1 changed files with 9 additions and 3 deletions
|
@ -214,9 +214,15 @@ div[data-role=controlgroup] a.ui-btn-active {
|
|||
width: 50%;
|
||||
}
|
||||
|
||||
.localUsers .cardText-secondary {
|
||||
white-space: pre-wrap;
|
||||
height: 3em;
|
||||
.localUsers {
|
||||
.cardText-secondary {
|
||||
white-space: pre-wrap;
|
||||
min-height: 3em;
|
||||
}
|
||||
|
||||
.cardBox {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.customCssContainer textarea {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue