1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-02 11:34:50 +02:00

@hartman added default print styling. closes #3304

This commit is contained in:
Derk-Jan Hartman 2016-06-27 23:02:50 -04:00 committed by Gary Katsevman
parent a84623dc9c
commit 68c7ab4748
3 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,7 @@ CHANGELOG
* @MattiasBuelens Retain details from tech error ([view](https://github.com/videojs/video.js/pull/3313))
* @nickygerritsen Fix test for tooltips in IE8 ([view](https://github.com/videojs/video.js/pull/3327))
* @mboles added loadstart event to jsdoc ([view](https://github.com/videojs/video.js/pull/3370))
* @hartman added default print styling ([view](https://github.com/videojs/video.js/pull/3304))
--------------------

5
src/css/_print.scss Normal file
View File

@ -0,0 +1,5 @@
@media print {
.video-js > *:not(.vjs-tech):not(.vjs-poster) {
visibility:hidden;
}
}

View File

@ -39,3 +39,5 @@
@import "components/adaptive";
@import "components/captions-settings";
@import "components/modal-dialog";
@import "print";