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

Merge pull request #1531 from MrTimscampi/provider-name

Adjust text selection rules and add provider name to identification results
This commit is contained in:
dkanada 2020-07-07 10:49:45 +09:00 committed by GitHub
commit 7bba5f07ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 7 deletions

View file

@ -3,6 +3,11 @@ html {
margin: 0;
padding: 0;
height: 100%;
}
.layout-mobile,
.layout-tv {
-webkit-touch-callout: none;
user-select: none;
}
@ -35,12 +40,6 @@ html {
line-height: 1.35;
}
.layout-mobile,
.layout-tv {
-webkit-touch-callout: none;
user-select: none;
}
body {
overflow-x: hidden;
background-color: transparent !important;

View file

@ -221,13 +221,15 @@ define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize',
html += '</div>';
html += '</div>';
var numLines = 2;
var numLines = 3;
if (currentItemType === 'MusicAlbum') {
numLines++;
}
var lines = [result.Name];
lines.push(result.SearchProviderName);
if (result.AlbumArtist) {
lines.push(result.AlbumArtist.Name);
}