diff --git a/dashboard-ui/css/images/icons/stop.png b/dashboard-ui/css/images/icons/stop.png index cb2ac089c9..a6dee51dce 100644 Binary files a/dashboard-ui/css/images/icons/stop.png and b/dashboard-ui/css/images/icons/stop.png differ diff --git a/dashboard-ui/css/mediaplayer.css b/dashboard-ui/css/mediaplayer.css index a4b39bc32c..7c97509b16 100644 --- a/dashboard-ui/css/mediaplayer.css +++ b/dashboard-ui/css/mediaplayer.css @@ -77,7 +77,7 @@ z-index: 99998; height: auto; width: 270px; - bottom: 45px; + bottom: 46px; left: -290px; border: 1px solid #666; background: #000; diff --git a/dashboard-ui/scripts/moviegenres.js b/dashboard-ui/scripts/moviegenres.js index ea81b0afa9..8fb68a30f5 100644 --- a/dashboard-ui/scripts/moviegenres.js +++ b/dashboard-ui/scripts/moviegenres.js @@ -29,9 +29,13 @@ var checkSortOption = $('.radioSortBy:checked', page); $('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create'); - html += LibraryBrowser.getPosterDetailViewHtml({ + html = LibraryBrowser.getPosterViewHtml({ items: result.Items, - context: "movies" + shape: "backdrop", + preferThumb: true, + context: 'movies', + showItemCounts: true, + centerText: true }); html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount); diff --git a/dashboard-ui/scripts/tvgenres.js b/dashboard-ui/scripts/tvgenres.js index b9a174930f..275304b896 100644 --- a/dashboard-ui/scripts/tvgenres.js +++ b/dashboard-ui/scripts/tvgenres.js @@ -29,9 +29,16 @@ var checkSortOption = $('.radioSortBy:checked', page); $('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create'); - html += LibraryBrowser.getPosterDetailViewHtml({ + html += LibraryBrowser.getPosterViewHtml({ items: result.Items, - context: "tv" + useAverageAspectRatio: true, + shape: "backdrop", + showTitle: false, + overlayText: false, + context: 'tv', + preferThumb: true, + showItemCounts: true, + centerText: true }); html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);