fix margin error when text is too long

This commit is contained in:
vapormusic 2021-12-07 09:46:51 +07:00
parent 836028762e
commit 7eec65a98a
2 changed files with 7 additions and 2 deletions

View file

@ -580,10 +580,12 @@ input[type=range].web-slider::-webkit-slider-runnable-track {
}
.text-overflow-elipsis {
display: -webkit-box;
min-width: 0px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}

View file

@ -1332,12 +1332,15 @@ input[type=range].web-slider::-webkit-slider-runnable-track {
/* Cider */
.text-overflow-elipsis {
display: -webkit-box;
min-width: 0px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.mediaitem-artwork {
border-radius: var(--mediaItemRadius);
overflow: hidden;