Skip to content

Commit

Permalink
Fixes #2552 -Added a fixed height (not percentage) of miniplayer item…
Browse files Browse the repository at this point in the history
…s so that queue can be scrolled (#3453)
  • Loading branch information
daron-walters committed Jun 3, 2020
1 parent f4003b0 commit 2a2f8dd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/src/main/assets/web_extensions/webcompat_youtube/main.css
Expand Up @@ -60,3 +60,15 @@ div.ytp-fullscreen video, .fxr-vr-video {
height: 100% !important;
position: relative !important;
}


/*
Force a fixed height so that Youtube mini player can have a scrollbar
for items in queue.
*/
div.miniplayer #card #items
{
display: block;
height: 250px !important;
overflow-y:scroll;
}

0 comments on commit 2a2f8dd

Please sign in to comment.