fix margin error when text is too long
This commit is contained in:
parent
836028762e
commit
7eec65a98a
2 changed files with 7 additions and 2 deletions
|
@ -580,10 +580,12 @@ input[type=range].web-slider::-webkit-slider-runnable-track {
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-overflow-elipsis {
|
.text-overflow-elipsis {
|
||||||
|
display: -webkit-box;
|
||||||
min-width: 0px;
|
min-width: 0px;
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
-webkit-line-clamp: 1;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1332,12 +1332,15 @@ input[type=range].web-slider::-webkit-slider-runnable-track {
|
||||||
/* Cider */
|
/* Cider */
|
||||||
|
|
||||||
.text-overflow-elipsis {
|
.text-overflow-elipsis {
|
||||||
|
display: -webkit-box;
|
||||||
min-width: 0px;
|
min-width: 0px;
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
-webkit-line-clamp: 1;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.mediaitem-artwork {
|
.mediaitem-artwork {
|
||||||
border-radius: var(--mediaItemRadius);
|
border-radius: var(--mediaItemRadius);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue