diff --git a/dashboard-ui/bower_components/emby-webcomponents/itemhelper.js b/dashboard-ui/bower_components/emby-webcomponents/itemhelper.js index c077e6298c..50dd42f815 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/itemhelper.js +++ b/dashboard-ui/bower_components/emby-webcomponents/itemhelper.js @@ -13,7 +13,7 @@ define(['apphost'], function (appHost) { item = item.ProgramInfo || item; } - var name = (item.Type === 'Program' && item.IsSeries ? item.EpisodeTitle : item.Name) || ''; + var name = ((item.Type === 'Program' || item.Type === 'Recording') && item.IsSeries ? item.EpisodeTitle : item.Name) || ''; if (item.Type === "TvChannel") { diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index 59bd1d8e94..f53604ef88 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -380,6 +380,16 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { display: flex; margin-bottom: 3.6em; } + + .shadedDetailSection, .detailPagePrimaryContainer { + background: rgba(0,0,0,.7); + padding: 1em; + box-shadow: 0 0 10px 1px black; + } + + .detailSection h1 { + opacity: .9; + } } @media all and (max-width: 1200px) { @@ -832,4 +842,4 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { .mediaInfoText-upper { text-transform: uppercase; -} \ No newline at end of file +} diff --git a/dashboard-ui/itemdetails.html b/dashboard-ui/itemdetails.html index efb3d1e588..d920009e58 100644 --- a/dashboard-ui/itemdetails.html +++ b/dashboard-ui/itemdetails.html @@ -1,5 +1,29 @@