diff --git a/dashboard-ui/css/dashboard.css b/dashboard-ui/css/dashboard.css index ca6044009a..2c4114fc62 100644 --- a/dashboard-ui/css/dashboard.css +++ b/dashboard-ui/css/dashboard.css @@ -27,6 +27,10 @@ paper-input + .fieldDescription { background-color: #fff; } +.ui-body-a .cardFooter .cardText + .cardText { + opacity: .8; +} + @media all and (min-width: 800px) { .type-interior > .ui-content, .type-interior > .ui-panel-content-wrap > .ui-content { diff --git a/dashboard-ui/scripts/pluginspage.js b/dashboard-ui/scripts/pluginspage.js index 25667cf60a..66eb8304e2 100644 --- a/dashboard-ui/scripts/pluginspage.js +++ b/dashboard-ui/scripts/pluginspage.js @@ -1,4 +1,4 @@ -define(['jQuery'], function ($) { +define(['jQuery', 'cardStyle'], function ($) { function deletePlugin(page, uniqueid, name) { @@ -43,7 +43,7 @@ configPageUrl : null; - html += "
"; + html += "
"; html += '
'; html += '
'; @@ -83,8 +83,8 @@ html += '
'; - html += '
'; - html += ''; + html += '
'; + html += ''; html += "
"; html += "
"; @@ -149,7 +149,7 @@ $('.installedPlugins', page).html(html); } else { - var elem = $('.installedPlugins', page).html(html); + var elem = $('.installedPlugins', page).addClass('itemsContainer').addClass('vertical-wrap').html(html); $('.noConfigPluginCard', elem).on('click', function () { showNoConfigurationMessage();