1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-02 06:32:07 +02:00

@misteroneill updated play control to use its state for icon. closes #2636

This commit is contained in:
Pat O'Neill 2015-09-24 16:37:10 -04:00 committed by Gary Katsevman
parent f5b80c8ea9
commit 1234faaf71
2 changed files with 2 additions and 1 deletions

View File

@ -143,6 +143,7 @@ CHANGELOG
* @misteroneill re-exposed videojs.TextTrack ([view](https://github.com/videojs/video.js/pull/2625))
* @heff removed a second copy of video.novtt.js from dist ([view](https://github.com/videojs/video.js/pull/2630))
* @heff fixed timeranges deprecation warnings in tests ([view](https://github.com/videojs/video.js/pull/2627))
* @misteroneill updated play control to use its state for icon ([view](https://github.com/videojs/video.js/pull/2636))
--------------------

View File

@ -5,6 +5,6 @@
.video-js .vjs-play-control {
@extend .vjs-icon-play;
}
.video-js.vjs-playing .vjs-play-control {
.video-js .vjs-play-control.vjs-playing {
@extend .vjs-icon-pause;
}