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

fixed installed text alignment

This commit is contained in:
Luke Pulverenti 2013-08-26 17:00:44 -04:00
parent d7d1de09d5
commit 86382af228
2 changed files with 1 additions and 21 deletions

View file

@ -992,39 +992,19 @@ input[type="range"]::-ms-fill-upper {
padding-left: 5px; padding-left: 5px;
} }
.installedPluginTitle {
max-width: 85px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
}
@media (min-width: 750px) { @media (min-width: 750px) {
.installedPluginTitle {
max-width: 110px;
}
.itemVideo:not(.fullscreenVideo) { .itemVideo:not(.fullscreenVideo) {
width: 320px; width: 320px;
} }
} }
@media (min-width: 1200px) { @media (min-width: 1200px) {
.installedPluginTitle {
max-width: 110px;
}
.itemVideo:not(.fullscreenVideo) { .itemVideo:not(.fullscreenVideo) {
width: 320px; width: 320px;
} }
} }
@media (min-width: 1440px) { @media (min-width: 1440px) {
.installedPluginTitle {
max-width: 110px;
}
.itemVideo:not(.fullscreenVideo) { .itemVideo:not(.fullscreenVideo) {
width: 400px; width: 400px;
} }

View file

@ -73,7 +73,7 @@
})[0]; })[0];
if (installedPlugin) { if (installedPlugin) {
html += "<span class='installedPluginTitle'>" + plugin.name + "</span> (Installed)"; html += plugin.name + " (Installed)";
} else { } else {
html += plugin.name; html += plugin.name;
} }