diff --git a/dashboard-ui/css/images/items/searchhints/film.png b/dashboard-ui/css/images/items/searchhints/film.png deleted file mode 100644 index 9c343a8fa..000000000 Binary files a/dashboard-ui/css/images/items/searchhints/film.png and /dev/null differ diff --git a/dashboard-ui/css/images/items/searchhints/game.png b/dashboard-ui/css/images/items/searchhints/game.png deleted file mode 100644 index 9fa39e569..000000000 Binary files a/dashboard-ui/css/images/items/searchhints/game.png and /dev/null differ diff --git a/dashboard-ui/css/images/items/searchhints/music.png b/dashboard-ui/css/images/items/searchhints/music.png deleted file mode 100644 index 2d666ab7d..000000000 Binary files a/dashboard-ui/css/images/items/searchhints/music.png and /dev/null differ diff --git a/dashboard-ui/css/images/items/searchhints/person.png b/dashboard-ui/css/images/items/searchhints/person.png deleted file mode 100644 index f5660b7a7..000000000 Binary files a/dashboard-ui/css/images/items/searchhints/person.png and /dev/null differ diff --git a/dashboard-ui/css/images/items/searchhints/tv.png b/dashboard-ui/css/images/items/searchhints/tv.png deleted file mode 100644 index 2e43d9836..000000000 Binary files a/dashboard-ui/css/images/items/searchhints/tv.png and /dev/null differ diff --git a/dashboard-ui/css/images/items/searchhintsv2/film.png b/dashboard-ui/css/images/items/searchhintsv2/film.png new file mode 100644 index 000000000..780e7f5ae Binary files /dev/null and b/dashboard-ui/css/images/items/searchhintsv2/film.png differ diff --git a/dashboard-ui/css/images/items/searchhintsv2/game.png b/dashboard-ui/css/images/items/searchhintsv2/game.png new file mode 100644 index 000000000..a9baaed5b Binary files /dev/null and b/dashboard-ui/css/images/items/searchhintsv2/game.png differ diff --git a/dashboard-ui/css/images/items/searchhintsv2/music.png b/dashboard-ui/css/images/items/searchhintsv2/music.png new file mode 100644 index 000000000..e855fc813 Binary files /dev/null and b/dashboard-ui/css/images/items/searchhintsv2/music.png differ diff --git a/dashboard-ui/css/images/items/searchhintsv2/person.png b/dashboard-ui/css/images/items/searchhintsv2/person.png new file mode 100644 index 000000000..7ed99b28f Binary files /dev/null and b/dashboard-ui/css/images/items/searchhintsv2/person.png differ diff --git a/dashboard-ui/css/images/items/searchhintsv2/tv.png b/dashboard-ui/css/images/items/searchhintsv2/tv.png new file mode 100644 index 000000000..b917c4707 Binary files /dev/null and b/dashboard-ui/css/images/items/searchhintsv2/tv.png differ diff --git a/dashboard-ui/css/search.css b/dashboard-ui/css/search.css index 0a8431a69..126193061 100644 --- a/dashboard-ui/css/search.css +++ b/dashboard-ui/css/search.css @@ -1,4 +1,15 @@ -.searchHints { +.searchPanel { + min-width: 250px; +} + +@media all and (min-width: 60px) { + + .searchPanel { + min-width: 300px; + } +} + +.searchHints { margin-top: 1em; } diff --git a/dashboard-ui/scripts/search.js b/dashboard-ui/scripts/search.js index 38bdcef40..b38417c59 100644 --- a/dashboard-ui/scripts/search.js +++ b/dashboard-ui/scripts/search.js @@ -97,27 +97,27 @@ } else if (hint.MediaType == "Game") { - imgUrl = "css/images/items/searchhints/game.png"; + imgUrl = "css/images/items/searchhintsv2/game.png"; } else if (hint.Type == "Episode" || hint.Type == "Season" || hint.Type == "Series") { - imgUrl = "css/images/items/searchhints/tv.png"; + imgUrl = "css/images/items/searchhintsv2/tv.png"; } else if (hint.Type == "Audio" || hint.Type == "MusicAlbum" || hint.Type == "MusicArtist") { - imgUrl = "css/images/items/searchhints/music.png"; + imgUrl = "css/images/items/searchhintsv2/music.png"; } else if (hint.Type == "Person") { - imgUrl = "css/images/items/searchhints/person.png"; + imgUrl = "css/images/items/searchhintsv2/person.png"; } else { - imgUrl = "css/images/items/searchhints/film.png"; + imgUrl = "css/images/items/searchhintsv2/film.png"; } html += '';