From 86382af2286379d186dfce147d15ce2e35f9e7d6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 26 Aug 2013 17:00:44 -0400 Subject: [PATCH] fixed installed text alignment --- dashboard-ui/css/site.css | 20 -------------------- dashboard-ui/scripts/plugincatalogpage.js | 2 +- 2 files changed, 1 insertion(+), 21 deletions(-) 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; }