Skip to content

Commit 94fe62a

Browse files
authored
Fix video player displaying a vertical scrollbar when context menu outside player container (#6075)
Horizontal overflow is already being hidden to fix an issue returning from fullscreen. This commit makes it so vertical overflow is hidden too in case the context menu is made visible but reaches outside the video player container.
1 parent 128ef20 commit 94fe62a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/renderer/components/ft-shaka-video-player/ft-shaka-video-player.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
/*
1313
Fixes the seek bar thumbnails causing a horizontal scroll bar
1414
to appear after exiting full screen and full window.
15+
But also vertically in case context menu overflows.
1516
*/
16-
overflow-x: hidden;
17+
overflow: hidden;
1718
}
1819

1920
.player {

0 commit comments

Comments
 (0)