diff --git a/dashboard-ui/css/images/media/btn_queue.png b/dashboard-ui/css/images/media/btn_queue.png deleted file mode 100644 index ec32a0553a..0000000000 Binary files a/dashboard-ui/css/images/media/btn_queue.png and /dev/null differ diff --git a/dashboard-ui/css/images/media/queue.png b/dashboard-ui/css/images/media/queue.png index 11c4ccfe51..ec32a0553a 100644 Binary files a/dashboard-ui/css/images/media/queue.png and b/dashboard-ui/css/images/media/queue.png differ diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index b599e724a7..82a8fef6ca 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -100,7 +100,7 @@ .listPaging { text-align: center; - margin: .5em 0 .75em; + margin: .5em 0; } .tabletColumn, .desktopColumn { diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index a97ba7b273..a2323a563b 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -460,7 +460,6 @@ form, .readOnlyContent { text-shadow: none; } - .posterViewItemWithDualText .posterViewItemText { text-align: left; color: #fff; @@ -489,7 +488,7 @@ form, .readOnlyContent { @media all and (min-width: 1200px) { .posterViewItem { - font-size: 16px; + font-size: 15px; } .posterViewItem img { @@ -505,7 +504,7 @@ form, .readOnlyContent { } .posterViewItem { - font-size: 18px; + font-size: 17px; padding-bottom: 29px; } diff --git a/dashboard-ui/itemdetails.html b/dashboard-ui/itemdetails.html index 2c04774928..dead22fe6d 100644 --- a/dashboard-ui/itemdetails.html +++ b/dashboard-ui/itemdetails.html @@ -22,7 +22,7 @@
diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 410c94afda..21ac1f8671 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -504,7 +504,7 @@ } }, - getPagingHtml: function (query, totalRecordCount) { + getPagingHtml: function (query, totalRecordCount, isTop) { var html = ''; @@ -524,7 +524,7 @@ var recordsEnd = Math.min(query.StartIndex + query.Limit, totalRecordCount); - html += '
'; + html += isTop ? '
' : '
'; html += 'Results ' + (query.StartIndex + 1) + '-' + recordsEnd + ' of ' + totalRecordCount + ', page ' + dropdownHtml + ' of ' + pageCount; html += '
'; diff --git a/dashboard-ui/scripts/movies.js b/dashboard-ui/scripts/movies.js index c3dec5fe79..52e1d42c3a 100644 --- a/dashboard-ui/scripts/movies.js +++ b/dashboard-ui/scripts/movies.js @@ -126,7 +126,7 @@ var showPaging = result.TotalRecordCount > query.Limit; if (showPaging) { - html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount); + html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true); } if (view == "Tile") { diff --git a/dashboard-ui/scripts/tvshows.js b/dashboard-ui/scripts/tvshows.js index fb596ff90b..d49fafc82c 100644 --- a/dashboard-ui/scripts/tvshows.js +++ b/dashboard-ui/scripts/tvshows.js @@ -25,7 +25,7 @@ var showPaging = result.TotalRecordCount > query.Limit; if (showPaging) { - html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount); + html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true); } if (view == "Tile") { @@ -71,11 +71,13 @@ $('.radioSortBy', this).on('click', function () { query.SortBy = this.getAttribute('data-sortby'); + query.StartIndex = 0; reloadItems(page); }); $('.radioSortOrder', this).on('click', function () { query.SortOrder = this.getAttribute('data-sortorder'); + query.StartIndex = 0; reloadItems(page); }); @@ -91,7 +93,7 @@ } query.Filters = filters; - + query.StartIndex = 0; reloadItems(page); }); @@ -107,7 +109,7 @@ } query.SeriesStatus = filters; - + query.StartIndex = 0; reloadItems(page); }); @@ -123,7 +125,7 @@ } query.AirDays = filters; - + query.StartIndex = 0; reloadItems(page); });