updated search hint icons
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
BIN
dashboard-ui/css/images/items/searchhintsv2/film.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
dashboard-ui/css/images/items/searchhintsv2/game.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
dashboard-ui/css/images/items/searchhintsv2/music.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
dashboard-ui/css/images/items/searchhintsv2/person.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
dashboard-ui/css/images/items/searchhintsv2/tv.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
|
@ -1,4 +1,15 @@
|
|||
.searchHints {
|
||||
.searchPanel {
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
@media all and (min-width: 60px) {
|
||||
|
||||
.searchPanel {
|
||||
min-width: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
.searchHints {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
|
|
|
@ -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 += '<img class="searchHintImage" src="' + imgUrl + '" />';
|
||||
|
|