mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #2138 from nyanmisaka/fix-music-overlap
Fix the overlap in iOS music view and the hidden nowPlayingBar
This commit is contained in:
commit
da2ff98335
3 changed files with 12 additions and 2 deletions
|
@ -660,7 +660,7 @@ import { appRouter } from '../appRouter';
|
|||
console.debug('nowplaying event: ' + event.type);
|
||||
const player = this;
|
||||
|
||||
if (!state.NowPlayingItem || layoutManager.tv || !state.IsFullscreen) {
|
||||
if (!state.NowPlayingItem || layoutManager.tv || state.IsFullscreen === false) {
|
||||
hideNowPlayingBar();
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-flex-shrink: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.navigationSection {
|
||||
|
@ -51,6 +53,12 @@
|
|||
display: flex;
|
||||
}
|
||||
|
||||
.infoContainer,
|
||||
.sliderContainer {
|
||||
-webkit-flex-shrink: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.nowPlayingInfoContainerMedia {
|
||||
text-align: left;
|
||||
margin-bottom: 1em;
|
||||
|
@ -75,6 +83,8 @@
|
|||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-flex-shrink: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.nowPlayingInfoControls,
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<div class="nowPlayingPageImageContainer"></div>
|
||||
<div class="nowPlayingInfoControls">
|
||||
|
||||
<div class="flex">
|
||||
<div class="infoContainer flex">
|
||||
|
||||
<div class="nowPlayingInfoContainerMedia">
|
||||
<h2 class="nowPlayingPageTitle"></h2>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue