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

Merge pull request #5620 from vdubuisson/fix/tv-detailLogo

Allow to display detailLogo on TV with CSS customization
This commit is contained in:
Bill Thornton 2024-07-26 11:28:48 -04:00 committed by GitHub
commit 08bbcb0681
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 6 deletions

View file

@ -533,10 +533,9 @@ function reloadFromItem(instance, page, params, item, user) {
// Start rendering the artwork first
renderImage(page, item, apiClient);
// Save some screen real estate in TV mode
if (!layoutManager.tv) {
renderLogo(page, item, apiClient);
}
// Render the mobile header backdrop
if (layoutManager.mobile) {
renderHeaderBackdrop(page, item, apiClient);

View file

@ -921,9 +921,12 @@
position: relative;
}
.layout-mobile .detailLogo {
.layout-mobile,
.layout-tv {
.detailLogo {
display: none;
}
}
@media all and (max-width: 68.75em) {
.detailLogo {