1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-14 11:23:30 +02:00

Reverted .video-js inline-block style to fix Flash fullscreen [fixes #2205]

This commit is contained in:
heff 2015-05-29 15:31:57 -07:00
parent 7ea3566a8c
commit 2bda7aabcd

View File

@ -1,6 +1,8 @@
.video-js {
/* inline-block is as close as we get to the video el's display:inline */
display: inline-block;
/* display:inline-block would be closer to the video el's display:inline
* but it results in flash reloading when going into fullscreen [#2205]
*/
display: block;
/* Make video.js videos align top when next to video elements */
vertical-align: top;
box-sizing: border-box;