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

implement music identification

This commit is contained in:
Luke Pulverenti 2014-03-13 23:23:58 -04:00
parent eaf0e65608
commit c3e4b0bdd5
2 changed files with 9 additions and 1 deletions

View file

@ -655,6 +655,10 @@ a.itemTag:hover {
display: inline-block;
}
.viewMenuRemoteControlButton {
margin-left: .5em;
}
@media all and (min-width: 600px) {
.inlineDetailSection:not(.hide) {
display: inline-block;
@ -686,6 +690,10 @@ a.itemTag:hover {
.libraryViewNavInner {
text-align: left;
}
.selectedViewIndicator {
display: none;
}
}
@media all and (max-width: 750px) {

View file

@ -928,7 +928,7 @@
$('.identifyProviderIds', page).html(html).trigger('create');
var friendlyName = item.Type == "BoxSet" ? "Collection" : item.Type;
var friendlyName = item.Type == "BoxSet" ? "Collection" : item.Type == "MusicArtist" ? "Artist" : item.Type == "MusicAlbum" ? "Album" : item.Type;
$('.identificationHeader', page).html('Identify ' + friendlyName);