1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-02 11:34:50 +02:00

fix: Prevent ResizeManager from being clicked on safari, fix playerresize on firefox (#5522)

Move the ResizeManager behind the video element with negative z-index and remove visibility: hidden. This fixes issue where right click event wasn't triggered on the correct element and resize was not happening on firefox.
This commit is contained in:
Brandon Casey 2018-10-25 11:16:38 -04:00 committed by Gary Katsevman
parent 0847485720
commit 4827110bba

View File

@ -50,5 +50,5 @@
width: 100%;
height: 100%;
border: none;
visibility: hidden;
z-index: -1000;
}