cloudinary-video-player 1.6.2-edge.13
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.
- package/.eslintignore +4 -0
- package/.snyk +19 -0
- package/.travis.yml +8 -0
- package/CHANGELOG.md +329 -0
- package/LICENSE +21 -0
- package/README.md +87 -0
- package/dist/cld-video-player.css +2110 -0
- package/dist/cld-video-player.js +5249 -0
- package/dist/cld-video-player.light.css +1766 -0
- package/dist/cld-video-player.light.js +1399 -0
- package/dist/cld-video-player.light.min.css +1 -0
- package/dist/cld-video-player.light.min.js +2 -0
- package/dist/cld-video-player.light.min.js.LICENSE.txt +23 -0
- package/dist/cld-video-player.min.css +1 -0
- package/dist/cld-video-player.min.js +2 -0
- package/dist/cld-video-player.min.js.LICENSE.txt +26 -0
- package/dist/fonts/cloudinary_icon_for_black_bg.svg +69 -0
- package/dist/fonts/cloudinary_icon_for_white_bg.svg +69 -0
- package/docs/360.html +102 -0
- package/docs/_template.html +93 -0
- package/docs/adaptive-streaming.html +297 -0
- package/docs/analytics.html +140 -0
- package/docs/api.html +302 -0
- package/docs/audio.html +136 -0
- package/docs/autoplay-fallback.html +138 -0
- package/docs/autoplay-on-scroll.html +107 -0
- package/docs/codec-fallback.html +158 -0
- package/docs/colors.html +135 -0
- package/docs/components.html +284 -0
- package/docs/custom-cld-errors.html +134 -0
- package/docs/floating-player.html +98 -0
- package/docs/fluid.html +117 -0
- package/docs/force-hls-subtitles-ios.html +159 -0
- package/docs/index.html +83 -0
- package/docs/interaction-area.html +398 -0
- package/docs/live-customer.html +128 -0
- package/docs/multiple-players.html +125 -0
- package/docs/playlist-by-tag-cap.html +182 -0
- package/docs/playlist-by-tag.html +133 -0
- package/docs/playlist.html +133 -0
- package/docs/poster.html +155 -0
- package/docs/raw-url.html +104 -0
- package/docs/recommendations.html +155 -0
- package/docs/scripts.js +156 -0
- package/docs/seek-thumbs.html +90 -0
- package/docs/shoppable.html +335 -0
- package/docs/subtitles-and-captions.html +267 -0
- package/docs/transformations.html +171 -0
- package/docs/ui-config.html +108 -0
- package/docs/vast-vpaid.html +149 -0
- package/env.example.js +6 -0
- package/env.js +6 -0
- package/jest-puppeteer.config.js +14 -0
- package/jest.config.js +196 -0
- package/package.json +99 -0
- package/sandbox.config.json +3 -0
- package/setupJest.js +1 -0
- package/src/assets/fonts/VideoJS.svg +120 -0
- package/src/assets/fonts/VideoJS.ttf +0 -0
- package/src/assets/fonts/VideoJS.woff +0 -0
- package/src/assets/fonts/icons.json +120 -0
- package/src/assets/icons/cloudinary_icon_for_black_bg.svg +69 -0
- package/src/assets/icons/cloudinary_icon_for_white_bg.svg +69 -0
- package/src/assets/icons/cloudinary_logo_for_dark_bg.svg +188 -0
- package/src/assets/icons/cloudinary_logo_for_white_bg.svg +188 -0
- package/src/assets/icons/info-circle.svg +17 -0
- package/src/assets/styles/ads-label.scss +16 -0
- package/src/assets/styles/components/interaction-areas.scss +158 -0
- package/src/assets/styles/components/playlist.scss +213 -0
- package/src/assets/styles/components/themedButton.scss +48 -0
- package/src/assets/styles/components/thumbnail.scss +94 -0
- package/src/assets/styles/components/title-bar.scss +67 -0
- package/src/assets/styles/components/triangle-volume-bar.scss +52 -0
- package/src/assets/styles/icons.scss +257 -0
- package/src/assets/styles/main.scss +324 -0
- package/src/assets/styles/mixins/aspect-ratio.scss +16 -0
- package/src/assets/styles/mixins/disable-transition.scss +3 -0
- package/src/assets/styles/mixins/mixins.scss +5 -0
- package/src/assets/styles/mixins/skin.scss +64 -0
- package/src/assets/styles/variables.scss +2 -0
- package/src/assets/styles/videojs-ima.scss +252 -0
- package/src/components/component-utils.js +20 -0
- package/src/components/index.js +21 -0
- package/src/components/interaction-area/interaction-area.const.js +30 -0
- package/src/components/interaction-area/interaction-area.service.js +223 -0
- package/src/components/interaction-area/interaction-area.utils.js +236 -0
- package/src/components/jumpButtons/jump-10-minus.js +21 -0
- package/src/components/jumpButtons/jump-10-plus.js +20 -0
- package/src/components/logoButton/logo-button.const.js +3 -0
- package/src/components/logoButton/logo-button.js +30 -0
- package/src/components/logoButton/logo-button.scss +15 -0
- package/src/components/playlist/components/playlist-button.js +34 -0
- package/src/components/playlist/components/playlist-next-button.js +18 -0
- package/src/components/playlist/components/playlist-previous-button.js +18 -0
- package/src/components/playlist/components/playlist.js +5 -0
- package/src/components/playlist/components/playlist.scss +15 -0
- package/src/components/playlist/components/upcoming-video-overlay.js +149 -0
- package/src/components/playlist/components/upcoming-video-overlay.scss +86 -0
- package/src/components/playlist/layout/playlist-layout-custom.js +21 -0
- package/src/components/playlist/layout/playlist-layout-horizontal.js +16 -0
- package/src/components/playlist/layout/playlist-layout-vertical.js +19 -0
- package/src/components/playlist/layout/playlist-layout.js +110 -0
- package/src/components/playlist/panel/playlist-panel-item.js +86 -0
- package/src/components/playlist/panel/playlist-panel.js +92 -0
- package/src/components/playlist/playlist-widget.js +119 -0
- package/src/components/playlist/playlist.const.js +14 -0
- package/src/components/playlist/playlist.js +413 -0
- package/src/components/playlist/thumbnail/thumbnail.js +69 -0
- package/src/components/progress-control-events-blocker/progress-control-events-blocker.js +17 -0
- package/src/components/qualitySelector/quality-selector.scss +10 -0
- package/src/components/qualitySelector/qualitySelector.js +152 -0
- package/src/components/recommendations-overlay/index.js +3 -0
- package/src/components/recommendations-overlay/recommendations-overlay-content.js +57 -0
- package/src/components/recommendations-overlay/recommendations-overlay-hide-button.js +18 -0
- package/src/components/recommendations-overlay/recommendations-overlay-item.js +35 -0
- package/src/components/recommendations-overlay/recommendations-overlay-primary-item.js +81 -0
- package/src/components/recommendations-overlay/recommendations-overlay-secondary-item.js +48 -0
- package/src/components/recommendations-overlay/recommendations-overlay-secondary-items-container.js +35 -0
- package/src/components/recommendations-overlay/recommendations-overlay.js +94 -0
- package/src/components/recommendations-overlay/recommendations-overlay.scss +182 -0
- package/src/components/shoppable-bar/layout/bar-layout.js +111 -0
- package/src/components/shoppable-bar/layout/shoppable-panel-toggle.js +64 -0
- package/src/components/shoppable-bar/layout/shoppable-products-overlay.js +87 -0
- package/src/components/shoppable-bar/panel/shoppable-panel-item.js +105 -0
- package/src/components/shoppable-bar/panel/shoppable-panel.js +172 -0
- package/src/components/shoppable-bar/shoppable-post-widget.js +110 -0
- package/src/components/shoppable-bar/shoppable-widget.const.js +52 -0
- package/src/components/shoppable-bar/shoppable-widget.js +111 -0
- package/src/components/shoppable-bar/shoppable-widget.scss +359 -0
- package/src/components/themeButton/themedButton.const.js +3 -0
- package/src/components/themeButton/themedButton.js +25 -0
- package/src/components/title-bar/title-bar.js +79 -0
- package/src/config/defaults.js +25 -0
- package/src/extended-events.js +228 -0
- package/src/index.js +18 -0
- package/src/mixins/eventable.js +54 -0
- package/src/mixins/playlistable.js +106 -0
- package/src/plugins/analytics/index.js +245 -0
- package/src/plugins/autoplay-on-scroll/index.js +86 -0
- package/src/plugins/cloudinary/common.js +216 -0
- package/src/plugins/cloudinary/event-handler-registry.js +46 -0
- package/src/plugins/cloudinary/index.js +345 -0
- package/src/plugins/cloudinary/models/audio-source/audio-source.const.js +11 -0
- package/src/plugins/cloudinary/models/audio-source/audio-source.js +82 -0
- package/src/plugins/cloudinary/models/base-source.js +107 -0
- package/src/plugins/cloudinary/models/image-source.js +26 -0
- package/src/plugins/cloudinary/models/video-source/video-source.const.js +32 -0
- package/src/plugins/cloudinary/models/video-source/video-source.js +239 -0
- package/src/plugins/cloudinary/models/video-source/video-source.utils.js +57 -0
- package/src/plugins/colors/index.js +303 -0
- package/src/plugins/context-menu/components/context-menu-item.js +12 -0
- package/src/plugins/context-menu/components/context-menu.js +63 -0
- package/src/plugins/context-menu/context-menu.scss +30 -0
- package/src/plugins/context-menu/contextMenuContent.js +53 -0
- package/src/plugins/context-menu/index.js +134 -0
- package/src/plugins/dash/index.js +26 -0
- package/src/plugins/dash/setup-audio-tracks.js +112 -0
- package/src/plugins/dash/setup-text-tracks.js +195 -0
- package/src/plugins/dash/videojs-dash.js +372 -0
- package/src/plugins/floating-player/floating-player.scss +74 -0
- package/src/plugins/floating-player/index.js +129 -0
- package/src/plugins/ima/index.js +1775 -0
- package/src/plugins/index.js +31 -0
- package/src/plugins/interactive-plugin/index.js +10 -0
- package/src/plugins/videojs-http-source-selector/components/SourceMenuButton.js +98 -0
- package/src/plugins/videojs-http-source-selector/components/SourceMenuItem.js +52 -0
- package/src/plugins/videojs-http-source-selector/plugin.js +82 -0
- package/src/plugins/videojs-http-source-selector/plugin.scss +9 -0
- package/src/plugins/vtt-thumbnails/index.js +526 -0
- package/src/plugins/vtt-thumbnails/vtt-thumbnails.scss +29 -0
- package/src/utils/api.js +32 -0
- package/src/utils/apply-with-props.js +32 -0
- package/src/utils/array.js +22 -0
- package/src/utils/assign.js +27 -0
- package/src/utils/attributes-normalizer.js +72 -0
- package/src/utils/cloudinary.js +165 -0
- package/src/utils/css-prefix.js +43 -0
- package/src/utils/dom.js +74 -0
- package/src/utils/find.js +28 -0
- package/src/utils/fontFace.js +25 -0
- package/src/utils/groupBy.js +12 -0
- package/src/utils/index.js +29 -0
- package/src/utils/matches.js +11 -0
- package/src/utils/mixin.js +5 -0
- package/src/utils/object.js +26 -0
- package/src/utils/playButton.js +9 -0
- package/src/utils/positioning.js +78 -0
- package/src/utils/querystring.js +12 -0
- package/src/utils/slicing.js +21 -0
- package/src/utils/string.js +15 -0
- package/src/utils/throttle.js +30 -0
- package/src/utils/time.js +77 -0
- package/src/utils/type-inference.js +35 -0
- package/src/validators/validators-functions.js +48 -0
- package/src/validators/validators-types.js +78 -0
- package/src/validators/validators.js +110 -0
- package/src/video-player.const.js +68 -0
- package/src/video-player.js +761 -0
- package/src/video-player.utils.js +123 -0
- package/test/adaptive-streaming.test.js +38 -0
- package/test/ads.test.js +35 -0
- package/test/analytics.test.js +111 -0
- package/test/api.test.js +111 -0
- package/test/autoplay.scroll.test.js +23 -0
- package/test/basic-ui.test.js +59 -0
- package/test/colors.test.js +58 -0
- package/test/components.test.js +21 -0
- package/test/custom-error.test.js +24 -0
- package/test/fluid.test.js +36 -0
- package/test/isValidConfig.test.js +224 -0
- package/test/mocks/cloudinary-core-mock.js +0 -0
- package/test/mocks/styleMock.js +1 -0
- package/test/multiplayer.test.js +25 -0
- package/test/playlist.test.js +60 -0
- package/test/puppeteer/vp-env.js +19 -0
- package/test/recommendations.test.js +38 -0
- package/test/title-bar.test.js +28 -0
- package/test/ui-conf.test.js +49 -0
- package/test/unit/cloudinaryConfig.test.js +22 -0
- package/test/unit/cloudinaryUtils.test.js +53 -0
- package/test/unit/utils.test.js +27 -0
- package/test/unit/videoSource.test.js +454 -0
- package/tsconfig.json +15 -0
- package/types/video-player-tests.js +12 -0
- package/types/video-player-tests.ts +31 -0
- package/types/video-player.d.ts +570 -0
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: VideoJS;
|
|
3
|
+
src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
|
|
4
|
+
font-weight: normal;
|
|
5
|
+
font-style: normal; }
|
|
6
|
+
|
|
7
|
+
.vjs-icon-play {
|
|
8
|
+
font-family: VideoJS;
|
|
9
|
+
font-weight: normal;
|
|
10
|
+
font-style: normal; }
|
|
11
|
+
.vjs-icon-play:before {
|
|
12
|
+
content: "\f101"; }
|
|
13
|
+
|
|
14
|
+
.vjs-icon-play-circle {
|
|
15
|
+
font-family: VideoJS;
|
|
16
|
+
font-weight: normal;
|
|
17
|
+
font-style: normal; }
|
|
18
|
+
.vjs-icon-play-circle:before {
|
|
19
|
+
content: "\f102"; }
|
|
20
|
+
|
|
21
|
+
.vjs-icon-pause {
|
|
22
|
+
font-family: VideoJS;
|
|
23
|
+
font-weight: normal;
|
|
24
|
+
font-style: normal; }
|
|
25
|
+
.vjs-icon-pause:before {
|
|
26
|
+
content: "\f103"; }
|
|
27
|
+
|
|
28
|
+
.vjs-icon-volume-mute {
|
|
29
|
+
font-family: VideoJS;
|
|
30
|
+
font-weight: normal;
|
|
31
|
+
font-style: normal; }
|
|
32
|
+
.vjs-icon-volume-mute:before {
|
|
33
|
+
content: "\f104"; }
|
|
34
|
+
|
|
35
|
+
.vjs-icon-volume-low {
|
|
36
|
+
font-family: VideoJS;
|
|
37
|
+
font-weight: normal;
|
|
38
|
+
font-style: normal; }
|
|
39
|
+
.vjs-icon-volume-low:before {
|
|
40
|
+
content: "\f105"; }
|
|
41
|
+
|
|
42
|
+
.vjs-icon-volume-mid {
|
|
43
|
+
font-family: VideoJS;
|
|
44
|
+
font-weight: normal;
|
|
45
|
+
font-style: normal; }
|
|
46
|
+
.vjs-icon-volume-mid:before {
|
|
47
|
+
content: "\f106"; }
|
|
48
|
+
|
|
49
|
+
.vjs-icon-volume-high {
|
|
50
|
+
font-family: VideoJS;
|
|
51
|
+
font-weight: normal;
|
|
52
|
+
font-style: normal; }
|
|
53
|
+
.vjs-icon-volume-high:before {
|
|
54
|
+
content: "\f107"; }
|
|
55
|
+
|
|
56
|
+
.vjs-icon-fullscreen-enter {
|
|
57
|
+
font-family: VideoJS;
|
|
58
|
+
font-weight: normal;
|
|
59
|
+
font-style: normal; }
|
|
60
|
+
.vjs-icon-fullscreen-enter:before {
|
|
61
|
+
content: "\f108"; }
|
|
62
|
+
|
|
63
|
+
.vjs-icon-fullscreen-exit {
|
|
64
|
+
font-family: VideoJS;
|
|
65
|
+
font-weight: normal;
|
|
66
|
+
font-style: normal; }
|
|
67
|
+
.vjs-icon-fullscreen-exit:before {
|
|
68
|
+
content: "\f109"; }
|
|
69
|
+
|
|
70
|
+
.vjs-icon-square {
|
|
71
|
+
font-family: VideoJS;
|
|
72
|
+
font-weight: normal;
|
|
73
|
+
font-style: normal; }
|
|
74
|
+
.vjs-icon-square:before {
|
|
75
|
+
content: "\f10a"; }
|
|
76
|
+
|
|
77
|
+
.vjs-icon-spinner {
|
|
78
|
+
font-family: VideoJS;
|
|
79
|
+
font-weight: normal;
|
|
80
|
+
font-style: normal; }
|
|
81
|
+
.vjs-icon-spinner:before {
|
|
82
|
+
content: "\f10b"; }
|
|
83
|
+
|
|
84
|
+
.vjs-icon-subtitles {
|
|
85
|
+
font-family: VideoJS;
|
|
86
|
+
font-weight: normal;
|
|
87
|
+
font-style: normal; }
|
|
88
|
+
.vjs-icon-subtitles:before {
|
|
89
|
+
content: "\f10c"; }
|
|
90
|
+
|
|
91
|
+
.vjs-icon-captions {
|
|
92
|
+
font-family: VideoJS;
|
|
93
|
+
font-weight: normal;
|
|
94
|
+
font-style: normal; }
|
|
95
|
+
.vjs-icon-captions:before {
|
|
96
|
+
content: "\f10d"; }
|
|
97
|
+
|
|
98
|
+
.vjs-icon-chapters {
|
|
99
|
+
font-family: VideoJS;
|
|
100
|
+
font-weight: normal;
|
|
101
|
+
font-style: normal; }
|
|
102
|
+
.vjs-icon-chapters:before {
|
|
103
|
+
content: "\f10e"; }
|
|
104
|
+
|
|
105
|
+
.vjs-icon-share {
|
|
106
|
+
font-family: VideoJS;
|
|
107
|
+
font-weight: normal;
|
|
108
|
+
font-style: normal; }
|
|
109
|
+
.vjs-icon-share:before {
|
|
110
|
+
content: "\f10f"; }
|
|
111
|
+
|
|
112
|
+
.vjs-icon-cog {
|
|
113
|
+
font-family: VideoJS;
|
|
114
|
+
font-weight: normal;
|
|
115
|
+
font-style: normal; }
|
|
116
|
+
.vjs-icon-cog:before {
|
|
117
|
+
content: "\f110"; }
|
|
118
|
+
|
|
119
|
+
.vjs-icon-circle {
|
|
120
|
+
font-family: VideoJS;
|
|
121
|
+
font-weight: normal;
|
|
122
|
+
font-style: normal; }
|
|
123
|
+
.vjs-icon-circle:before {
|
|
124
|
+
content: "\f111"; }
|
|
125
|
+
|
|
126
|
+
.vjs-icon-circle-outline {
|
|
127
|
+
font-family: VideoJS;
|
|
128
|
+
font-weight: normal;
|
|
129
|
+
font-style: normal; }
|
|
130
|
+
.vjs-icon-circle-outline:before {
|
|
131
|
+
content: "\f112"; }
|
|
132
|
+
|
|
133
|
+
.vjs-icon-circle-inner-circle {
|
|
134
|
+
font-family: VideoJS;
|
|
135
|
+
font-weight: normal;
|
|
136
|
+
font-style: normal; }
|
|
137
|
+
.vjs-icon-circle-inner-circle:before {
|
|
138
|
+
content: "\f113"; }
|
|
139
|
+
|
|
140
|
+
.vjs-icon-hd {
|
|
141
|
+
font-family: VideoJS;
|
|
142
|
+
font-weight: normal;
|
|
143
|
+
font-style: normal; }
|
|
144
|
+
.vjs-icon-hd:before {
|
|
145
|
+
content: "\f114"; }
|
|
146
|
+
|
|
147
|
+
.vjs-icon-cancel {
|
|
148
|
+
font-family: VideoJS;
|
|
149
|
+
font-weight: normal;
|
|
150
|
+
font-style: normal; }
|
|
151
|
+
.vjs-icon-cancel:before {
|
|
152
|
+
content: "\f115"; }
|
|
153
|
+
|
|
154
|
+
.vjs-icon-replay {
|
|
155
|
+
font-family: VideoJS;
|
|
156
|
+
font-weight: normal;
|
|
157
|
+
font-style: normal; }
|
|
158
|
+
.vjs-icon-replay:before {
|
|
159
|
+
content: "\f116"; }
|
|
160
|
+
|
|
161
|
+
.vjs-icon-play-previous {
|
|
162
|
+
font-family: VideoJS;
|
|
163
|
+
font-weight: normal;
|
|
164
|
+
font-style: normal; }
|
|
165
|
+
.vjs-icon-play-previous:before {
|
|
166
|
+
content: "\f117"; }
|
|
167
|
+
|
|
168
|
+
.vjs-icon-play-next {
|
|
169
|
+
font-family: VideoJS;
|
|
170
|
+
font-weight: normal;
|
|
171
|
+
font-style: normal; }
|
|
172
|
+
.vjs-icon-play-next:before {
|
|
173
|
+
content: "\f118"; }
|
|
174
|
+
|
|
175
|
+
.vjs-icon-close {
|
|
176
|
+
font-family: VideoJS;
|
|
177
|
+
font-weight: normal;
|
|
178
|
+
font-style: normal; }
|
|
179
|
+
.vjs-icon-close:before {
|
|
180
|
+
content: "\f119"; }
|
|
181
|
+
|
|
182
|
+
.vjs-icon-skip-10-min {
|
|
183
|
+
font-family: VideoJS;
|
|
184
|
+
font-weight: normal;
|
|
185
|
+
font-style: normal; }
|
|
186
|
+
.vjs-icon-skip-10-min:before {
|
|
187
|
+
content: "\f11a"; }
|
|
188
|
+
|
|
189
|
+
.vjs-icon-skip-10-plus {
|
|
190
|
+
font-family: VideoJS;
|
|
191
|
+
font-weight: normal;
|
|
192
|
+
font-style: normal; }
|
|
193
|
+
.vjs-icon-skip-10-plus:before {
|
|
194
|
+
content: "\f11b"; }
|
|
195
|
+
|
|
196
|
+
.vjs-icon-facebook {
|
|
197
|
+
font-family: VideoJS;
|
|
198
|
+
font-weight: normal;
|
|
199
|
+
font-style: normal; }
|
|
200
|
+
.vjs-icon-facebook:before {
|
|
201
|
+
content: "\f11c"; }
|
|
202
|
+
|
|
203
|
+
.vjs-icon-gplus {
|
|
204
|
+
font-family: VideoJS;
|
|
205
|
+
font-weight: normal;
|
|
206
|
+
font-style: normal; }
|
|
207
|
+
.vjs-icon-gplus:before {
|
|
208
|
+
content: "\f11d"; }
|
|
209
|
+
|
|
210
|
+
.vjs-icon-linkedin {
|
|
211
|
+
font-family: VideoJS;
|
|
212
|
+
font-weight: normal;
|
|
213
|
+
font-style: normal; }
|
|
214
|
+
.vjs-icon-linkedin:before {
|
|
215
|
+
content: "\f11e"; }
|
|
216
|
+
|
|
217
|
+
.vjs-icon-twitter {
|
|
218
|
+
font-family: VideoJS;
|
|
219
|
+
font-weight: normal;
|
|
220
|
+
font-style: normal; }
|
|
221
|
+
.vjs-icon-twitter:before {
|
|
222
|
+
content: "\f11f"; }
|
|
223
|
+
|
|
224
|
+
.vjs-icon-tumblr {
|
|
225
|
+
font-family: VideoJS;
|
|
226
|
+
font-weight: normal;
|
|
227
|
+
font-style: normal; }
|
|
228
|
+
.vjs-icon-tumblr:before {
|
|
229
|
+
content: "\f120"; }
|
|
230
|
+
|
|
231
|
+
.vjs-icon-pinterest {
|
|
232
|
+
font-family: VideoJS;
|
|
233
|
+
font-weight: normal;
|
|
234
|
+
font-style: normal; }
|
|
235
|
+
.vjs-icon-pinterest:before {
|
|
236
|
+
content: "\f121"; }
|
|
237
|
+
|
|
238
|
+
.vjs-icon-audio-description {
|
|
239
|
+
font-family: VideoJS;
|
|
240
|
+
font-weight: normal;
|
|
241
|
+
font-style: normal; }
|
|
242
|
+
.vjs-icon-audio-description:before {
|
|
243
|
+
content: "\f122"; }
|
|
244
|
+
|
|
245
|
+
.vjs-icon-audio {
|
|
246
|
+
font-family: VideoJS;
|
|
247
|
+
font-weight: normal;
|
|
248
|
+
font-style: normal; }
|
|
249
|
+
.vjs-icon-audio:before {
|
|
250
|
+
content: "\f123"; }
|
|
251
|
+
|
|
252
|
+
.vjs-icon-cart {
|
|
253
|
+
font-family: VideoJS;
|
|
254
|
+
font-weight: normal;
|
|
255
|
+
font-style: normal; }
|
|
256
|
+
.vjs-icon-cart:before {
|
|
257
|
+
content: "\f124"; }
|
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
// Dependencies
|
|
2
|
+
$icon-font-path: '../fonts' !default;
|
|
3
|
+
|
|
4
|
+
// Video.js overrides
|
|
5
|
+
@import 'variables';
|
|
6
|
+
|
|
7
|
+
// Import Video.js style
|
|
8
|
+
@import '~video.root.js/dist/video-js.min.css';
|
|
9
|
+
@import 'mixins/skin';
|
|
10
|
+
@import 'icons';
|
|
11
|
+
@import 'ads-label';
|
|
12
|
+
@import 'videojs-ima';
|
|
13
|
+
@import 'components/interaction-areas.scss';
|
|
14
|
+
@import 'components/themedButton';
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
// control bar control size
|
|
18
|
+
.video-js .vjs-control:before {
|
|
19
|
+
font-size: 2.0em;
|
|
20
|
+
line-height: 1.5em;
|
|
21
|
+
}
|
|
22
|
+
.video-js .vjs-control {
|
|
23
|
+
width: 3em;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
.video-js {
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.video-js .vjs-control,
|
|
32
|
+
.vjs-icon-close,
|
|
33
|
+
.vjs-volume-bar{
|
|
34
|
+
z-index: 1;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// focus and hover states
|
|
38
|
+
.video-js .vjs-control,
|
|
39
|
+
.vjs-big-play-button,
|
|
40
|
+
.vjs-icon-close,
|
|
41
|
+
.vjs-volume-bar {
|
|
42
|
+
|
|
43
|
+
&:focus {
|
|
44
|
+
outline: none;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&:hover {
|
|
48
|
+
opacity: 0.95;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.vjs-cloudinary-button:focus {
|
|
53
|
+
opacity: 0.8;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.vjs-big-play-button:focus {
|
|
57
|
+
.cld-video-player.cld-video-player-skin-dark & {
|
|
58
|
+
background-color: rgba(40, 40, 40, 0.8);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.cld-video-player.cld-video-player-skin-light & {
|
|
62
|
+
background-color: rgba(223, 234, 252, 0.8);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// light skin focus glow effect
|
|
67
|
+
.cld-video-player-skin-light {
|
|
68
|
+
.vjs-control:focus {
|
|
69
|
+
text-shadow: 0 0 1em #0E2F5A;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.cld-video-player {
|
|
74
|
+
font-family: $text-font-family;
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
&:focus {
|
|
78
|
+
outline: none;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&.cld-fluid {
|
|
82
|
+
width: 100%;
|
|
83
|
+
max-width: 100%;
|
|
84
|
+
|
|
85
|
+
.vjs-poster {
|
|
86
|
+
// Work-around for poster having slightly wrong proportions in fluid players.
|
|
87
|
+
background: #000;
|
|
88
|
+
background-size: cover;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// The base font size controls the size of everything, not just text.
|
|
93
|
+
// All dimensions use em-based sizes so that the scale along with the font size.
|
|
94
|
+
// Try increasing it to 15px and see what happens.
|
|
95
|
+
font-size: 12px;
|
|
96
|
+
font-weight: 300;
|
|
97
|
+
|
|
98
|
+
.vjs-time-control {
|
|
99
|
+
padding-left: 0;
|
|
100
|
+
padding-right: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.vjs-time-divider {
|
|
104
|
+
min-width: 1em;
|
|
105
|
+
display: block;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.vjs-current-time {
|
|
109
|
+
display: block;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.vjs-remaining-time {
|
|
113
|
+
display: none;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.vjs-duration {
|
|
117
|
+
display: block;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.vjs-big-play-button {
|
|
121
|
+
|
|
122
|
+
// The font size is what makes the big play button...big.
|
|
123
|
+
// All width/height values use ems, which are a multiple of the font size.
|
|
124
|
+
// If the .video-js font-size is 10px, then 3em equals 30px.*/
|
|
125
|
+
font-size: 5em;
|
|
126
|
+
width: 1.5em;
|
|
127
|
+
height: auto;
|
|
128
|
+
border: 0;
|
|
129
|
+
border-radius: 50%;
|
|
130
|
+
|
|
131
|
+
left: 50%;
|
|
132
|
+
top: 50%;
|
|
133
|
+
transform: translateX(-50%) translateY(-50%);
|
|
134
|
+
|
|
135
|
+
&:before {
|
|
136
|
+
content: '';
|
|
137
|
+
position: relative;
|
|
138
|
+
display: block;
|
|
139
|
+
width: 100%;
|
|
140
|
+
padding-bottom: 100%;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.vjs-icon-placeholder {
|
|
144
|
+
display: block;
|
|
145
|
+
position: absolute;
|
|
146
|
+
// position and clip the play button triangle, responsively
|
|
147
|
+
top: 30%;
|
|
148
|
+
left: 40%;
|
|
149
|
+
height: 40%;
|
|
150
|
+
width: 30%;
|
|
151
|
+
overflow: hidden;
|
|
152
|
+
|
|
153
|
+
&:before {
|
|
154
|
+
content: "";
|
|
155
|
+
position: absolute;
|
|
156
|
+
top: 50%;
|
|
157
|
+
left: 100%;
|
|
158
|
+
|
|
159
|
+
display: block;
|
|
160
|
+
width: 0;
|
|
161
|
+
height: 0;
|
|
162
|
+
|
|
163
|
+
// currentColor sets the triangle color to the text-color.
|
|
164
|
+
// text-color is defined by the active color skin.
|
|
165
|
+
border-left: 300px solid currentColor;
|
|
166
|
+
border-top: 200px solid transparent;
|
|
167
|
+
border-bottom: 200px solid transparent;
|
|
168
|
+
margin-left: -300px;
|
|
169
|
+
margin-top:-200px;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
// Fluid big-play-button
|
|
175
|
+
&.cld-fluid .vjs-big-play-button {
|
|
176
|
+
max-width: 15%;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// Init-only big-play-button
|
|
180
|
+
&.vjs-big-play-button-init-only.vjs-has-started .vjs-big-play-button {
|
|
181
|
+
display: none;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
&.vjs-paused .vjs-big-play-button,
|
|
185
|
+
&.vjs-paused.vjs-has-started .vjs-big-play-button {
|
|
186
|
+
opacity: 1;
|
|
187
|
+
visibility: visible;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
&.vjs-error .vjs-error-display {
|
|
191
|
+
background: #90A0B3;
|
|
192
|
+
|
|
193
|
+
&:before {
|
|
194
|
+
display: none;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.vjs-modal-dialog-content {
|
|
198
|
+
font-size: 20px;
|
|
199
|
+
font-weight: 500;
|
|
200
|
+
text-align: left;
|
|
201
|
+
padding: 0 10%;
|
|
202
|
+
display: flex;
|
|
203
|
+
align-items: center;
|
|
204
|
+
|
|
205
|
+
&:before {
|
|
206
|
+
content: "";
|
|
207
|
+
width: 34px;
|
|
208
|
+
height: 34px;
|
|
209
|
+
margin-right: 10px;
|
|
210
|
+
background: url("../icons/info-circle.svg");
|
|
211
|
+
transform: translateY(-1px);
|
|
212
|
+
flex-shrink: 0;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
&.vjs-controls-disabled .vjs-big-play-button,
|
|
218
|
+
&.vjs-has-started .vjs-big-play-button,
|
|
219
|
+
&.vjs-using-native-controls .vjs-big-play-button,
|
|
220
|
+
&.vjs-error .vjs-big-play-button {
|
|
221
|
+
transition: visibility 0.2s, opacity 0.2s;
|
|
222
|
+
display: block;
|
|
223
|
+
visibility: hidden;
|
|
224
|
+
opacity: 0;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.vjs-control-bar {
|
|
228
|
+
z-index: 2;
|
|
229
|
+
|
|
230
|
+
.vjs-volume-panel {
|
|
231
|
+
margin-right: 1em;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.vjs-menu-button-inline:hover,
|
|
235
|
+
.vjs-menu-button-inline:focus,
|
|
236
|
+
.vjs-menu-button-inline.vjs-slider-active,
|
|
237
|
+
.vjs-no-flex .vjs-menu-button-inline {
|
|
238
|
+
// This width is currently specific to the inline volume bar.
|
|
239
|
+
width: 10em;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.vjs-menu-button-inline:before {
|
|
243
|
+
width: 1.6em;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.vjs-menu-button-inline .vjs-menu {
|
|
247
|
+
left: 3em;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.vjs-progress-control {
|
|
251
|
+
position: absolute;
|
|
252
|
+
left: 0px;
|
|
253
|
+
width: 100%;
|
|
254
|
+
background-color: inherit;
|
|
255
|
+
height: 1.0em;
|
|
256
|
+
padding: 0.7em 0.2em 0 0.2em;
|
|
257
|
+
bottom: 3.0em;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.vjs-progress-holder {
|
|
261
|
+
height: 0.25em;
|
|
262
|
+
}
|
|
263
|
+
.vjs-progress-control:hover {
|
|
264
|
+
.vjs-progress-holder {
|
|
265
|
+
font-size: 1.2em;
|
|
266
|
+
transition: none;
|
|
267
|
+
}
|
|
268
|
+
.vjs-time-tooltip {
|
|
269
|
+
font-size: 0.8em;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.vjs-play-progress {
|
|
274
|
+
&::before {
|
|
275
|
+
top: -0.25em;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
.vjs-progress-control-events-blocker {
|
|
281
|
+
background-color: transparent;
|
|
282
|
+
@extend .vjs-progress-control
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.vjs-subs-caps-button {
|
|
287
|
+
.vjs-texttrack-settings {
|
|
288
|
+
display: none;
|
|
289
|
+
}
|
|
290
|
+
.vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
|
|
291
|
+
vertical-align: top;
|
|
292
|
+
display: inline-block;
|
|
293
|
+
margin-bottom: -0.3em;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.vjs-menu {
|
|
298
|
+
.vjs-menu-content {
|
|
299
|
+
min-width: 10em;
|
|
300
|
+
width: auto;
|
|
301
|
+
overflow: visible;
|
|
302
|
+
padding: 0.2em 0;
|
|
303
|
+
}
|
|
304
|
+
.vjs-menu-item {
|
|
305
|
+
text-align: left;
|
|
306
|
+
white-space: nowrap;
|
|
307
|
+
text-transform: capitalize;
|
|
308
|
+
font-size: 1em;
|
|
309
|
+
padding: 0 1em;
|
|
310
|
+
line-height: 2em;
|
|
311
|
+
&.vjs-selected {
|
|
312
|
+
font-weight: bold;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.vjs-spacer {
|
|
318
|
+
flex: auto;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.vjs-modal-dialog {
|
|
322
|
+
background: none;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@mixin aspect-ratio($width, $height) {
|
|
2
|
+
&:before {
|
|
3
|
+
display: block;
|
|
4
|
+
content: "";
|
|
5
|
+
width: 100%;
|
|
6
|
+
padding-top: ($height / $width) * 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
> .aspect-ratio-content {
|
|
10
|
+
position: absolute;
|
|
11
|
+
top: 0;
|
|
12
|
+
left: 0;
|
|
13
|
+
right: 0;
|
|
14
|
+
bottom: 0;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
.cld-video-player {
|
|
2
|
+
|
|
3
|
+
.vjs-time-tooltip,
|
|
4
|
+
.vjs-mouse-display:after,
|
|
5
|
+
.vjs-play-progress:after {
|
|
6
|
+
font-weight: 300;
|
|
7
|
+
padding: 0.4em 0.6em;
|
|
8
|
+
top: -2.6em;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.vjs-recommendations-overlay .vjs-recommendations-overlay-item:active:after,
|
|
12
|
+
.vjs-recommendations-overlay .vjs-recommendations-overlay-item:hover:after {
|
|
13
|
+
content: "";
|
|
14
|
+
position: absolute;
|
|
15
|
+
width: 100%;
|
|
16
|
+
height: 100%;
|
|
17
|
+
top: 0px;
|
|
18
|
+
left: 0px;
|
|
19
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.vjs-context-menu-ui .vjs-menu-content .vjs-menu-item {
|
|
23
|
+
text-align: left;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.vjs-ad-playing .vjs-play-control.vjs-paused,
|
|
27
|
+
&.vjs-ad-playing .vjs-volume-level {
|
|
28
|
+
background-color: transparent !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.vjs-ad-playing .vjs-play-progress:before {
|
|
32
|
+
display: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.cld-video-player.cld-video-player-skin-light {
|
|
38
|
+
|
|
39
|
+
.video-js button:hover,
|
|
40
|
+
.vjs-volume-menu-button:hover {
|
|
41
|
+
opacity: 0.9;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.vjs-title-bar .vjs-title-bar-title:not(:empty) +
|
|
45
|
+
.vjs-title-bar-subtitle:not(:empty):before {
|
|
46
|
+
content: "\2022";
|
|
47
|
+
padding: 0 0.45em;
|
|
48
|
+
font-size: 1.4em;
|
|
49
|
+
font-weight: 500;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.vjs-title-bar {
|
|
53
|
+
flex-direction: row;
|
|
54
|
+
justify-content: left;
|
|
55
|
+
height: 3.6em;
|
|
56
|
+
|
|
57
|
+
> div {
|
|
58
|
+
width: auto;
|
|
59
|
+
padding: 0;
|
|
60
|
+
margin: 0;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
}
|