diff --git a/src/components/nowPlayingBar/nowPlayingBar.js b/src/components/nowPlayingBar/nowPlayingBar.js index be8895ca6..2613b5a85 100644 --- a/src/components/nowPlayingBar/nowPlayingBar.js +++ b/src/components/nowPlayingBar/nowPlayingBar.js @@ -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; } diff --git a/src/components/remotecontrol/remotecontrol.css b/src/components/remotecontrol/remotecontrol.css index d0d47f580..9356da0d0 100644 --- a/src/components/remotecontrol/remotecontrol.css +++ b/src/components/remotecontrol/remotecontrol.css @@ -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, diff --git a/src/controllers/playback/queue/index.html b/src/controllers/playback/queue/index.html index f38f9cd01..d946af432 100644 --- a/src/controllers/playback/queue/index.html +++ b/src/controllers/playback/queue/index.html @@ -6,7 +6,7 @@
-
+