diff --git a/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.css b/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.css
index 298abfd7a5..beb4c26298 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.css
+++ b/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.css
@@ -36,6 +36,9 @@ button.actionSheetMenuItem {
font-weight: inherit;
align-items: center;
flex-shrink: 0;
+ /* Some really bad margin hacks to fix content sizing when scrollbar is visible */
+ margin-left: 20px;
+ margin-right: -20px;
}
.actionSheetItemText {
@@ -65,6 +68,9 @@ button.actionSheetMenuItem {
display: flex;
flex-direction: column;
width: 100%;
+ /* Some really bad margin hacks to fix content sizing when scrollbar is visible */
+ padding-right: 20px;
+ margin-right: 20px;
}
.layout-tv .actionSheetScroller {
diff --git a/dashboard-ui/components/channelmapper/channelmapper.js b/dashboard-ui/components/channelmapper/channelmapper.js
index 9c7ae876d8..a0f4c6efa1 100644
--- a/dashboard-ui/components/channelmapper/channelmapper.js
+++ b/dashboard-ui/components/channelmapper/channelmapper.js
@@ -102,11 +102,11 @@ function (dialogHelper, loading, connectionManager, globalize, actionsheet) {
html += channel.Name;
html += '';
+ html += '
';
if (channel.ProviderChannelNumber || channel.ProviderChannelName) {
- html += '
';
html += getMappingSecondaryName(channel, providerName);
- html += '
';
}
+ html += '
';
html += '';
diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css
index b9242bd8ce..18b3039c5f 100644
--- a/dashboard-ui/css/site.css
+++ b/dashboard-ui/css/site.css
@@ -1,7 +1,7 @@
/* Links */
.ui-body-b a {
color: #52B54B /*{b-link-color}*/;
- font-weight: bold;
+ font-weight: 500;
}
.ui-body-b a:visited {
diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js
index b2c549cfcc..24850122e2 100644
--- a/dashboard-ui/scripts/itemdetailpage.js
+++ b/dashboard-ui/scripts/itemdetailpage.js
@@ -2222,7 +2222,6 @@
view.addEventListener('viewbeforeshow', function () {
var page = this;
-
reload(page, params);
Events.on(ApiClient, 'websocketmessage', onWebSocketMessage);
diff --git a/dashboard-ui/scripts/librarymenu.js b/dashboard-ui/scripts/librarymenu.js
index 81bde53b17..7d45467b4d 100644
--- a/dashboard-ui/scripts/librarymenu.js
+++ b/dashboard-ui/scripts/librarymenu.js
@@ -767,7 +767,7 @@
if (mainDrawerButton) {
if (!visible && browserInfo.mobile) {
- mainDrawerButton.classList.remove('hide');
+ mainDrawerButton.classList.add('hide');
} else {
mainDrawerButton.classList.remove('hide');
}
diff --git a/dashboard-ui/scripts/searchpage.js b/dashboard-ui/scripts/searchpage.js
index 5f161c0ddb..bab019e2f8 100644
--- a/dashboard-ui/scripts/searchpage.js
+++ b/dashboard-ui/scripts/searchpage.js
@@ -185,14 +185,11 @@
});
view.addEventListener('viewbeforeshow', function (e) {
- document.body.classList.add('hiddenViewMenuBar');
- document.body.classList.add('hiddenNowPlayingBar');
+ LibraryMenu.setMenuButtonVisible(false);
});
view.addEventListener('viewbeforehide', function (e) {
-
- document.body.classList.remove('hiddenViewMenuBar');
- document.body.classList.remove('hiddenNowPlayingBar');
+ LibraryMenu.setMenuButtonVisible(true);
});
};
diff --git a/dashboard-ui/search.html b/dashboard-ui/search.html
index 44a77deeee..2bbab79f1d 100644
--- a/dashboard-ui/search.html
+++ b/dashboard-ui/search.html
@@ -1,4 +1,4 @@
-