diff --git a/dashboard-ui/css/dashboard.css b/dashboard-ui/css/dashboard.css index 0072699d9b..f84172a9aa 100644 --- a/dashboard-ui/css/dashboard.css +++ b/dashboard-ui/css/dashboard.css @@ -654,21 +654,6 @@ a[data-role='button'], .type-interior button:not([data-role='none']):not(.clearB outline: none !important; } - .scheduledTaskPaperIconItem #progressContainer { - height: 8px !important; - border-radius: 5px; - } - - .scheduledTaskPaperIconItem #primaryProgress { - border-bottom-left-radius: 5px; - border-top-left-radius: 5px; - } - - .scheduledTaskPaperIconItem paper-progress { - display: inline-block; - } - - @media all and (min-width: 420px) { .activeSession { diff --git a/dashboard-ui/scheduledtasks.html b/dashboard-ui/scheduledtasks.html index ef317e7a27..225da967f9 100644 --- a/dashboard-ui/scheduledtasks.html +++ b/dashboard-ui/scheduledtasks.html @@ -1,4 +1,18 @@ 
+ +
diff --git a/dashboard-ui/scripts/moviecollections.js b/dashboard-ui/scripts/moviecollections.js index 2dce7084c1..f37f0df23a 100644 --- a/dashboard-ui/scripts/moviecollections.js +++ b/dashboard-ui/scripts/moviecollections.js @@ -99,7 +99,8 @@ preferThumb: true, context: 'movies', lazy: true, - overlayPlayButton: true + overlayPlayButton: true, + showTitle: true }); } else if (viewStyle == "ThumbCard") { @@ -155,7 +156,8 @@ context: 'movies', centerText: true, lazy: true, - overlayPlayButton: true + overlayPlayButton: true, + showTitle: true }); } diff --git a/dashboard-ui/scripts/scheduledtaskspage.js b/dashboard-ui/scripts/scheduledtaskspage.js index c9ae8b1562..c38e07315a 100644 --- a/dashboard-ui/scripts/scheduledtaskspage.js +++ b/dashboard-ui/scripts/scheduledtaskspage.js @@ -1,4 +1,4 @@ -define(['jQuery', 'listViewStyle', 'paper-progress'], function ($) { +define(['jQuery', 'listViewStyle'], function ($) { function reloadList(page) { @@ -141,11 +141,14 @@ var progress = (task.CurrentProgressPercentage || 0).toFixed(1); - html += ''; - html += '' + progress + '%'; - html += ''; + html += '
'; + html += '
'; + html += '
'; + html += '
'; + html += '
'; html += "" + progress + "%"; + html += '
'; } else {