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:
parent
eaf0e65608
commit
c3e4b0bdd5
2 changed files with 9 additions and 1 deletions
|
@ -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) {
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue