mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
display ellipsis only on the title
This commit is contained in:
parent
94ae0c4d3d
commit
af39b369cb
@ -866,3 +866,17 @@ input[type="range"]::-ms-fill-upper {
|
||||
width: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.installedPluginTitle {
|
||||
max-width: 85px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.installedPluginTitle {
|
||||
max-width: 110px;
|
||||
}
|
||||
}
|
@ -62,7 +62,7 @@
|
||||
})[0];
|
||||
|
||||
if (installedPlugin) {
|
||||
html += plugin.name + " (Installed)";
|
||||
html += "<span class='installedPluginTitle'>"+ plugin.name + "</span> (Installed)";
|
||||
} else {
|
||||
html += plugin.name;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user