diff --git a/dashboard-ui/cinemamodeconfiguration.html b/dashboard-ui/cinemamodeconfiguration.html index 988be10f1b..3efe1806be 100644 --- a/dashboard-ui/cinemamodeconfiguration.html +++ b/dashboard-ui/cinemamodeconfiguration.html @@ -4,7 +4,7 @@ ${TitlePlayback} -
+
diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index 82a16697a6..9f8a732873 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -1079,7 +1079,7 @@ progress { .accentButton { display: inline-block; - background: rgba(51, 136, 204, .7); + background: rgba(51, 136, 204, .8); border-radius: 1000px; padding: 4px 12px; color: #fff !important; @@ -1088,13 +1088,17 @@ progress { vertical-align: middle; } - .accentButton:hover { - opacity: .5; - } +.accentButton-g { + background: #52B54B; +} - .accentButton .fa:not(.notext) { - margin-right: 7px; - } +.accentButton:hover { + opacity: .5; +} + +.accentButton .fa:not(.notext) { + margin-right: 7px; +} h1 + .accentButton { margin: 18px 0 0 20px; diff --git a/dashboard-ui/library.html b/dashboard-ui/library.html index ef2ef0db9e..0ca862d857 100644 --- a/dashboard-ui/library.html +++ b/dashboard-ui/library.html @@ -4,7 +4,7 @@ ${TitleMediaLibrary} -
+
@@ -14,7 +14,6 @@ ${TabAdvanced}
-

${ReferToMediaLibraryWiki}

diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 960e1c6a8d..efae182e4e 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -1095,7 +1095,18 @@ var Dashboard = { parent = $('.ui-content', page)[0]; } - $(parent).prepend("

" + (document.title || " ") + "

"); + var helpUrl = page.attr('data-helpurl'); + + var html = '
'; + html += '

' + (document.title || ' ') + '

'; + + if (helpUrl) { + html += '' + Globalize.translate('ButtonHelp') + ''; + } + + html += '
'; + + $(parent).prepend(html); }, setPageTitle: function (title) {