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

Possible detailLogo on tv

This commit is contained in:
Valentin Dubuisson 2024-05-28 20:48:04 +02:00 committed by Bill Thornton
parent ed71680cf1
commit 10f599a574
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 // Start rendering the artwork first
renderImage(page, item, apiClient); renderImage(page, item, apiClient);
// Save some screen real estate in TV mode
if (!layoutManager.tv) { renderLogo(page, item, apiClient);
renderLogo(page, item, apiClient);
}
// Render the mobile header backdrop // Render the mobile header backdrop
if (layoutManager.mobile) { if (layoutManager.mobile) {
renderHeaderBackdrop(page, item, apiClient); renderHeaderBackdrop(page, item, apiClient);

View file

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