From 7f9a81e4d625bd8a08eadb8866123e9591e60176 Mon Sep 17 00:00:00 2001 From: Eric Reed Date: Wed, 19 Jun 2013 11:00:31 -0400 Subject: [PATCH 1/2] Improve install message for MBClassic plugins --- dashboard-ui/scripts/addpluginpage.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/addpluginpage.js b/dashboard-ui/scripts/addpluginpage.js index 55e9375f94..2feb2c6f66 100644 --- a/dashboard-ui/scripts/addpluginpage.js +++ b/dashboard-ui/scripts/addpluginpage.js @@ -81,7 +81,15 @@ } else { $("#btnInstallDiv", page).hide(); $("#pSelectVersion", page).hide(); - $("#nonServerMsg", page).html("This plugin must be installed from " + pkg.targetSystem).show(); + var msg = "This plugin must be installed from "; + switch (pkg.targetSystem) { + case "MBClassic": + msg += "the MBClassic Configurator"; + break; + default: + msg += pkg.targetSystem; + } + $("#nonServerMsg", page).html(msg).show(); } if (pkg.shortDescription) { From 6d9615c2a25cf867412e83d97bfd786819388f28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Miguel=20Alm=C3=A1nzar?= Date: Wed, 19 Jun 2013 17:25:53 -0400 Subject: [PATCH 2/2] issue #356 --- dashboard-ui/css/librarybrowser.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index af5e00eebe..467c63d41f 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -3,11 +3,20 @@ background: none!important; } +.ui-mobile [data-role=page], .ui-page { + padding-top: 35px !important; +} + .viewMenuBar { background: #444; background-image: linear-gradient(#444,#2d2d2d); font-size: 13px; font-weight: bold; + position: fixed; + right: 0; + left: 0; + z-index: 1030; + top: 0; } .viewMenuLink {