1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update icon

This commit is contained in:
grafixeyehero 2019-05-16 04:33:57 +03:00
parent 71d59feb76
commit 93be06bdd4
4 changed files with 30 additions and 11 deletions

View file

@ -323,7 +323,7 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
name: globalize.translate("TabLiveTV"),
href: "livetvstatus.html",
pageIds: ["liveTvStatusPage", "liveTvTunerPage"],
icon: "tv"
icon: "live_tv"
});
links.push({
name: globalize.translate("DVR"),
@ -538,9 +538,12 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
else if ("photos" === i.CollectionType) {
icon = "photo_library";
}
else if ("music" === i.CollectionType || "musicvideos" === i.CollectionType) {
else if ("music" === i.CollectionType) {
icon = "library_music";
}
else if ("musicvideos" === i.CollectionType) {
icon = "music_video";
}
else if ("books" === i.CollectionType) {
icon = "library_books";
}
@ -550,6 +553,9 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
else if ("movies" === i.CollectionType) {
icon = "video_library";
}
else if ("homevideos" === i.CollectionType) {
icon = "video_label";
}
else if ("channels" === i.CollectionType || "Channel" === i.Type) {
icon = "videocam";
}