From d48df625f32f352b79b00d72a04a89abd492f0df Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Sat, 3 Aug 2019 18:36:20 +0300 Subject: [PATCH 1/3] Fix secoundery text overlapping --- src/components/nowplayingbar/nowplayingbar.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/nowplayingbar/nowplayingbar.css b/src/components/nowplayingbar/nowplayingbar.css index 14b08a20a3..e50b17e959 100644 --- a/src/components/nowplayingbar/nowplayingbar.css +++ b/src/components/nowplayingbar/nowplayingbar.css @@ -6,6 +6,11 @@ overflow: hidden; } +.nowPlayingBarSecondaryText{ + width: 45%; + overflow: hidden; +} + /* Now playing bar */ .nowPlayingBar { /* Above everything, except for the video player and popup overlays */ From 8101dac3d4380f7ef1bc32ea2e1c64ea386a335f Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Thu, 8 Aug 2019 19:18:22 +0300 Subject: [PATCH 2/3] fix --- src/components/nowplayingbar/nowplayingbar.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/nowplayingbar/nowplayingbar.css b/src/components/nowplayingbar/nowplayingbar.css index e50b17e959..24df2eab03 100644 --- a/src/components/nowplayingbar/nowplayingbar.css +++ b/src/components/nowplayingbar/nowplayingbar.css @@ -2,14 +2,11 @@ display: flex; align-items: center; height: 100%; - flex-grow: 1; + width: 40%; overflow: hidden; } -.nowPlayingBarSecondaryText{ - width: 45%; - overflow: hidden; -} + /* Now playing bar */ .nowPlayingBar { @@ -98,6 +95,8 @@ /* Need this to make sure it's on top of nowPlayingBarPositionContainer so that buttons are fully clickable */ z-index: 2; display: flex; + justify-content: flex-end; + flex-grow: 1; align-items: center; flex-shrink: 0; } @@ -159,6 +158,9 @@ .nowPlayingBarRight .nowPlayingBarVolumeSliderContainer { display: none !important; } + .nowPlayingBarInfoContainer { + width: 70%; + } } @media all and (max-width: 24em) { From 1fa5a2158dd12845ce70174125893e22861c4ec0 Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Thu, 8 Aug 2019 19:34:30 +0300 Subject: [PATCH 3/3] remove newlines --- src/components/nowplayingbar/nowplayingbar.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/nowplayingbar/nowplayingbar.css b/src/components/nowplayingbar/nowplayingbar.css index 24df2eab03..06abae4ce7 100644 --- a/src/components/nowplayingbar/nowplayingbar.css +++ b/src/components/nowplayingbar/nowplayingbar.css @@ -6,8 +6,6 @@ overflow: hidden; } - - /* Now playing bar */ .nowPlayingBar { /* Above everything, except for the video player and popup overlays */