tabview-youtube / Tabview-Youtube

Make comments and lists into tabs
MIT License
37 stars 4 forks source link

playlist tab barely visible #34

Closed ManabBala closed 7 months ago

ManabBala commented 7 months ago

The playlist section is not showing all videos of the playlist. It's just showing just a horizontal crack. if you manage to place your cursor on the crack and scroll you will notice the list is being scrolled. So playlist element is still present under the front view window. maybe some css issue.

my quick fix: apparently adding a height property (i did 100vh) to this element solved my issue.

<div id="container" class="style-scope ytd-playlist-panel-renderer">...</div>

Tampermonkey fix:

// temporary fix for Tabview extension
GM_addStyle(`
  ytd-playlist-panel-renderer { 
     height: 100vh
}
`);

image

cyfung1031 commented 7 months ago

Updated. Please check again.

Some are just temporary fixes. To be further reviewed.

ManabBala commented 7 months ago

fixed the issue