1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-14 12:20:48 +02:00

fix: remaining time display width on IE8 and IE9 (#3983)

vjs-no-flex environments like IE8 and IE9 don't work properly with width: auto.
This commit is contained in:
Brandon Casey 2017-01-27 17:40:03 -05:00 committed by Gary Katsevman
parent 37a6811fb6
commit 866a3f37d8

View File

@ -18,6 +18,12 @@
display: none;
}
// IE 8 + IE 9 width: auto container fix
.vjs-no-flex .vjs-remaining-time.vjs-time-control.vjs-control {
width: 0px !important;
white-space: nowrap;
}
.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
display: none;