diff --git a/dashboard-ui/boxsets.html b/dashboard-ui/boxsets.html index caa59ec344..e8c587e6b5 100644 --- a/dashboard-ui/boxsets.html +++ b/dashboard-ui/boxsets.html @@ -25,7 +25,7 @@
-
+
diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index cabb871ce8..f33c57dfbf 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -306,6 +306,16 @@ } } +@media all and (min-width: 1000px) { + .tileItem { + width: 47.5%; + } + + .tileImage { + height: 110px; + } +} + @media all and (min-width: 1200px) { .tileImage { height: 100px; @@ -321,6 +331,24 @@ } @media all and (min-width: 1440px) { + .tileImage { + height: 110px; + } + + .tileItem { + width: 31.5%; + } +} + +@media all and (min-width: 1700px) { + + .tileImage { + height: 132px; + } + + .tileItem { + width: 32%; + } } @@ -328,18 +356,44 @@ .tileItem { width: 31.5%; } + + .tileImage { + height: 155px; + } } @media all and (min-width: 2000px) { .tileItem { width: 23.5%; } + + .tileImage { + height: 117px; + } +} + +@media all and (min-width: 2200px) { + .tileItem { + width: 24%; + } + + .tileImage { + height: 145px; + } } @media all and (min-width: 2540px) { .tileItem { width: 18.75%; } + + .tileImage { + height: 120px; + } +} + +.itemsContainer { + text-align: center; } .detailTable { @@ -347,6 +401,7 @@ border-spacing: 0; width: 70%; max-width: 1200px; + text-align: left; } .centeredDetailTable { @@ -359,7 +414,6 @@ .detailTable a { font-weight: normal!important; - text-decoration: none; } .detailTable td { diff --git a/dashboard-ui/gamegenres.html b/dashboard-ui/gamegenres.html index 06d899eb8f..ddcab8f7d9 100644 --- a/dashboard-ui/gamegenres.html +++ b/dashboard-ui/gamegenres.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/gamestudios.html b/dashboard-ui/gamestudios.html index f9431cc40f..9253ca0841 100644 --- a/dashboard-ui/gamestudios.html +++ b/dashboard-ui/gamestudios.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/gamesystems.html b/dashboard-ui/gamesystems.html index 87a5ae68ed..fa77c62088 100644 --- a/dashboard-ui/gamesystems.html +++ b/dashboard-ui/gamesystems.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/itembynamedetails.html b/dashboard-ui/itembynamedetails.html index f3da301391..5183d5c7bd 100644 --- a/dashboard-ui/itembynamedetails.html +++ b/dashboard-ui/itembynamedetails.html @@ -114,7 +114,7 @@
-
+
diff --git a/dashboard-ui/itemlist.html b/dashboard-ui/itemlist.html index ad139477a9..42c407b24f 100644 --- a/dashboard-ui/itemlist.html +++ b/dashboard-ui/itemlist.html @@ -22,7 +22,7 @@
-
+
diff --git a/dashboard-ui/moviegenres.html b/dashboard-ui/moviegenres.html index 247ec0cc96..729e904427 100644 --- a/dashboard-ui/moviegenres.html +++ b/dashboard-ui/moviegenres.html @@ -25,7 +25,7 @@
-
+
diff --git a/dashboard-ui/moviepeople.html b/dashboard-ui/moviepeople.html index 84c78eaecf..49686281fc 100644 --- a/dashboard-ui/moviepeople.html +++ b/dashboard-ui/moviepeople.html @@ -25,7 +25,7 @@
-
+
diff --git a/dashboard-ui/movies.html b/dashboard-ui/movies.html index 351485161b..e5426fdae0 100644 --- a/dashboard-ui/movies.html +++ b/dashboard-ui/movies.html @@ -31,7 +31,7 @@
-
+
diff --git a/dashboard-ui/moviestudios.html b/dashboard-ui/moviestudios.html index eee8822877..815bc2c6ee 100644 --- a/dashboard-ui/moviestudios.html +++ b/dashboard-ui/moviestudios.html @@ -25,7 +25,7 @@
-
+
diff --git a/dashboard-ui/movietrailers.html b/dashboard-ui/movietrailers.html index fb7db103ee..4e80a39d1b 100644 --- a/dashboard-ui/movietrailers.html +++ b/dashboard-ui/movietrailers.html @@ -31,7 +31,7 @@
-
+
diff --git a/dashboard-ui/musicalbums.html b/dashboard-ui/musicalbums.html index e65425782d..daa62d28ad 100644 --- a/dashboard-ui/musicalbums.html +++ b/dashboard-ui/musicalbums.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/musicartists.html b/dashboard-ui/musicartists.html index 701e49b902..49f93b0728 100644 --- a/dashboard-ui/musicartists.html +++ b/dashboard-ui/musicartists.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/musicgenres.html b/dashboard-ui/musicgenres.html index ea0660b479..9fbf9dbae6 100644 --- a/dashboard-ui/musicgenres.html +++ b/dashboard-ui/musicgenres.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 8fda7a995e..95ad636b3f 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -89,6 +89,25 @@ imgUrl = "css/images/items/list/game.png"; isDefault = true; } + else if (item.Type == "Studio" || item.Type == "Genre") { + + if (options.context == "games") { + + imgUrl = "css/images/items/list/game.png"; + } + else if (options.context == "music") { + + imgUrl = "css/images/items/list/audio.png"; + } + else if (options.context == "movies") { + + imgUrl = "css/images/items/list/chapter.png"; + } + else { + imgUrl = "css/images/items/list/collection.png"; + } + isDefault = true; + } else { imgUrl = "css/images/items/list/collection.png"; diff --git a/dashboard-ui/songs.html b/dashboard-ui/songs.html index a0ca210ffb..120e02f11e 100644 --- a/dashboard-ui/songs.html +++ b/dashboard-ui/songs.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/tvgenres.html b/dashboard-ui/tvgenres.html index 72babaa9e5..07d43ad158 100644 --- a/dashboard-ui/tvgenres.html +++ b/dashboard-ui/tvgenres.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/tvpeople.html b/dashboard-ui/tvpeople.html index c38478c480..fb8fa086ee 100644 --- a/dashboard-ui/tvpeople.html +++ b/dashboard-ui/tvpeople.html @@ -23,7 +23,7 @@
-
+
diff --git a/dashboard-ui/tvshows.html b/dashboard-ui/tvshows.html index a9a43d879d..61948e9c84 100644 --- a/dashboard-ui/tvshows.html +++ b/dashboard-ui/tvshows.html @@ -29,7 +29,7 @@
-
+
diff --git a/dashboard-ui/tvstudios.html b/dashboard-ui/tvstudios.html index 9c3c2ab2ad..50cd62735d 100644 --- a/dashboard-ui/tvstudios.html +++ b/dashboard-ui/tvstudios.html @@ -23,7 +23,7 @@
-
+