videojs_rails 4.10.2 → 4.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/videojs_rails/version.rb +1 -1
- data/vendor/assets/javascripts/video.js.erb +641 -258
- data/vendor/assets/stylesheets/video-js.css.erb +4 -4
- metadata +1 -1
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
2
|
Video.js Default Styles (http://videojs.com)
|
3
|
-
Version 4.
|
3
|
+
Version 4.11.0
|
4
4
|
Create your own skin at http://designer.videojs.com
|
5
5
|
*/
|
6
6
|
/* SKIN
|
7
7
|
================================================================================
|
8
8
|
The main class name for all skin-specific styles. To make your own skin,
|
9
|
-
replace all
|
9
|
+
replace all occurrences of 'vjs-default-skin' with a new name. Then add your new
|
10
10
|
skin name to your video tag instead of the default skin.
|
11
11
|
e.g. <video class="video-js my-skin-name">
|
12
12
|
*/
|
@@ -30,7 +30,7 @@ The control icons are from a custom font. Each icon corresponds to a character
|
|
30
30
|
*/
|
31
31
|
/* Slider - used for Volume bar and Seek bar */
|
32
32
|
.vjs-default-skin .vjs-slider {
|
33
|
-
/* Replace browser focus
|
33
|
+
/* Replace browser focus highlight with handle highlight */
|
34
34
|
outline: 0;
|
35
35
|
position: relative;
|
36
36
|
cursor: pointer;
|
@@ -794,7 +794,7 @@ control positioning and full window mode. **
|
|
794
794
|
easily calculable. */
|
795
795
|
|
796
796
|
font-size: 10px;
|
797
|
-
/* Allow poster to be
|
797
|
+
/* Allow poster to be vertically aligned. */
|
798
798
|
|
799
799
|
vertical-align: middle;
|
800
800
|
/* display: table-cell; */
|