diff --git a/dashboard-ui/css/images/bg.png b/dashboard-ui/css/images/bg.png deleted file mode 100644 index d1e8358715..0000000000 Binary files a/dashboard-ui/css/images/bg.png and /dev/null differ diff --git a/dashboard-ui/css/images/bgflip.png b/dashboard-ui/css/images/bgflip.png deleted file mode 100644 index 2e73528f02..0000000000 Binary files a/dashboard-ui/css/images/bgflip.png and /dev/null differ diff --git a/dashboard-ui/css/images/editor.png b/dashboard-ui/css/images/editor.png deleted file mode 100644 index 6d994c8521..0000000000 Binary files a/dashboard-ui/css/images/editor.png and /dev/null differ diff --git a/dashboard-ui/css/images/home.png b/dashboard-ui/css/images/home.png deleted file mode 100644 index 216608e42c..0000000000 Binary files a/dashboard-ui/css/images/home.png and /dev/null differ diff --git a/dashboard-ui/css/images/leftarrowblack.png b/dashboard-ui/css/images/leftarrowblack.png deleted file mode 100644 index 91e4a2571e..0000000000 Binary files a/dashboard-ui/css/images/leftarrowblack.png and /dev/null differ diff --git a/dashboard-ui/css/images/leftarrowwhite.png b/dashboard-ui/css/images/leftarrowwhite.png deleted file mode 100644 index 9f3140b17f..0000000000 Binary files a/dashboard-ui/css/images/leftarrowwhite.png and /dev/null differ diff --git a/dashboard-ui/css/images/remote.png b/dashboard-ui/css/images/remote.png deleted file mode 100644 index 66f8a55271..0000000000 Binary files a/dashboard-ui/css/images/remote.png and /dev/null differ diff --git a/dashboard-ui/css/images/searchbutton.png b/dashboard-ui/css/images/searchbutton.png deleted file mode 100644 index 3d89d597ee..0000000000 Binary files a/dashboard-ui/css/images/searchbutton.png and /dev/null differ diff --git a/dashboard-ui/css/images/toolsblack.png b/dashboard-ui/css/images/toolsblack.png deleted file mode 100644 index 233e7ea17b..0000000000 Binary files a/dashboard-ui/css/images/toolsblack.png and /dev/null differ diff --git a/dashboard-ui/css/images/toolswhite.png b/dashboard-ui/css/images/toolswhite.png deleted file mode 100644 index c55c16766e..0000000000 Binary files a/dashboard-ui/css/images/toolswhite.png and /dev/null differ diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index e30eb51745..626e1273a3 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -797,7 +797,7 @@ a.itemTag:hover { top: 0; right: 0; text-align: center; - padding: 3px 5px; + padding: 5px 5px; border-bottom-left-radius: 10px; color: #fff; background: rgb(0, 143, 187); @@ -816,6 +816,22 @@ a.itemTag:hover { background: rgb(248, 58, 34); } +.unplayedIndicator { + display: block; + position: absolute; + top: 5px; + right: 5px; + text-align: center; + vertical-align: middle; + width: 28px; + height: 23px; + padding-top: 5px; + border-radius: 50%; + color: #fff; + background: rgb(82, 181, 75); + background: rgba(82, 181, 75, .8); +} + .itemProgress { vertical-align: top; font-size: 19px; @@ -887,21 +903,21 @@ a.itemTag:hover { .itemProgressBar::-moz-progress-bar { border-radius: 0; background-image: none; - background-color: #A92D2D; + background-color: #52B54B; } /* Chrome */ .itemProgressBar::-webkit-progress-value { border-radius: 0; background-image: none; - background-color: #A92D2D; + background-color: #52B54B; } /* Polyfill */ .itemProgressBar[aria-valuenow]:before { border-radius: 0; background-image: none; - background-color: #A92D2D; + background-color: #52B54B; } .userDataIcons .itemProgressBar { diff --git a/dashboard-ui/css/mediaplayer.css b/dashboard-ui/css/mediaplayer.css index 9ca14f2853..a4b39bc32c 100644 --- a/dashboard-ui/css/mediaplayer.css +++ b/dashboard-ui/css/mediaplayer.css @@ -1,6 +1,6 @@ /* Now playing bar */ .nowPlayingBar { - padding: 6px 0 15px 0; + padding: 6px 0 6px 0; border-top: 2px solid green; } diff --git a/dashboard-ui/css/posteritem.css b/dashboard-ui/css/posteritem.css index cbb9f6ee08..7c42347231 100644 --- a/dashboard-ui/css/posteritem.css +++ b/dashboard-ui/css/posteritem.css @@ -1,5 +1,5 @@ .posterItem { - margin: 6px; + margin: 8px; text-shadow: none; font-weight: normal!important; display: inline-block; @@ -64,8 +64,8 @@ white-space: nowrap; padding: 5px 4px 4px; text-shadow: none; - font-size: 15px; - font-weight: 300; + font-size: 13px; + font-weight: 400; } .posterItemTextOverlay { @@ -88,7 +88,7 @@ .posterItemTextOverlay .posterItemText { background-color: transparent; - padding: 1px 5px 4px !important; + padding-left: 5px; } .posterItemTextOverlay .posterItemText:first-child { @@ -151,7 +151,7 @@ .posterItemProgress .itemProgressBar { height: 10px; width: 100%; - opacity: .8; + opacity: .6; } @media all and (max-width: 400px) { diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 87416d1132..61ef798143 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -257,7 +257,7 @@ if (item.LocationType == "Offline" || item.LocationType == "Virtual") { html += LibraryBrowser.getOfflineIndicatorHtml(item); } else { - html += LibraryBrowser.getUnplayedIndicatorHtml(item); + html += LibraryBrowser.getPlayedIndicatorHtml(item); } html += ""; @@ -879,7 +879,7 @@ html += LibraryBrowser.getOfflineIndicatorHtml(item); } } else if (options.showUnplayedIndicator !== false) { - html += LibraryBrowser.getUnplayedIndicatorHtml(item); + html += LibraryBrowser.getPlayedIndicatorHtml(item); } html += ''; @@ -1087,16 +1087,10 @@ return '