1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-19 10:54:16 +02:00

@mmcc un-hid the current and remaining times by default. closes #2241

This commit is contained in:
Matthew McClure 2015-06-08 14:37:34 -07:00 committed by heff
parent 0be74e51ff
commit ee22d4ad5b
2 changed files with 1 additions and 2 deletions

View File

@ -49,6 +49,7 @@ CHANGELOG
* @heff moved all the CDN logic into videojs/cdn ([view](https://github.com/videojs/video.js/pull/2230)) * @heff moved all the CDN logic into videojs/cdn ([view](https://github.com/videojs/video.js/pull/2230))
* @mmcc fixed the progress handle transition jerkiness ([view](https://github.com/videojs/video.js/pull/2219)) * @mmcc fixed the progress handle transition jerkiness ([view](https://github.com/videojs/video.js/pull/2219))
* @dmlap added support for the seekable property ([view](https://github.com/videojs/video.js/pull/2208)) * @dmlap added support for the seekable property ([view](https://github.com/videojs/video.js/pull/2208))
* @mmcc un-hid the current and remaining times by default ([view](https://github.com/videojs/video.js/pull/2241))
-------------------- --------------------

View File

@ -5,7 +5,5 @@
} }
/* We need the extra specificity that referencing .vjs-no-flex provides. */ /* We need the extra specificity that referencing .vjs-no-flex provides. */
.video-js .vjs-current-time, .video-js.vjs-no-flex .vjs-current-time { display: none; }
.video-js .vjs-duration, .video-js.vjs-no-flex .vjs-duration { display: none; } .video-js .vjs-duration, .video-js.vjs-no-flex .vjs-duration { display: none; }
.video-js .vjs-remaining-time, .video-js.vjs-no-flex .vjs-remaining-time { display: none; }
.vjs-time-divider { display: none; line-height: 3em; } .vjs-time-divider { display: none; line-height: 3em; }