diff --git a/dashboard-ui/css/images/userdata/played.png b/dashboard-ui/css/images/userdata/played.png new file mode 100644 index 0000000000..3f85dcee88 Binary files /dev/null and b/dashboard-ui/css/images/userdata/played.png differ diff --git a/dashboard-ui/css/images/userdata/unplayed.png b/dashboard-ui/css/images/userdata/unplayed.png new file mode 100644 index 0000000000..dc8faa5562 Binary files /dev/null and b/dashboard-ui/css/images/userdata/unplayed.png differ diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index d4dc39e2e7..b4c91ca03a 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -16,7 +16,7 @@ .libraryPage, .itemListContent { background: #262626!important; - /*background: #494949 url(images/bgflip.png) repeat-x!important;*/ + background: #494949 url(images/bgflip.png) repeat-x!important; background-attachment: fixed!important; } @@ -26,7 +26,7 @@ .listHeader { margin-top: 1.25em; - margin-bottom: 10px; + margin-bottom: 5px; font-weight: normal; } diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index d5b257839c..5fe9422102 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -467,11 +467,6 @@ form, .readOnlyContent { @media all and (min-width: 750px) { - .posterViewItem { - font-size: 16px; - padding-bottom: 29px; - } - .posterViewItemWithDualText { padding-bottom: 58px; } @@ -492,6 +487,11 @@ form, .readOnlyContent { @media all and (min-width: 1200px) { + .posterViewItem { + font-size: 16px; + padding-bottom: 29px; + } + .posterViewItem img { max-width: 250px; max-height: 200px; diff --git a/dashboard-ui/index.html b/dashboard-ui/index.html index a1c79ad459..eee9e10446 100644 --- a/dashboard-ui/index.html +++ b/dashboard-ui/index.html @@ -10,7 +10,7 @@

Views

-
+
Movies
diff --git a/dashboard-ui/itemlist.html b/dashboard-ui/itemlist.html index 77a2f012a7..3a208f6b37 100644 --- a/dashboard-ui/itemlist.html +++ b/dashboard-ui/itemlist.html @@ -17,90 +17,90 @@
-
+
+
- - -
- - - - - -
+
+ View + Sort + Filter + Index
+ +
+ + + + + +
diff --git a/dashboard-ui/scripts/indexpage.js b/dashboard-ui/scripts/indexpage.js index 57648592bd..39fe032279 100644 --- a/dashboard-ui/scripts/indexpage.js +++ b/dashboard-ui/scripts/indexpage.js @@ -5,7 +5,7 @@ var page = this; var userId = Dashboard.getCurrentUserId(); - + if (!userId) { return; } @@ -25,6 +25,27 @@ })); }); + + var views = [ + { name: "Movies", url: "moviesrecommended.html", img: "css/images/items/list/chapter.png", background: "#E12026" }, + { name: "TV Shows", url: "tvrecommended.html", img: "css/images/items/list/collection.png", background: "#FF870F" }, + { name: "Music", url: "musicrecommended.html", img: "css/images/items/list/audiowide.png", background: "#4BB3DD" } + ]; + + var html = ''; + + for (var i = 0, length = views.length; i < length; i++) { + + var view = views[i]; + + html += ''; + } + + $('#views', page).html(html); }); })(jQuery, document); \ No newline at end of file