diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index b4a3d3e69d..8ec6b731a2 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -992,39 +992,19 @@ input[type="range"]::-ms-fill-upper { padding-left: 5px; } -.installedPluginTitle { - max-width: 85px; - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; - display: inline-block; -} - @media (min-width: 750px) { - .installedPluginTitle { - max-width: 110px; - } - .itemVideo:not(.fullscreenVideo) { width: 320px; } } @media (min-width: 1200px) { - .installedPluginTitle { - max-width: 110px; - } - .itemVideo:not(.fullscreenVideo) { width: 320px; } } @media (min-width: 1440px) { - .installedPluginTitle { - max-width: 110px; - } - .itemVideo:not(.fullscreenVideo) { width: 400px; } diff --git a/dashboard-ui/scripts/plugincatalogpage.js b/dashboard-ui/scripts/plugincatalogpage.js index 47524f7152..2f33205838 100644 --- a/dashboard-ui/scripts/plugincatalogpage.js +++ b/dashboard-ui/scripts/plugincatalogpage.js @@ -73,7 +73,7 @@ })[0]; if (installedPlugin) { - html += "" + plugin.name + " (Installed)"; + html += plugin.name + " (Installed)"; } else { html += plugin.name; }