@clickview/player 0.0.2-rc.2 → 0.0.2-rc.4
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/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +4 -8
- package/dist/libs/common/src/backbone/core/LocationUtils.d.ts +0 -1
- package/dist/libs/shared/src/components/app-link/AppLink.d.ts +0 -1
- package/dist/libs/shared/src/enums/CustomerType.d.ts +11 -0
- package/dist/libs/shared/src/enums/WidgetContents.d.ts +1 -3
- package/dist/libs/shared/src/images/svg/ImportedSvgs.d.ts +1 -3
- package/dist/libs/shared/src/images/svg/objects/index.d.ts +1 -3
- package/dist/libs/shared/src/interfaces/app-variables/BaseSearchAppVariables.d.ts +0 -1
- package/dist/libs/shared/src/interfaces/models/Classification.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/models/Config.d.ts +0 -1
- package/dist/libs/shared/src/interfaces/models/Curriculum.d.ts +1 -3
- package/dist/libs/shared/src/interfaces/models/Library.d.ts +0 -3
- package/dist/libs/shared/src/interfaces/models/User.d.ts +2 -1
- package/dist/player-app.css +117 -162
- package/dist/player-app.js +126 -106
- package/dist/projects/player/src/players/player.d.ts +0 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/add-question-button/add-question-button.d.ts +8 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-components.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-image/create-image.d.ts +1 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-interaction-buttons/create-interaction-buttons.d.ts +14 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-interaction-heading/create-interaction-heading.d.ts +1 -1
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-missing-word/create-missing-word.d.ts +1 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-multiple-choice/create-multiple-choice.d.ts +1 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-short-answer/create-short-answer.d.ts +11 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-type-selector/create-type-selector.d.ts +8 -6
- package/dist/projects/player/src/plugins/interactive-plugin/components/interaction-actions/interaction-actions.d.ts +10 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/interaction-footer/interaction-footer.d.ts +20 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/interaction-header/interaction-header.d.ts +14 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/interactive/interactive-component.d.ts +0 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/question-list/question-list-empty-state.d.ts +2 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/question-list/question-list.d.ts +13 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/seek-bar/interactive-bar-items.d.ts +3 -3
- package/dist/projects/player/src/plugins/interactive-plugin/components/timepoint/timepoint-component.d.ts +3 -5
- package/dist/projects/player/src/plugins/interactive-plugin/components/view-components/short-answer/short-answer-interaction.d.ts +1 -1
- package/dist/projects/player/src/plugins/interactive-plugin/components/view-components/view-components.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/view-components/view-interaction-buttons/view-iteraction-buttons.d.ts +14 -0
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useInteractiveState.d.ts +20 -0
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useInteractiveTrack.d.ts +20 -0
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useLockPlayer.d.ts +15 -0
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useStateManager.d.ts +37 -0
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/InteractionComponent.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/InteractiveState.d.ts +26 -0
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/ResultSubmission.d.ts +1 -1
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/SubmissionFunction.d.ts +3 -3
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/index.d.ts +1 -2
- package/dist/projects/player/src/plugins/interactive-plugin/utils/InteractiveReducer.d.ts +14 -0
- package/package.json +3 -3
|
@@ -112,8 +112,7 @@ export declare enum EntityType {
|
|
|
112
112
|
Clip = "clip",
|
|
113
113
|
UserChannel = "user_channel",
|
|
114
114
|
Widget = "widget",
|
|
115
|
-
Url = "url"
|
|
116
|
-
SocialShare = "social_share"
|
|
115
|
+
Url = "url"
|
|
117
116
|
}
|
|
118
117
|
export declare enum LocationContext {
|
|
119
118
|
TopNav = "top_nav",
|
|
@@ -160,7 +159,6 @@ export declare enum LocationContext {
|
|
|
160
159
|
ManageClassroomGroups = "manage_classroom_groups",
|
|
161
160
|
ManageClassroomGroupListItem = "manage_classroom_group_list_item",
|
|
162
161
|
PreviewInteractive = "preview_interactive",
|
|
163
|
-
PreviewInteractiveQuestions = "preview_interactive_questions",
|
|
164
162
|
EditInteractive = "edit_interactive",
|
|
165
163
|
PlayPage = "play_page",
|
|
166
164
|
Player = "player",
|
|
@@ -177,9 +175,8 @@ export declare enum LocationContext {
|
|
|
177
175
|
ClassificationListItem = "classification_list_item",
|
|
178
176
|
ClassificationComingSoon = "classification_coming_soon",
|
|
179
177
|
ClassificationHero = "classification_hero",
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
Settings = "settings"
|
|
178
|
+
Settings = "settings",
|
|
179
|
+
Dashboard = "dashboard"
|
|
183
180
|
}
|
|
184
181
|
export declare enum WorkflowPhase {
|
|
185
182
|
Start = "start",
|
|
@@ -245,8 +242,7 @@ export declare enum ClickDescriptor {
|
|
|
245
242
|
Thumbnail = "thumbnail",
|
|
246
243
|
Cover = "cover",
|
|
247
244
|
TallPoster = "tall_poster",
|
|
248
|
-
Slide = "slide"
|
|
249
|
-
ExternalLink = "external_link"
|
|
245
|
+
Slide = "slide"
|
|
250
246
|
}
|
|
251
247
|
export declare enum VideoActionDescriptor {
|
|
252
248
|
FeatureUserChannelVideo = "feature_user_channel_video",
|
|
@@ -5,7 +5,6 @@ import { AnalyticsOptions } from 'libs/analytics/interfaces';
|
|
|
5
5
|
export interface AppLinkProps {
|
|
6
6
|
appLink: Core.AppLink;
|
|
7
7
|
className?: string;
|
|
8
|
-
style?: React.CSSProperties;
|
|
9
8
|
tag?: 'a' | 'button';
|
|
10
9
|
onClick?: (e: React.MouseEvent) => void;
|
|
11
10
|
analyticsData?: HashObject;
|
|
@@ -33,6 +33,4 @@ import FilePowerpoint from './file-ppt.svg';
|
|
|
33
33
|
import FileWord from './file-word.svg';
|
|
34
34
|
import FileZip from './file-zip.svg';
|
|
35
35
|
import FileExcel from './file-excel.svg';
|
|
36
|
-
|
|
37
|
-
import Facebook from './facebook.svg';
|
|
38
|
-
export { Archive, Bell, Bookmark, Broadcast, Calendar, Cog, Folder, Handle, Interactive, Link, Playlist, PublisherArchive, Resources, StarOutline, Star, Tag, Time, Video, Subject, Series, File, FilePDF, FileImg, FilePowerpoint, FileWord, FileZip, FileExcel, Heart, HeartOutline, WhiteWave, Compass, History, Email, YearLevel, Subjects, Twitter, Facebook };
|
|
36
|
+
export { Archive, Bell, Bookmark, Broadcast, Calendar, Cog, Folder, Handle, Interactive, Link, Playlist, PublisherArchive, Resources, StarOutline, Star, Tag, Time, Video, Subject, Series, File, FilePDF, FileImg, FilePowerpoint, FileWord, FileZip, FileExcel, Heart, HeartOutline, WhiteWave, Compass, History, Email, YearLevel, Subjects };
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
import { ClassificationStatus } from 'libs/shared/enums/ClassificationStatus';
|
|
2
1
|
import { CurriculumType } from 'libs/shared/enums/CurriculumType';
|
|
3
2
|
import { VirtualObject } from './primitives/VirtualObject';
|
|
4
3
|
export interface Curriculum<T = CurriculumType> {
|
|
5
4
|
backboneClassificationIds: number[];
|
|
6
5
|
canBePreferred: boolean;
|
|
7
|
-
comingSoon
|
|
8
|
-
status: ClassificationStatus;
|
|
6
|
+
comingSoon: boolean;
|
|
9
7
|
description?: string;
|
|
10
8
|
emphasize: boolean;
|
|
11
9
|
id: string;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { StaffRequestRole } from 'libs/shared/enums/StaffRequestRole';
|
|
2
1
|
import { BaseObject } from 'libs/shared/interfaces';
|
|
3
2
|
export interface Library extends BaseObject {
|
|
4
|
-
allowedStaffRequestRole?: StaffRequestRole;
|
|
5
3
|
isHiddenLibrary: boolean;
|
|
6
|
-
isSharedLibrary: boolean;
|
|
7
4
|
type: 'custom_library' | 'hosted_library' | 'exchange' | 'workspace' | 'online_supplementary_library';
|
|
8
5
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BaseObject, Group, Avatar, YearGroup, CustomerCollection, YearGroupCollection } from 'libs/shared/interfaces';
|
|
2
2
|
import { UserRole } from 'libs/shared/enums/UserRole';
|
|
3
|
+
import { CustomerType } from 'libs/shared/enums/CustomerType';
|
|
3
4
|
import { OnlineUserRole } from 'libs/shared/enums/UserRole';
|
|
4
5
|
import { UserGroup } from 'libs/shared/enums/UserGroup';
|
|
5
6
|
import { ObjectStatus } from 'libs/shared/enums/ObjectStatus';
|
|
@@ -57,7 +58,7 @@ export interface CurrentUser extends BaseObject {
|
|
|
57
58
|
export interface OnlineCurrentUser extends CurrentUser {
|
|
58
59
|
yearGroup: string;
|
|
59
60
|
crmId: string;
|
|
60
|
-
customerType:
|
|
61
|
+
customerType: CustomerType;
|
|
61
62
|
onlineRole: OnlineUserRole;
|
|
62
63
|
maxAllowedRating: number;
|
|
63
64
|
}
|
package/dist/player-app.css
CHANGED
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
|
|
194
194
|
@font-face {
|
|
195
195
|
font-family: "CVPlayer";
|
|
196
|
-
src: url("data:application/font-woff;charset=utf-8;base64,
|
|
196
|
+
src: url("data:application/font-woff;charset=utf-8;base64,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") format("woff"); }
|
|
197
197
|
|
|
198
198
|
.cv-icon {
|
|
199
199
|
line-height: 1; }
|
|
@@ -279,12 +279,6 @@
|
|
|
279
279
|
.cv-icon-unlink:before {
|
|
280
280
|
content: "\f118"; }
|
|
281
281
|
|
|
282
|
-
.cv-icon-heart:before {
|
|
283
|
-
content: "\f119"; }
|
|
284
|
-
|
|
285
|
-
.cv-icon-heart-outline:before {
|
|
286
|
-
content: "\f11a"; }
|
|
287
|
-
|
|
288
282
|
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-modal-dialog .vjs-modal-dialog-content {
|
|
289
283
|
position: absolute;
|
|
290
284
|
top: 0;
|
|
@@ -2276,50 +2270,82 @@ li.cv-chapter-menu-item {
|
|
|
2276
2270
|
/* Defined in player-font/icon-map.js */
|
|
2277
2271
|
content: "\f10f"; }
|
|
2278
2272
|
|
|
2279
|
-
.video-js .cv-
|
|
2280
|
-
|
|
2281
|
-
|
|
2273
|
+
.video-js .cv-interactive-bar-item {
|
|
2274
|
+
width: 0;
|
|
2275
|
+
top: -200%;
|
|
2276
|
+
bottom: -200%;
|
|
2282
2277
|
position: absolute;
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2278
|
+
height: auto; }
|
|
2279
|
+
.video-js .cv-interactive-bar-item .vjs-icon-placeholder {
|
|
2280
|
+
left: -3px;
|
|
2281
|
+
width: 6px;
|
|
2282
|
+
position: absolute;
|
|
2283
|
+
border-radius: 5px;
|
|
2284
|
+
z-index: 9;
|
|
2285
|
+
top: 0;
|
|
2286
|
+
bottom: 0; }
|
|
2287
|
+
.video-js .cv-interactive-bar-item .vjs-icon-placeholder:hover {
|
|
2288
|
+
width: 10px;
|
|
2289
|
+
left: -5px;
|
|
2290
|
+
top: -4px;
|
|
2291
|
+
bottom: -4px;
|
|
2292
|
+
z-index: 10; }
|
|
2293
|
+
|
|
2294
|
+
.video-js .cv-interactive-bar-items {
|
|
2295
|
+
position: relative;
|
|
2296
|
+
height: 100%; }
|
|
2297
|
+
|
|
2298
|
+
.video-js .cv-interactive-type-selector {
|
|
2299
|
+
width: 100%;
|
|
2300
|
+
max-width: 18.125rem; }
|
|
2301
|
+
|
|
2302
|
+
.video-js .cv-type-selector {
|
|
2303
|
+
width: calc(33% - 0.625rem);
|
|
2304
|
+
display: inline-block;
|
|
2305
|
+
text-align: center; }
|
|
2306
|
+
|
|
2307
|
+
.video-js .cv-create-type-icon {
|
|
2286
2308
|
width: 35px;
|
|
2287
2309
|
height: 35px;
|
|
2288
|
-
|
|
2289
|
-
background-
|
|
2290
|
-
box-shadow: 0 0.5rem 1rem rgba(51, 51, 51, 0.15); }
|
|
2291
|
-
.video-js .cv-favourite-button .vjs-icon-placeholder::before {
|
|
2292
|
-
position: absolute;
|
|
2293
|
-
top: 50%;
|
|
2294
|
-
left: 50%;
|
|
2295
|
-
transform: translate(-50%, -50%);
|
|
2296
|
-
font-size: 23px;
|
|
2297
|
-
/**
|
|
2298
|
-
* Cannot for the life of me figure out why the rest of this css isn't
|
|
2299
|
-
* centering this fucking heart. This padding seems to fix it for the
|
|
2300
|
-
* size it's currently at - Sha
|
|
2301
|
-
*/
|
|
2302
|
-
padding-left: 0.5px;
|
|
2303
|
-
font-family: CVPlayer;
|
|
2304
|
-
/* Defined in font/icon-map.js */
|
|
2305
|
-
content: "\f11a";
|
|
2306
|
-
color: #333333;
|
|
2307
|
-
display: block; }
|
|
2308
|
-
.video-js .cv-favourite-button.cv-favourited .vjs-icon-placeholder::before {
|
|
2309
|
-
content: "\f119";
|
|
2310
|
-
color: #D9584F; }
|
|
2310
|
+
display: inline-block;
|
|
2311
|
+
background-size: contain; }
|
|
2311
2312
|
|
|
2312
|
-
.video-js
|
|
2313
|
-
|
|
2313
|
+
.video-js .cv-interaction-type-name {
|
|
2314
|
+
min-height: 28px;
|
|
2315
|
+
font-size: 14px; }
|
|
2314
2316
|
|
|
2315
|
-
.video-js
|
|
2316
|
-
|
|
2317
|
+
.video-js .cv-add-question-copy {
|
|
2318
|
+
font-size: 14px; }
|
|
2317
2319
|
|
|
2318
2320
|
.video-js .cv-true-or-false-feedback-label {
|
|
2319
2321
|
margin-bottom: 0.3125rem;
|
|
2320
2322
|
display: flex;
|
|
2321
2323
|
align-items: center; }
|
|
2322
2324
|
|
|
2325
|
+
.cv--svg--3OUhC {
|
|
2326
|
+
width: 1.5rem;
|
|
2327
|
+
height: 1.5rem;
|
|
2328
|
+
position: absolute; }
|
|
2329
|
+
|
|
2330
|
+
.cv--iconButton--3t3VL {
|
|
2331
|
+
vertical-align: top;
|
|
2332
|
+
position: relative; }
|
|
2333
|
+
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo {
|
|
2334
|
+
padding-left: 36px;
|
|
2335
|
+
white-space: nowrap; }
|
|
2336
|
+
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo .cv--svg--3OUhC {
|
|
2337
|
+
left: 0.375rem;
|
|
2338
|
+
top: 50%;
|
|
2339
|
+
margin-top: -0.75rem; }
|
|
2340
|
+
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo svg {
|
|
2341
|
+
vertical-align: top; }
|
|
2342
|
+
.cv--iconButton--3t3VL.cv--iconOnly--2rQWb {
|
|
2343
|
+
padding: 1rem; }
|
|
2344
|
+
.cv--iconButton--3t3VL.cv--iconOnly--2rQWb .cv--svg--3OUhC {
|
|
2345
|
+
top: 50%;
|
|
2346
|
+
left: 50%;
|
|
2347
|
+
transform: translate3D(-50%, -50%, 0); }
|
|
2348
|
+
|
|
2323
2349
|
/*!
|
|
2324
2350
|
* Cropper.js v1.5.6
|
|
2325
2351
|
* https://fengyuanchen.github.io/cropperjs
|
|
@@ -2580,6 +2606,8 @@ li.cv-chapter-menu-item {
|
|
|
2580
2606
|
.cropper-disabled .cropper-point {
|
|
2581
2607
|
cursor: not-allowed; }
|
|
2582
2608
|
|
|
2609
|
+
|
|
2610
|
+
|
|
2583
2611
|
.video-js .cv-image-interaction-upload-container {
|
|
2584
2612
|
border-width: 2px;
|
|
2585
2613
|
border-style: dashed;
|
|
@@ -2613,32 +2641,6 @@ li.cv-chapter-menu-item {
|
|
|
2613
2641
|
.video-js .cv-image-upload-mask .cv-upload-image-icon {
|
|
2614
2642
|
fill: #F8981D; }
|
|
2615
2643
|
|
|
2616
|
-
.cv--svg--3OUhC {
|
|
2617
|
-
width: 1.5rem;
|
|
2618
|
-
height: 1.5rem;
|
|
2619
|
-
position: absolute; }
|
|
2620
|
-
|
|
2621
|
-
.cv--iconButton--3t3VL {
|
|
2622
|
-
vertical-align: top;
|
|
2623
|
-
position: relative; }
|
|
2624
|
-
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo {
|
|
2625
|
-
padding-left: 36px;
|
|
2626
|
-
white-space: nowrap; }
|
|
2627
|
-
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo .cv--svg--3OUhC {
|
|
2628
|
-
left: 0.375rem;
|
|
2629
|
-
top: 50%;
|
|
2630
|
-
margin-top: -0.75rem; }
|
|
2631
|
-
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo svg {
|
|
2632
|
-
vertical-align: top; }
|
|
2633
|
-
.cv--iconButton--3t3VL.cv--iconOnly--2rQWb {
|
|
2634
|
-
padding: 1rem; }
|
|
2635
|
-
.cv--iconButton--3t3VL.cv--iconOnly--2rQWb .cv--svg--3OUhC {
|
|
2636
|
-
top: 50%;
|
|
2637
|
-
left: 50%;
|
|
2638
|
-
transform: translate3D(-50%, -50%, 0); }
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
2644
|
.rdw-option-wrapper {
|
|
2643
2645
|
border: 1px solid #F1F1F1;
|
|
2644
2646
|
padding: 5px;
|
|
@@ -3738,6 +3740,16 @@ li.cv-chapter-menu-item {
|
|
|
3738
3740
|
border-bottom: 1px solid #B5B5B5;
|
|
3739
3741
|
outline: 0; }
|
|
3740
3742
|
|
|
3743
|
+
.cv--avatar--1XSQR {
|
|
3744
|
+
border-radius: 50%;
|
|
3745
|
+
background-color: #51ADA3;
|
|
3746
|
+
width: 100%;
|
|
3747
|
+
height: 100%;
|
|
3748
|
+
text-align: center;
|
|
3749
|
+
line-height: 100%;
|
|
3750
|
+
background-size: cover;
|
|
3751
|
+
background-position: top center; }
|
|
3752
|
+
|
|
3741
3753
|
.video-js .cv-multiple-choice-label-container {
|
|
3742
3754
|
padding: 0.625rem; }
|
|
3743
3755
|
|
|
@@ -3781,16 +3793,6 @@ li.cv-chapter-menu-item {
|
|
|
3781
3793
|
.video-js .cv-multiple-choice-form .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::after {
|
|
3782
3794
|
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3e%3cdefs%3e%3cpath id='a' d='M16.247 7.341a1 1 0 0 1 1.506 1.318l-7 8a1 1 0 0 1-1.46.048l-3-3a1 1 0 0 1 1.414-1.414l2.244 2.244 6.296-7.196z'/%3e%3c/defs%3e%3cuse fill='%23333333' fill-rule='nonzero' xlink:href='%23a'/%3e%3c/svg%3e"); }
|
|
3783
3795
|
|
|
3784
|
-
.cv--avatar--1XSQR {
|
|
3785
|
-
border-radius: 50%;
|
|
3786
|
-
background-color: #51ADA3;
|
|
3787
|
-
width: 100%;
|
|
3788
|
-
height: 100%;
|
|
3789
|
-
text-align: center;
|
|
3790
|
-
line-height: 100%;
|
|
3791
|
-
background-size: cover;
|
|
3792
|
-
background-position: top center; }
|
|
3793
|
-
|
|
3794
3796
|
.video-js .cv-true-or-false-feedback {
|
|
3795
3797
|
top: 0;
|
|
3796
3798
|
left: 0; }
|
|
@@ -3813,27 +3815,51 @@ li.cv-chapter-menu-item {
|
|
|
3813
3815
|
padding: 1.25rem;
|
|
3814
3816
|
padding-top: 0; }
|
|
3815
3817
|
|
|
3816
|
-
.video-js .cv-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
.video-js .cv-type-selector {
|
|
3821
|
-
width: calc(33% - 0.625rem);
|
|
3818
|
+
.video-js .cv-interaction-title {
|
|
3819
|
+
position: relative;
|
|
3820
|
+
margin: 0;
|
|
3822
3821
|
display: inline-block;
|
|
3823
|
-
|
|
3822
|
+
vertical-align: middle;
|
|
3823
|
+
width: calc(100% - 50px);
|
|
3824
|
+
font-weight: 700; }
|
|
3824
3825
|
|
|
3825
|
-
.video-js .cv-
|
|
3826
|
-
width: 35px;
|
|
3827
|
-
height: 35px;
|
|
3826
|
+
.video-js .cv-iteraction-icon {
|
|
3828
3827
|
display: inline-block;
|
|
3828
|
+
width: 50.5px;
|
|
3829
|
+
height: 50.5px;
|
|
3830
|
+
margin-right: 1.25rem;
|
|
3831
|
+
vertical-align: middle;
|
|
3829
3832
|
background-size: contain; }
|
|
3830
3833
|
|
|
3831
|
-
.video-js .cv-interaction-
|
|
3832
|
-
|
|
3833
|
-
font-size: 14px; }
|
|
3834
|
+
.video-js .cv-interaction-heading {
|
|
3835
|
+
color: #313543; }
|
|
3834
3836
|
|
|
3835
|
-
.
|
|
3836
|
-
|
|
3837
|
+
.cv--svg--1SPtl {
|
|
3838
|
+
width: 1.5rem;
|
|
3839
|
+
height: 1.5rem;
|
|
3840
|
+
position: absolute; }
|
|
3841
|
+
|
|
3842
|
+
.cv--iconButton--IPfDi {
|
|
3843
|
+
vertical-align: top;
|
|
3844
|
+
position: relative; }
|
|
3845
|
+
.cv--iconButton--IPfDi.cv--iconWithText--2mdXc {
|
|
3846
|
+
padding-left: 36px;
|
|
3847
|
+
white-space: nowrap; }
|
|
3848
|
+
.cv--iconButton--IPfDi.cv--iconWithText--2mdXc .cv--svg--1SPtl {
|
|
3849
|
+
left: 0.375rem;
|
|
3850
|
+
top: 50%;
|
|
3851
|
+
margin-top: -0.75rem; }
|
|
3852
|
+
.cv--iconButton--IPfDi.cv--iconWithText--2mdXc svg {
|
|
3853
|
+
vertical-align: top; }
|
|
3854
|
+
.cv--iconButton--IPfDi.cv--iconOnly--29PfJ {
|
|
3855
|
+
padding: 1rem; }
|
|
3856
|
+
.cv--iconButton--IPfDi.cv--iconOnly--29PfJ .cv--svg--1SPtl {
|
|
3857
|
+
top: 50%;
|
|
3858
|
+
left: 50%;
|
|
3859
|
+
transform: translate3D(-50%, -50%, 0); }
|
|
3860
|
+
|
|
3861
|
+
.cv--dropdownToggle--AYBvQ:after {
|
|
3862
|
+
content: none; }
|
|
3837
3863
|
|
|
3838
3864
|
.cv--time--3B2vs {
|
|
3839
3865
|
vertical-align: top;
|
|
@@ -3869,9 +3895,6 @@ li.cv-chapter-menu-item {
|
|
|
3869
3895
|
.cv--row--3uCfp:hover .cv--delete--_4TtZ {
|
|
3870
3896
|
display: inline-block; }
|
|
3871
3897
|
|
|
3872
|
-
.cv--dropdownToggle--AYBvQ:after {
|
|
3873
|
-
content: none; }
|
|
3874
|
-
|
|
3875
3898
|
.video-js .cv-interactive {
|
|
3876
3899
|
position: absolute;
|
|
3877
3900
|
top: 0;
|
|
@@ -3897,74 +3920,6 @@ li.cv-chapter-menu-item {
|
|
|
3897
3920
|
top: 1.25rem;
|
|
3898
3921
|
right: 1.25rem; }
|
|
3899
3922
|
|
|
3900
|
-
.cv--svg--1SPtl {
|
|
3901
|
-
width: 1.5rem;
|
|
3902
|
-
height: 1.5rem;
|
|
3903
|
-
position: absolute; }
|
|
3904
|
-
|
|
3905
|
-
.cv--iconButton--IPfDi {
|
|
3906
|
-
vertical-align: top;
|
|
3907
|
-
position: relative; }
|
|
3908
|
-
.cv--iconButton--IPfDi.cv--iconWithText--2mdXc {
|
|
3909
|
-
padding-left: 36px;
|
|
3910
|
-
white-space: nowrap; }
|
|
3911
|
-
.cv--iconButton--IPfDi.cv--iconWithText--2mdXc .cv--svg--1SPtl {
|
|
3912
|
-
left: 0.375rem;
|
|
3913
|
-
top: 50%;
|
|
3914
|
-
margin-top: -0.75rem; }
|
|
3915
|
-
.cv--iconButton--IPfDi.cv--iconWithText--2mdXc svg {
|
|
3916
|
-
vertical-align: top; }
|
|
3917
|
-
.cv--iconButton--IPfDi.cv--iconOnly--29PfJ {
|
|
3918
|
-
padding: 1rem; }
|
|
3919
|
-
.cv--iconButton--IPfDi.cv--iconOnly--29PfJ .cv--svg--1SPtl {
|
|
3920
|
-
top: 50%;
|
|
3921
|
-
left: 50%;
|
|
3922
|
-
transform: translate3D(-50%, -50%, 0); }
|
|
3923
|
-
|
|
3924
|
-
.video-js .cv-interaction-title {
|
|
3925
|
-
position: relative;
|
|
3926
|
-
margin: 0;
|
|
3927
|
-
display: inline-block;
|
|
3928
|
-
vertical-align: middle;
|
|
3929
|
-
width: calc(100% - 50px);
|
|
3930
|
-
font-weight: 700; }
|
|
3931
|
-
|
|
3932
|
-
.video-js .cv-iteraction-icon {
|
|
3933
|
-
display: inline-block;
|
|
3934
|
-
width: 50.5px;
|
|
3935
|
-
height: 50.5px;
|
|
3936
|
-
margin-right: 1.25rem;
|
|
3937
|
-
vertical-align: middle;
|
|
3938
|
-
background-size: contain; }
|
|
3939
|
-
|
|
3940
|
-
.video-js .cv-interaction-heading {
|
|
3941
|
-
color: #313543; }
|
|
3942
|
-
|
|
3943
|
-
.video-js .cv-interactive-bar-item {
|
|
3944
|
-
width: 0;
|
|
3945
|
-
top: -200%;
|
|
3946
|
-
bottom: -200%;
|
|
3947
|
-
position: absolute;
|
|
3948
|
-
height: auto; }
|
|
3949
|
-
.video-js .cv-interactive-bar-item .vjs-icon-placeholder {
|
|
3950
|
-
left: -3px;
|
|
3951
|
-
width: 6px;
|
|
3952
|
-
position: absolute;
|
|
3953
|
-
border-radius: 5px;
|
|
3954
|
-
z-index: 9;
|
|
3955
|
-
top: 0;
|
|
3956
|
-
bottom: 0; }
|
|
3957
|
-
.video-js .cv-interactive-bar-item .vjs-icon-placeholder:hover {
|
|
3958
|
-
width: 10px;
|
|
3959
|
-
left: -5px;
|
|
3960
|
-
top: -4px;
|
|
3961
|
-
bottom: -4px;
|
|
3962
|
-
z-index: 10; }
|
|
3963
|
-
|
|
3964
|
-
.video-js .cv-interactive-bar-items {
|
|
3965
|
-
position: relative;
|
|
3966
|
-
height: 100%; }
|
|
3967
|
-
|
|
3968
3923
|
.video-js.cv-interactive-plugin {
|
|
3969
3924
|
overflow: hidden; }
|
|
3970
3925
|
|