diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c22a16dd..948695001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ CHANGELOG * @misteroneill Un-deprecate the videojs.players property ([view](https://github.com/videojs/video.js/pull/3299)) * @nickygerritsen Add title to all clickable components ([view](https://github.com/videojs/video.js/pull/3296)) * @nickygerritsen Update Dutch language file ([view](https://github.com/videojs/video.js/pull/3297)) +* @hartman Add descriptions and audio button to adaptive classes ([view](https://github.com/videojs/video.js/pull/3312)) -------------------- diff --git a/src/css/components/_adaptive.scss b/src/css/components/_adaptive.scss index 3f0b80154..02d992334 100644 --- a/src/css/components/_adaptive.scss +++ b/src/css/components/_adaptive.scss @@ -8,7 +8,8 @@ .vjs-current-time, .vjs-time-divider, .vjs-duration, .vjs-remaining-time, .vjs-playback-rate, .vjs-progress-control, .vjs-mute-control, .vjs-volume-control, .vjs-volume-menu-button, - .vjs-chapters-button, .vjs-captions-button, .vjs-subtitles-button { display: none; } + .vjs-chapters-button, .vjs-descriptions-button, .vjs-captions-button, + .vjs-subtitles-button, .vjs-audio-button { display: none; } } // When the player is x-small, display nothing but: @@ -19,7 +20,8 @@ .vjs-current-time, .vjs-time-divider, .vjs-duration, .vjs-remaining-time, .vjs-playback-rate, .vjs-mute-control, .vjs-volume-control, .vjs-volume-menu-button, - .vjs-chapters-button, .vjs-captions-button, .vjs-subtitles-button { display: none; } + .vjs-chapters-button, .vjs-descriptions-button, .vjs-captions-button, + .vjs-subtitles-button, .vjs-audio-button { display: none; } } @@ -33,5 +35,6 @@ .vjs-current-time, .vjs-time-divider, .vjs-duration, .vjs-remaining-time, .vjs-playback-rate, .vjs-mute-control, .vjs-volume-control, - .vjs-chapters-button, .vjs-captions-button, .vjs-subtitles-button { display: none; } + .vjs-chapters-button, .vjs-descriptions-button, .vjs-captions-button, + .vjs-subtitles-button .vjs-audio-button { display: none; } }