@clickview/player 0.0.2 → 0.0.3-dev-us.2
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/.storybook/main.js +1 -0
- package/.storybook/stories/Base.stories.tsx +6 -5
- package/.storybook/stories/Interactives.stories.tsx +45 -49
- package/.storybook/stories/utils/mock-playerapi.ts +38 -12
- package/dist/en.json +733 -0
- package/dist/libs/analytics/src/constants/CountryRegionMapping.d.ts +1 -0
- package/dist/libs/analytics/src/constants/Regions.d.ts +1 -0
- package/dist/libs/analytics/src/enums/CountryCode.d.ts +2 -1
- package/dist/libs/analytics/src/enums/RegionName.d.ts +2 -1
- package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +16 -7
- package/dist/libs/analytics/src/interfaces/Region.d.ts +0 -1
- package/dist/libs/common/src/backbone/core/AppLink.d.ts +1 -0
- package/dist/libs/common/src/backbone/core/LocationUtils.d.ts +1 -0
- package/dist/libs/common/src/backbone/enums/HttpStatus.d.ts +10 -0
- package/dist/libs/common/src/backbone/utils/LocalStorageHelper.d.ts +58 -0
- package/dist/libs/common/src/react/flight/FlightHelpers.d.ts +15 -0
- package/dist/libs/common/src/react/flight/FlightMiddleware.d.ts +11 -0
- package/dist/libs/common/src/react/flight/FlightReducer.d.ts +2 -0
- package/dist/libs/common/src/react/flight/FlightSimulator.d.ts +24 -0
- package/dist/libs/common/src/react/flight/constants/Actions.d.ts +7 -0
- package/dist/libs/common/src/react/flight/constants/index.d.ts +1 -0
- package/dist/libs/common/src/react/flight/data-layers/AjaxRequest.d.ts +2 -0
- package/dist/libs/common/src/react/flight/data-layers/index.d.ts +1 -0
- package/dist/libs/common/src/react/flight/index.d.ts +9 -0
- package/dist/libs/common/src/react/flight/interfaces/Action.d.ts +28 -0
- package/dist/libs/common/src/react/flight/interfaces/Dispatch.d.ts +3 -0
- package/dist/libs/common/src/react/flight/interfaces/HttpRequest.d.ts +27 -0
- package/dist/libs/common/src/react/flight/interfaces/NormalizedData.d.ts +7 -0
- package/dist/libs/common/src/react/flight/interfaces/Response.d.ts +9 -0
- package/dist/libs/common/src/react/flight/interfaces/index.d.ts +9 -0
- package/dist/libs/common/src/react/flight/normalizer/Denormalizer.d.ts +3 -0
- package/dist/libs/common/src/react/flight/normalizer/Normalizer.d.ts +8 -0
- package/dist/libs/common/src/react/flight/normalizer/index.d.ts +2 -0
- package/dist/libs/common/src/react/flight/utils/SimulatorHelper.d.ts +5 -0
- package/dist/libs/common/src/react/flight/utils/StateHelper.d.ts +11 -0
- package/dist/libs/common/src/react/flight/utils/index.d.ts +2 -0
- package/dist/libs/common/src/react/utils/ArrayHelper.d.ts +17 -1
- package/dist/libs/common/src/react/utils/ObjectHelper.d.ts +1 -0
- package/dist/libs/common/src/react/utils/TimeHelper.d.ts +8 -0
- package/dist/libs/shared/src/components/actions/Actions.d.ts +2 -2
- package/dist/libs/shared/src/components/actions/ActionsDropdown.d.ts +1 -1
- package/dist/libs/shared/src/components/app-link/AppLink.d.ts +8 -0
- package/dist/libs/shared/src/components/immersive-reader/ImmersiveReader.d.ts +14 -0
- package/dist/libs/shared/src/components/interactive-questions/InteractiveQuestions.d.ts +3 -1
- package/dist/libs/shared/src/components/text/Text.d.ts +13 -0
- package/dist/libs/shared/src/enums/CountryCode.d.ts +2 -1
- package/dist/libs/shared/src/enums/CurationStatus.d.ts +12 -0
- package/dist/libs/shared/src/enums/InteractionCorrectness.d.ts +8 -0
- package/dist/libs/shared/src/enums/InteractiveAnswerStatus.d.ts +5 -0
- package/dist/libs/shared/src/enums/ObjectStatus.d.ts +3 -3
- package/dist/libs/shared/src/enums/UserGroup.d.ts +3 -3
- package/dist/libs/shared/src/enums/UserRole.d.ts +4 -4
- package/dist/libs/shared/src/enums/WidgetContents.d.ts +3 -1
- package/dist/libs/shared/src/images/svg/ImportedSvgs.d.ts +4 -1
- package/dist/libs/shared/src/images/svg/objects/index.d.ts +3 -1
- package/dist/libs/shared/src/interfaces/VideoTypes.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/app-variables/BaseSearchAppVariables.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/models/Classification.d.ts +0 -1
- package/dist/libs/shared/src/interfaces/models/Config.d.ts +8 -1
- package/dist/libs/shared/src/interfaces/models/Curriculum.d.ts +3 -1
- package/dist/libs/shared/src/interfaces/models/Customer.d.ts +2 -1
- package/dist/libs/shared/src/interfaces/models/InteractiveMetadata.d.ts +11 -3
- package/dist/libs/shared/src/interfaces/models/Library.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/User.d.ts +38 -3
- package/dist/libs/shared/src/interfaces/models/Video.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/models/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/models/interactive-results/InteractiveResult.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/interactive-results/InteractiveResultSet.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/interactive-results/StudentAnswer.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/interactive-results/StudentAttempt.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/interactive-results/StudentResult.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/interactive-results/index.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/requests/CreateInteractiveMetadataRequest.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/requests/CreateInteractiveRequest.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/requests/EditInteractiveMetadataOriginRequest.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/requests/EditInteractiveMetadataRequest.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/requests/index.d.ts +1 -0
- package/dist/libs/shared/src/utils/interaction-type-helper/InteractionTypeHelper.d.ts +4 -0
- package/dist/player-app.css +387 -1694
- package/dist/player-app.js +1208 -5568
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-item.d.ts +1 -1
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-items.d.ts +1 -1
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-load-progress.d.ts +1 -1
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-play-progress.d.ts +1 -1
- package/dist/projects/player/src/components/chapters-button/chapter-menu-item.d.ts +1 -1
- package/dist/projects/player/src/components/collapserator/collapserator.d.ts +1 -0
- package/dist/projects/player/src/components/player/player.d.ts +1 -1
- package/dist/projects/player/src/components/subs-caps-button/SubCapsMenuItem.d.ts +52 -0
- package/dist/projects/player/src/components/subs-caps-button/subtitle-size-menu-item.d.ts +53 -0
- package/dist/projects/player/src/components/subtitle-size-button/subtitle-size-button.d.ts +1 -0
- package/dist/projects/player/src/components/text-track-settings/text-track-settings.d.ts +56 -0
- package/dist/projects/player/src/components/thumbnail-display/thumbnail-display.d.ts +2 -1
- package/dist/projects/player/src/index.d.ts +0 -2
- package/dist/projects/player/src/interfaces/models/PlaybackObject.d.ts +8 -0
- package/dist/projects/player/src/players/base-player.d.ts +10 -0
- package/dist/projects/player/src/players/interactive-player.d.ts +6 -1
- package/dist/projects/player/src/players/player.d.ts +2 -1
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector-handle.d.ts +1 -1
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector.d.ts +1 -1
- package/dist/projects/player/src/plugins/interactive-plugin/components/continue-session/continue-session.d.ts +8 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/interaction-actions/interaction-actions.d.ts +4 -1
- package/dist/projects/player/src/plugins/interactive-plugin/components/interaction-footer/interaction-footer.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/interactive-summary/InteractiveSummaryWrapper.d.ts +18 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/interactive-summary/interactions-bar/interactions-bar.d.ts +9 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/interactive-summary/interactive-summary.d.ts +20 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/interactive-summary/progress-summary/progress-summary.d.ts +12 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/interactive-summary/show-summary-button/show-summary-button.d.ts +13 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/move-timepoint/move-timepoint.d.ts +12 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/reorder-interactions/reorder-interactions.d.ts +9 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/seek-bar/interactive-bar-items.d.ts +1 -1
- package/dist/projects/player/src/plugins/interactive-plugin/components/sliding-timepoint/sliding-timepoints.d.ts +11 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/timepoint/timepoint-component.d.ts +28 -9
- package/dist/projects/player/src/plugins/interactive-plugin/components/view-components/interactive-immersive-reader/interactive-immersive-reader.d.ts +8 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/view-components/missing-word/missing-word-interaction.d.ts +2 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/view-components/multiple-choice/multiple-choice-interaction.d.ts +3 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/view-components/true-or-false/true-or-false-interaction.d.ts +3 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/view-components/view-components.d.ts +3 -0
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useInteractiveState.d.ts +10 -4
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useInteractiveTrack.d.ts +1 -0
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useLockPlayer.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/hooks/useStateManager.d.ts +12 -4
- package/dist/projects/player/src/plugins/interactive-plugin/interactive-plugin.d.ts +47 -0
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/InteractionProps.d.ts +1 -1
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/InteractiveState.d.ts +5 -1
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/LatestSession.d.ts +11 -0
- package/dist/projects/player/src/plugins/interactive-plugin/interfaces/index.d.ts +1 -0
- package/dist/projects/player/src/plugins/interactive-plugin/utils/InteractiveReducer.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/utils/ResultsService.d.ts +4 -1
- package/dist/projects/player/src/plugins/interactive-plugin/utils/helpers.d.ts +1 -0
- package/dist/projects/player/src/plugins/interactive-plugin/utils/interactive-ajax.d.ts +1 -0
- package/dist/projects/player/src/plugins/next-video-plugin/next-video-plugin.d.ts +0 -8
- package/dist/projects/player/src/plugins/persist-quality-settings-plugin/persist-quality-settings-plugin.d.ts +33 -0
- package/dist/projects/player/src/plugins/persist-subtitle-settings-plugin/persist-subtitle-settings-plugin.d.ts +38 -0
- package/dist/projects/player/src/plugins/picture-in-picture-plugin/picture-in-picture-plugin.d.ts +5 -1
- package/dist/projects/player/src/plugins/progress-reporter-plugin/progress-reporter-plugin.d.ts +59 -0
- package/dist/projects/player/src/plugins/touch-controls-plugin/components/touch-controls/touch-controls.d.ts +1 -1
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-handle/drag-handle.d.ts +53 -0
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-targets/drag-targets.d.ts +54 -0
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/whiteboard-mode-button/whiteboard-mode-button.d.ts +23 -0
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/whiteboard-mode-button/whiteboard-mode-menu-item.d.ts +15 -0
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/contants/WhiteboardSides.d.ts +5 -0
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/interfaces/WhiteboardSide.d.ts +1 -0
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/whiteboard-mode-plugin.d.ts +34 -0
- package/dist/projects/player/src/react/InteractivePlayer.d.ts +1 -0
- package/dist/projects/player/src/react/Player.d.ts +1 -1
- package/dist/projects/player/src/utils/local-storage-helper.d.ts +6 -0
- package/package.json +8 -4
- package/typings/utils/imports.d.ts +1 -1
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,6 +279,15 @@
|
|
|
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
|
+
.cv-icon-pop-out:before {
|
|
289
|
+
content: "\f11b"; }
|
|
290
|
+
|
|
282
291
|
.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 {
|
|
283
292
|
position: absolute;
|
|
284
293
|
top: 0;
|
|
@@ -1670,8 +1679,10 @@ video::-webkit-media-text-track-display {
|
|
|
1670
1679
|
position: static; }
|
|
1671
1680
|
.video-js .vjs-control:focus, .video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before {
|
|
1672
1681
|
text-shadow: none; }
|
|
1673
|
-
|
|
1674
|
-
|
|
1682
|
+
|
|
1683
|
+
.video-js .vjs-icon-placeholder:before {
|
|
1684
|
+
position: static;
|
|
1685
|
+
font-size: 2em !important; }
|
|
1675
1686
|
|
|
1676
1687
|
.video-js .vjs-custom-control-spacer {
|
|
1677
1688
|
display: block;
|
|
@@ -1711,6 +1722,234 @@ video::-webkit-media-text-track-display {
|
|
|
1711
1722
|
bottom: 0;
|
|
1712
1723
|
right: 0; }
|
|
1713
1724
|
|
|
1725
|
+
.video-js .cv-drag-handle {
|
|
1726
|
+
width: 4em;
|
|
1727
|
+
height: 4em;
|
|
1728
|
+
color: #B5B5B5;
|
|
1729
|
+
padding: 1.3em;
|
|
1730
|
+
display: none; }
|
|
1731
|
+
.video-js .cv-drag-handle svg {
|
|
1732
|
+
width: 1.4em;
|
|
1733
|
+
height: 1.4em;
|
|
1734
|
+
fill: currentColor; }
|
|
1735
|
+
|
|
1736
|
+
.video-js.vjs-fullscreen .cv-drag-handle {
|
|
1737
|
+
display: inline-block; }
|
|
1738
|
+
|
|
1739
|
+
.video-js .cv-drop-target {
|
|
1740
|
+
display: none;
|
|
1741
|
+
border: 3px dashed #fff;
|
|
1742
|
+
width: 4em;
|
|
1743
|
+
height: 4em;
|
|
1744
|
+
position: absolute;
|
|
1745
|
+
z-index: 2; }
|
|
1746
|
+
.video-js .cv-drop-target.cv-drag-over {
|
|
1747
|
+
box-shadow: 0 0 1em #fff;
|
|
1748
|
+
background: rgba(255, 255, 255, 0.3); }
|
|
1749
|
+
.video-js .cv-drop-target:after {
|
|
1750
|
+
content: " ";
|
|
1751
|
+
display: block;
|
|
1752
|
+
position: absolute;
|
|
1753
|
+
top: -4em;
|
|
1754
|
+
left: -4em;
|
|
1755
|
+
right: -4em;
|
|
1756
|
+
bottom: -4em; }
|
|
1757
|
+
|
|
1758
|
+
.video-js.cv-dragging .cv-drop-target {
|
|
1759
|
+
display: block;
|
|
1760
|
+
font-size: 1vw; }
|
|
1761
|
+
|
|
1762
|
+
.video-js.cv-dragging .vjs-control-bar {
|
|
1763
|
+
padding-bottom: 4.8em !important; }
|
|
1764
|
+
|
|
1765
|
+
.video-js.cv-dragging .cv-collapsorator {
|
|
1766
|
+
visibility: none; }
|
|
1767
|
+
|
|
1768
|
+
.video-js .cv-drop-top {
|
|
1769
|
+
top: 0;
|
|
1770
|
+
left: 50%;
|
|
1771
|
+
transform: translate(-50%, 0);
|
|
1772
|
+
width: 30%;
|
|
1773
|
+
border-bottom-right-radius: 0.6em;
|
|
1774
|
+
border-bottom-left-radius: 0.6em;
|
|
1775
|
+
border-top: none; }
|
|
1776
|
+
|
|
1777
|
+
.video-js .cv-drop-left {
|
|
1778
|
+
left: 0;
|
|
1779
|
+
top: 50%;
|
|
1780
|
+
transform: translate(0, -50%);
|
|
1781
|
+
height: 50%;
|
|
1782
|
+
border-top-right-radius: 0.6em;
|
|
1783
|
+
border-bottom-right-radius: 0.6em;
|
|
1784
|
+
border-left: none; }
|
|
1785
|
+
|
|
1786
|
+
.video-js .cv-drop-right {
|
|
1787
|
+
right: 0;
|
|
1788
|
+
top: 50%;
|
|
1789
|
+
transform: translate(0, -50%);
|
|
1790
|
+
height: 50%;
|
|
1791
|
+
border-top-left-radius: 0.6em;
|
|
1792
|
+
border-bottom-left-radius: 0.6em;
|
|
1793
|
+
border-right: none; }
|
|
1794
|
+
|
|
1795
|
+
.video-js .cv-drop-bottom {
|
|
1796
|
+
left: 0;
|
|
1797
|
+
right: 0;
|
|
1798
|
+
bottom: 0;
|
|
1799
|
+
width: 100%; }
|
|
1800
|
+
|
|
1801
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top, .video-js.vjs-fullscreen.cv-whiteboard-left, .video-js.vjs-fullscreen.cv-whiteboard-right {
|
|
1802
|
+
font-size: 2em; }
|
|
1803
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-collapsorator, .video-js.vjs-fullscreen.cv-whiteboard-left .cv-collapsorator, .video-js.vjs-fullscreen.cv-whiteboard-right .cv-collapsorator {
|
|
1804
|
+
left: auto;
|
|
1805
|
+
right: auto;
|
|
1806
|
+
bottom: auto;
|
|
1807
|
+
height: auto;
|
|
1808
|
+
background: rgba(0, 0, 0, 0.6);
|
|
1809
|
+
border-radius: 0.6em;
|
|
1810
|
+
padding: 0; }
|
|
1811
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-collapsorator .vjs-button,
|
|
1812
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-collapsorator .vjs-control, .video-js.vjs-fullscreen.cv-whiteboard-left .cv-collapsorator .vjs-button,
|
|
1813
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .cv-collapsorator .vjs-control, .video-js.vjs-fullscreen.cv-whiteboard-right .cv-collapsorator .vjs-button,
|
|
1814
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .cv-collapsorator .vjs-control {
|
|
1815
|
+
height: 4em; }
|
|
1816
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-collapsorator .cv-collapsed,
|
|
1817
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-collapsorator .vjs-spacer, .video-js.vjs-fullscreen.cv-whiteboard-left .cv-collapsorator .cv-collapsed,
|
|
1818
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .cv-collapsorator .vjs-spacer, .video-js.vjs-fullscreen.cv-whiteboard-right .cv-collapsorator .cv-collapsed,
|
|
1819
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .cv-collapsorator .vjs-spacer {
|
|
1820
|
+
height: 0 !important; }
|
|
1821
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .vjs-control-bar, .video-js.vjs-fullscreen.cv-whiteboard-left .vjs-control-bar, .video-js.vjs-fullscreen.cv-whiteboard-right .vjs-control-bar {
|
|
1822
|
+
padding-bottom: 2em;
|
|
1823
|
+
padding-top: 2em; }
|
|
1824
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .vjs-picture-in-picture-control,
|
|
1825
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-create-clip-button,
|
|
1826
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-open-externally-button, .video-js.vjs-fullscreen.cv-whiteboard-left .vjs-picture-in-picture-control,
|
|
1827
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .cv-create-clip-button,
|
|
1828
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .cv-open-externally-button, .video-js.vjs-fullscreen.cv-whiteboard-right .vjs-picture-in-picture-control,
|
|
1829
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .cv-create-clip-button,
|
|
1830
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .cv-open-externally-button {
|
|
1831
|
+
display: none; }
|
|
1832
|
+
|
|
1833
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .cv-collapsorator, .video-js.vjs-fullscreen.cv-whiteboard-right .cv-collapsorator {
|
|
1834
|
+
top: 50%;
|
|
1835
|
+
transform: translate(0, -50%);
|
|
1836
|
+
flex-direction: column; }
|
|
1837
|
+
|
|
1838
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .vjs-menu, .video-js.vjs-fullscreen.cv-whiteboard-right .vjs-menu {
|
|
1839
|
+
position: absolute;
|
|
1840
|
+
top: 50%; }
|
|
1841
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .vjs-menu .vjs-menu-content, .video-js.vjs-fullscreen.cv-whiteboard-right .vjs-menu .vjs-menu-content {
|
|
1842
|
+
max-height: 50vh;
|
|
1843
|
+
right: auto;
|
|
1844
|
+
bottom: auto;
|
|
1845
|
+
transform: translate(0, -50%); }
|
|
1846
|
+
|
|
1847
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .vjs-volume-panel.vjs-volume-panel-horizontal, .video-js.vjs-fullscreen.cv-whiteboard-right .vjs-volume-panel.vjs-volume-panel-horizontal {
|
|
1848
|
+
width: 4em; }
|
|
1849
|
+
|
|
1850
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .vjs-volume-panel .vjs-volume-control, .video-js.vjs-fullscreen.cv-whiteboard-right .vjs-volume-panel .vjs-volume-control {
|
|
1851
|
+
position: absolute !important;
|
|
1852
|
+
background: rgba(0, 0, 0, 0.6);
|
|
1853
|
+
border-radius: 0.6em;
|
|
1854
|
+
width: 0;
|
|
1855
|
+
transition: opacity 1s; }
|
|
1856
|
+
|
|
1857
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .vjs-hover .vjs-volume-control, .video-js.vjs-fullscreen.cv-whiteboard-right .vjs-hover .vjs-volume-control {
|
|
1858
|
+
width: 10em; }
|
|
1859
|
+
|
|
1860
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .cv-collapsorator {
|
|
1861
|
+
border-top-left-radius: 0;
|
|
1862
|
+
border-bottom-left-radius: 0;
|
|
1863
|
+
left: 0; }
|
|
1864
|
+
|
|
1865
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .vjs-menu {
|
|
1866
|
+
left: 100%;
|
|
1867
|
+
right: auto;
|
|
1868
|
+
margin-left: 1em; }
|
|
1869
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .vjs-menu .vjs-menu-content {
|
|
1870
|
+
left: 0; }
|
|
1871
|
+
|
|
1872
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .vjs-volume-panel .vjs-volume-control {
|
|
1873
|
+
left: 100%;
|
|
1874
|
+
border-top-left-radius: 0 !important;
|
|
1875
|
+
border-bottom-left-radius: 0 !important;
|
|
1876
|
+
padding-right: 1em;
|
|
1877
|
+
margin-left: 0; }
|
|
1878
|
+
|
|
1879
|
+
.video-js.vjs-fullscreen.cv-whiteboard-left .cv-drop-left {
|
|
1880
|
+
display: none; }
|
|
1881
|
+
|
|
1882
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .cv-collapsorator {
|
|
1883
|
+
right: 0;
|
|
1884
|
+
border-top-right-radius: 0;
|
|
1885
|
+
border-bottom-right-radius: 0; }
|
|
1886
|
+
|
|
1887
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .vjs-menu {
|
|
1888
|
+
right: 100%;
|
|
1889
|
+
left: auto;
|
|
1890
|
+
margin-right: 1em; }
|
|
1891
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .vjs-menu .vjs-menu-content {
|
|
1892
|
+
right: 0; }
|
|
1893
|
+
|
|
1894
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .vjs-volume-panel .vjs-volume-control {
|
|
1895
|
+
right: 100%;
|
|
1896
|
+
border-top-right-radius: 0;
|
|
1897
|
+
border-bottom-right-radius: 0;
|
|
1898
|
+
padding-left: 1em;
|
|
1899
|
+
margin-right: 0; }
|
|
1900
|
+
|
|
1901
|
+
.video-js.vjs-fullscreen.cv-whiteboard-right .cv-drop-right {
|
|
1902
|
+
display: none; }
|
|
1903
|
+
|
|
1904
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-collapsorator {
|
|
1905
|
+
top: 0;
|
|
1906
|
+
border-top-right-radius: 0;
|
|
1907
|
+
border-top-left-radius: 0;
|
|
1908
|
+
left: 50%;
|
|
1909
|
+
transform: translate(-50%, 0); }
|
|
1910
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-collapsorator .cv-collapsed,
|
|
1911
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-collapsorator .vjs-spacer {
|
|
1912
|
+
width: 0 !important; }
|
|
1913
|
+
|
|
1914
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .vjs-menu {
|
|
1915
|
+
position: absolute;
|
|
1916
|
+
top: 100%;
|
|
1917
|
+
left: 50%;
|
|
1918
|
+
margin-top: 1em;
|
|
1919
|
+
transform: translate(-50%, 0); }
|
|
1920
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .vjs-menu .vjs-menu-content {
|
|
1921
|
+
max-height: 50vh;
|
|
1922
|
+
right: auto;
|
|
1923
|
+
bottom: auto;
|
|
1924
|
+
left: 50%;
|
|
1925
|
+
transform: translate(-50%, 0); }
|
|
1926
|
+
|
|
1927
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .vjs-volume-panel {
|
|
1928
|
+
position: relative;
|
|
1929
|
+
transition: none; }
|
|
1930
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .vjs-volume-panel .vjs-volume-control {
|
|
1931
|
+
position: absolute !important;
|
|
1932
|
+
background: rgba(0, 0, 0, 0.6);
|
|
1933
|
+
border-radius: 0.6em;
|
|
1934
|
+
border-top-left-radius: 0;
|
|
1935
|
+
border-top-right-radius: 0;
|
|
1936
|
+
height: 0;
|
|
1937
|
+
top: 100%;
|
|
1938
|
+
left: 0 !important;
|
|
1939
|
+
width: 4em;
|
|
1940
|
+
transition: none; }
|
|
1941
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .vjs-volume-panel .vjs-volume-bar {
|
|
1942
|
+
margin: 0.45em 1.85em; }
|
|
1943
|
+
|
|
1944
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .vjs-hover .vjs-volume-control {
|
|
1945
|
+
height: 6.5em; }
|
|
1946
|
+
|
|
1947
|
+
.video-js.vjs-fullscreen.cv-whiteboard-top .cv-drop-top {
|
|
1948
|
+
display: none; }
|
|
1949
|
+
|
|
1950
|
+
.video-js.vjs-fullscreen:not(.cv-whiteboard-top):not(.cv-whiteboard-left):not(.cv-whiteboard-right) .cv-drop-bottom {
|
|
1951
|
+
display: none; }
|
|
1952
|
+
|
|
1714
1953
|
.video-js .cv-time-wrapper {
|
|
1715
1954
|
overflow: hidden; }
|
|
1716
1955
|
|
|
@@ -1744,11 +1983,16 @@ video::-webkit-media-text-track-display {
|
|
|
1744
1983
|
text-transform: none; }
|
|
1745
1984
|
|
|
1746
1985
|
.video-js .cv-collapsorator {
|
|
1747
|
-
display: flex;
|
|
1748
1986
|
font-size: 1.2em;
|
|
1749
1987
|
height: 4em;
|
|
1750
1988
|
padding-left: 1em;
|
|
1751
|
-
padding-right: 1.15em;
|
|
1989
|
+
padding-right: 1.15em;
|
|
1990
|
+
position: absolute;
|
|
1991
|
+
bottom: 0;
|
|
1992
|
+
left: 0;
|
|
1993
|
+
right: 0;
|
|
1994
|
+
display: none;
|
|
1995
|
+
z-index: 3; }
|
|
1752
1996
|
.video-js .cv-collapsorator .vjs-control {
|
|
1753
1997
|
width: 4em; }
|
|
1754
1998
|
|
|
@@ -1770,6 +2014,25 @@ video::-webkit-media-text-track-display {
|
|
|
1770
2014
|
opacity: 1;
|
|
1771
2015
|
color: #F8981D; }
|
|
1772
2016
|
|
|
2017
|
+
.video-js.vjs-has-started .cv-collapsorator {
|
|
2018
|
+
display: flex;
|
|
2019
|
+
visibility: visible;
|
|
2020
|
+
opacity: 1;
|
|
2021
|
+
transition: visibility 1s, opacity 1s; }
|
|
2022
|
+
|
|
2023
|
+
.video-js.vjs-controls-disabled .cv-collapsorator,
|
|
2024
|
+
.video-js.vjs-using-native-controls .cv-collapsorator,
|
|
2025
|
+
.video-js.vjs-error .cv-collapsorator {
|
|
2026
|
+
display: none !important; }
|
|
2027
|
+
|
|
2028
|
+
.video-js.vjs-has-started.vjs-user-inactive.vjs-playing .cv-collapsorator {
|
|
2029
|
+
visibility: visible;
|
|
2030
|
+
opacity: 0; }
|
|
2031
|
+
|
|
2032
|
+
.video-js.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .cv-collapsorator {
|
|
2033
|
+
opacity: 1;
|
|
2034
|
+
visibility: visible; }
|
|
2035
|
+
|
|
1773
2036
|
.video-js .vjs-play-control .vjs-icon-placeholder:before {
|
|
1774
2037
|
font-family: CVPlayer;
|
|
1775
2038
|
/* Defined in font/icon-map.js */
|
|
@@ -1941,10 +2204,11 @@ li.cv-chapter-menu-item {
|
|
|
1941
2204
|
/* Defined in font/icon-map.js */
|
|
1942
2205
|
content: "\f106"; }
|
|
1943
2206
|
|
|
2207
|
+
@charset "UTF-8";
|
|
1944
2208
|
.video-js .cv-collapsorator .vjs-subs-caps-button .vjs-icon-placeholder:before {
|
|
1945
2209
|
font-family: CVPlayer;
|
|
1946
2210
|
/* Defined in font/icon-map.js */
|
|
1947
|
-
content: "
|
|
2211
|
+
content: "" !important; }
|
|
1948
2212
|
|
|
1949
2213
|
.video-js .cv-quality-button {
|
|
1950
2214
|
cursor: pointer; }
|
|
@@ -1958,10 +2222,14 @@ li.cv-chapter-menu-item {
|
|
|
1958
2222
|
.vjs-playback-rate .vjs-menu-button {
|
|
1959
2223
|
position: relative; }
|
|
1960
2224
|
|
|
2225
|
+
.video-js {
|
|
2226
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
|
|
2227
|
+
|
|
1961
2228
|
.video-js .vjs-control-bar {
|
|
1962
2229
|
height: auto;
|
|
1963
2230
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.69) 100%);
|
|
1964
|
-
z-index: 2;
|
|
2231
|
+
z-index: 2;
|
|
2232
|
+
padding-bottom: 4.8em; }
|
|
1965
2233
|
|
|
1966
2234
|
.video-js.vjs-has-started .vjs-control-bar {
|
|
1967
2235
|
display: block;
|
|
@@ -2001,6 +2269,32 @@ li.cv-chapter-menu-item {
|
|
|
2001
2269
|
width: 7em;
|
|
2002
2270
|
height: 4em; }
|
|
2003
2271
|
|
|
2272
|
+
.video-js .vjs-volume-control .vjs-slider-horizontal .vjs-volume-level:before {
|
|
2273
|
+
width: 0.9em;
|
|
2274
|
+
height: 0.9em;
|
|
2275
|
+
margin-top: -0.45em;
|
|
2276
|
+
top: 50%;
|
|
2277
|
+
background-color: white;
|
|
2278
|
+
border-radius: 50%;
|
|
2279
|
+
content: " ";
|
|
2280
|
+
box-shadow: 0 0 1em rgba(0, 0, 0, 0.25); }
|
|
2281
|
+
|
|
2282
|
+
.video-js .vjs-volume-control .vjs-slider-horizontal .vjs-volume-level {
|
|
2283
|
+
height: 0.3em; }
|
|
2284
|
+
|
|
2285
|
+
.video-js .vjs-volume-control .vjs-slider-vertical .vjs-volume-level:before {
|
|
2286
|
+
width: 0.9em;
|
|
2287
|
+
height: 0.9em;
|
|
2288
|
+
margin-left: -0.45em;
|
|
2289
|
+
left: 50%;
|
|
2290
|
+
background-color: white;
|
|
2291
|
+
border-radius: 50%;
|
|
2292
|
+
content: " ";
|
|
2293
|
+
box-shadow: 0 0 1em rgba(0, 0, 0, 0.25); }
|
|
2294
|
+
|
|
2295
|
+
.video-js .vjs-volume-control .vjs-slider-vertical .vjs-volume-level {
|
|
2296
|
+
width: 0.3em; }
|
|
2297
|
+
|
|
2004
2298
|
.vjs-menu-button-popup .vjs-menu {
|
|
2005
2299
|
left: 0;
|
|
2006
2300
|
bottom: 0;
|
|
@@ -2012,17 +2306,20 @@ li.cv-chapter-menu-item {
|
|
|
2012
2306
|
max-height: calc(100% - 1.5em - 1em);
|
|
2013
2307
|
overflow: visible;
|
|
2014
2308
|
background: rgba(0, 0, 0, 0.6);
|
|
2015
|
-
border:
|
|
2309
|
+
border: none;
|
|
2016
2310
|
border-radius: 3px;
|
|
2017
2311
|
padding: 0.5em 0; }
|
|
2018
2312
|
.vjs-menu-button-popup .vjs-menu li {
|
|
2313
|
+
text-transform: none;
|
|
2019
2314
|
text-align: left;
|
|
2020
2315
|
padding: 0.5em 1em; }
|
|
2316
|
+
.vjs-menu-button-popup .vjs-menu li.vjs-menu-item:focus {
|
|
2317
|
+
background: none; }
|
|
2021
2318
|
.vjs-menu-button-popup .vjs-menu li.vjs-menu-item:hover {
|
|
2022
2319
|
background: rgba(0, 0, 0, 0.3); }
|
|
2023
2320
|
.vjs-menu-button-popup .vjs-menu li.vjs-selected {
|
|
2024
2321
|
background: rgba(0, 0, 0, 0.5);
|
|
2025
|
-
color: #
|
|
2322
|
+
color: #fff;
|
|
2026
2323
|
font-weight: bold; }
|
|
2027
2324
|
|
|
2028
2325
|
.cv-menu-small.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
|
|
@@ -2044,16 +2341,22 @@ li.cv-chapter-menu-item {
|
|
|
2044
2341
|
top: 50%;
|
|
2045
2342
|
left: 50%;
|
|
2046
2343
|
transform: translate(-50%, -50%); }
|
|
2344
|
+
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
|
|
2345
|
+
font-size: 1.4em !important; }
|
|
2047
2346
|
|
|
2048
2347
|
.video-js.cv-create-interactives .vjs-big-play-button {
|
|
2049
2348
|
display: none; }
|
|
2050
2349
|
|
|
2350
|
+
.video-js .vjs-text-track-display {
|
|
2351
|
+
bottom: 4em; }
|
|
2352
|
+
|
|
2051
2353
|
.video-js .vjs-example-button {
|
|
2052
2354
|
border: 1px solid red;
|
|
2053
2355
|
height: 3em; }
|
|
2054
2356
|
|
|
2055
2357
|
.video-js .cv-open-externally-button {
|
|
2056
|
-
width: 9em;
|
|
2358
|
+
width: 9em;
|
|
2359
|
+
margin-right: 1em; }
|
|
2057
2360
|
.video-js .cv-open-externally-button svg {
|
|
2058
2361
|
width: 100%;
|
|
2059
2362
|
height: 100%; }
|
|
@@ -2174,11 +2477,14 @@ li.cv-chapter-menu-item {
|
|
|
2174
2477
|
text-shadow: none;
|
|
2175
2478
|
opacity: 1; }
|
|
2176
2479
|
|
|
2177
|
-
.video-js .cv-create-clip-button
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2480
|
+
.video-js .cv-create-clip-button {
|
|
2481
|
+
width: 4em;
|
|
2482
|
+
padding: 0; }
|
|
2483
|
+
.video-js .cv-create-clip-button .vjs-icon-placeholder::before {
|
|
2484
|
+
font-family: CVPlayer;
|
|
2485
|
+
/* Defined in font/icon-map.js */
|
|
2486
|
+
/* TODO: Add correct icon to fonts*/
|
|
2487
|
+
content: "\f10e"; }
|
|
2182
2488
|
|
|
2183
2489
|
.cv--image--1YW-E {
|
|
2184
2490
|
width: 100%;
|
|
@@ -2270,1693 +2576,80 @@ li.cv-chapter-menu-item {
|
|
|
2270
2576
|
/* Defined in player-font/icon-map.js */
|
|
2271
2577
|
content: "\f10f"; }
|
|
2272
2578
|
|
|
2273
|
-
.video-js .cv-
|
|
2274
|
-
|
|
2275
|
-
top: -200%;
|
|
2276
|
-
bottom: -200%;
|
|
2277
|
-
position: absolute;
|
|
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 {
|
|
2308
|
-
width: 35px;
|
|
2309
|
-
height: 35px;
|
|
2310
|
-
display: inline-block;
|
|
2311
|
-
background-size: contain; }
|
|
2312
|
-
|
|
2313
|
-
.video-js .cv-interaction-type-name {
|
|
2314
|
-
min-height: 28px;
|
|
2315
|
-
font-size: 14px; }
|
|
2316
|
-
|
|
2317
|
-
.video-js .cv-add-question-copy {
|
|
2318
|
-
font-size: 14px; }
|
|
2319
|
-
|
|
2320
|
-
.video-js .cv-true-or-false-feedback-label {
|
|
2321
|
-
margin-bottom: 0.3125rem;
|
|
2322
|
-
display: flex;
|
|
2323
|
-
align-items: center; }
|
|
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
|
-
|
|
2349
|
-
/*!
|
|
2350
|
-
* Cropper.js v1.5.6
|
|
2351
|
-
* https://fengyuanchen.github.io/cropperjs
|
|
2352
|
-
*
|
|
2353
|
-
* Copyright 2015-present Chen Fengyuan
|
|
2354
|
-
* Released under the MIT license
|
|
2355
|
-
*
|
|
2356
|
-
* Date: 2019-10-04T04:33:44.164Z
|
|
2357
|
-
*/
|
|
2358
|
-
.cropper-container {
|
|
2359
|
-
direction: ltr;
|
|
2360
|
-
font-size: 0;
|
|
2361
|
-
line-height: 0;
|
|
2362
|
-
position: relative;
|
|
2363
|
-
-ms-touch-action: none;
|
|
2364
|
-
touch-action: none;
|
|
2365
|
-
-webkit-user-select: none;
|
|
2366
|
-
-moz-user-select: none;
|
|
2367
|
-
-ms-user-select: none;
|
|
2368
|
-
user-select: none; }
|
|
2369
|
-
|
|
2370
|
-
.cropper-container img {
|
|
2371
|
-
display: block;
|
|
2372
|
-
height: 100%;
|
|
2373
|
-
image-orientation: 0deg;
|
|
2374
|
-
max-height: none !important;
|
|
2375
|
-
max-width: none !important;
|
|
2376
|
-
min-height: 0 !important;
|
|
2377
|
-
min-width: 0 !important;
|
|
2378
|
-
width: 100%; }
|
|
2379
|
-
|
|
2380
|
-
.cropper-wrap-box,
|
|
2381
|
-
.cropper-canvas,
|
|
2382
|
-
.cropper-drag-box,
|
|
2383
|
-
.cropper-crop-box,
|
|
2384
|
-
.cropper-modal {
|
|
2385
|
-
bottom: 0;
|
|
2386
|
-
left: 0;
|
|
2387
|
-
position: absolute;
|
|
2388
|
-
right: 0;
|
|
2389
|
-
top: 0; }
|
|
2390
|
-
|
|
2391
|
-
.cropper-wrap-box,
|
|
2392
|
-
.cropper-canvas {
|
|
2393
|
-
overflow: hidden; }
|
|
2579
|
+
.video-js.vjs-has-started .cv-pip-play-toggle {
|
|
2580
|
+
opacity: 1; }
|
|
2394
2581
|
|
|
2395
|
-
.
|
|
2396
|
-
background-color: #fff;
|
|
2582
|
+
.video-js.vjs-seeking .cv-pip-play-toggle, .video-js.vjs-scrubbing .cv-pip-play-toggle {
|
|
2397
2583
|
opacity: 0; }
|
|
2398
2584
|
|
|
2399
|
-
.
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
.
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
.
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
.cropper-center {
|
|
2434
|
-
display: block;
|
|
2435
|
-
height: 0;
|
|
2436
|
-
left: 50%;
|
|
2437
|
-
opacity: 0.75;
|
|
2438
|
-
position: absolute;
|
|
2439
|
-
top: 50%;
|
|
2440
|
-
width: 0; }
|
|
2441
|
-
|
|
2442
|
-
.cropper-center::before,
|
|
2443
|
-
.cropper-center::after {
|
|
2444
|
-
background-color: #eee;
|
|
2445
|
-
content: ' ';
|
|
2446
|
-
display: block;
|
|
2447
|
-
position: absolute; }
|
|
2448
|
-
|
|
2449
|
-
.cropper-center::before {
|
|
2450
|
-
height: 1px;
|
|
2451
|
-
left: -3px;
|
|
2452
|
-
top: 0;
|
|
2453
|
-
width: 7px; }
|
|
2454
|
-
|
|
2455
|
-
.cropper-center::after {
|
|
2456
|
-
height: 7px;
|
|
2457
|
-
left: 0;
|
|
2458
|
-
top: -3px;
|
|
2459
|
-
width: 1px; }
|
|
2460
|
-
|
|
2461
|
-
.cropper-face,
|
|
2462
|
-
.cropper-line,
|
|
2463
|
-
.cropper-point {
|
|
2464
|
-
display: block;
|
|
2465
|
-
height: 100%;
|
|
2466
|
-
opacity: 0.1;
|
|
2467
|
-
position: absolute;
|
|
2468
|
-
width: 100%; }
|
|
2469
|
-
|
|
2470
|
-
.cropper-face {
|
|
2471
|
-
background-color: #fff;
|
|
2472
|
-
left: 0;
|
|
2473
|
-
top: 0; }
|
|
2474
|
-
|
|
2475
|
-
.cropper-line {
|
|
2476
|
-
background-color: #39f; }
|
|
2477
|
-
|
|
2478
|
-
.cropper-line.line-e {
|
|
2479
|
-
cursor: ew-resize;
|
|
2480
|
-
right: -3px;
|
|
2481
|
-
top: 0;
|
|
2482
|
-
width: 5px; }
|
|
2483
|
-
|
|
2484
|
-
.cropper-line.line-n {
|
|
2485
|
-
cursor: ns-resize;
|
|
2486
|
-
height: 5px;
|
|
2487
|
-
left: 0;
|
|
2488
|
-
top: -3px; }
|
|
2489
|
-
|
|
2490
|
-
.cropper-line.line-w {
|
|
2491
|
-
cursor: ew-resize;
|
|
2492
|
-
left: -3px;
|
|
2493
|
-
top: 0;
|
|
2494
|
-
width: 5px; }
|
|
2495
|
-
|
|
2496
|
-
.cropper-line.line-s {
|
|
2497
|
-
bottom: -3px;
|
|
2498
|
-
cursor: ns-resize;
|
|
2499
|
-
height: 5px;
|
|
2500
|
-
left: 0; }
|
|
2501
|
-
|
|
2502
|
-
.cropper-point {
|
|
2503
|
-
background-color: #39f;
|
|
2504
|
-
height: 5px;
|
|
2505
|
-
opacity: 0.75;
|
|
2506
|
-
width: 5px; }
|
|
2507
|
-
|
|
2508
|
-
.cropper-point.point-e {
|
|
2509
|
-
cursor: ew-resize;
|
|
2510
|
-
margin-top: -3px;
|
|
2511
|
-
right: -3px;
|
|
2512
|
-
top: 50%; }
|
|
2513
|
-
|
|
2514
|
-
.cropper-point.point-n {
|
|
2515
|
-
cursor: ns-resize;
|
|
2516
|
-
left: 50%;
|
|
2517
|
-
margin-left: -3px;
|
|
2518
|
-
top: -3px; }
|
|
2519
|
-
|
|
2520
|
-
.cropper-point.point-w {
|
|
2521
|
-
cursor: ew-resize;
|
|
2522
|
-
left: -3px;
|
|
2523
|
-
margin-top: -3px;
|
|
2524
|
-
top: 50%; }
|
|
2585
|
+
.video-js.cv-picture-in-picture {
|
|
2586
|
+
padding-top: 56.25%; }
|
|
2587
|
+
.video-js.cv-picture-in-picture .vjs-control-bar {
|
|
2588
|
+
padding-bottom: 0; }
|
|
2589
|
+
.video-js.cv-picture-in-picture .cv-collapsorator {
|
|
2590
|
+
display: none; }
|
|
2591
|
+
.video-js.cv-picture-in-picture .vjs-progress-control {
|
|
2592
|
+
margin-bottom: 2em;
|
|
2593
|
+
padding-left: 1em;
|
|
2594
|
+
padding-right: 1em; }
|
|
2595
|
+
.video-js.cv-picture-in-picture .vjs-time-control {
|
|
2596
|
+
padding-left: 1em;
|
|
2597
|
+
padding-right: 1em; }
|
|
2598
|
+
.video-js.cv-picture-in-picture .cv-pip-play-toggle {
|
|
2599
|
+
position: absolute;
|
|
2600
|
+
width: 100%;
|
|
2601
|
+
top: 0;
|
|
2602
|
+
left: 0;
|
|
2603
|
+
right: 0;
|
|
2604
|
+
bottom: 0;
|
|
2605
|
+
opacity: 0;
|
|
2606
|
+
transition: opacity 1s;
|
|
2607
|
+
z-index: 1;
|
|
2608
|
+
background-color: rgba(0, 0, 0, 0.2); }
|
|
2609
|
+
.video-js.cv-picture-in-picture .cv-pip-play-toggle .vjs-icon-placeholder::before {
|
|
2610
|
+
font-size: 3.5em; }
|
|
2611
|
+
.video-js.cv-picture-in-picture .cv-pip-play-toggle:hover .vjs-icon-placeholder::before {
|
|
2612
|
+
opacity: 1; }
|
|
2613
|
+
.video-js.cv-picture-in-picture .cv-favourite-button {
|
|
2614
|
+
top: 1em;
|
|
2615
|
+
right: 1em; }
|
|
2616
|
+
|
|
2617
|
+
.video-js.vjs-has-started.vjs-user-inactive.vjs-playing .cv-pip-play-toggle {
|
|
2618
|
+
opacity: 0; }
|
|
2525
2619
|
|
|
2526
|
-
.
|
|
2527
|
-
bottom: -3px;
|
|
2528
|
-
cursor: s-resize;
|
|
2529
|
-
left: 50%;
|
|
2530
|
-
margin-left: -3px; }
|
|
2531
|
-
|
|
2532
|
-
.cropper-point.point-ne {
|
|
2533
|
-
cursor: nesw-resize;
|
|
2534
|
-
right: -3px;
|
|
2535
|
-
top: -3px; }
|
|
2536
|
-
|
|
2537
|
-
.cropper-point.point-nw {
|
|
2538
|
-
cursor: nwse-resize;
|
|
2539
|
-
left: -3px;
|
|
2540
|
-
top: -3px; }
|
|
2541
|
-
|
|
2542
|
-
.cropper-point.point-sw {
|
|
2543
|
-
bottom: -3px;
|
|
2544
|
-
cursor: nesw-resize;
|
|
2545
|
-
left: -3px; }
|
|
2546
|
-
|
|
2547
|
-
.cropper-point.point-se {
|
|
2548
|
-
bottom: -3px;
|
|
2549
|
-
cursor: nwse-resize;
|
|
2550
|
-
height: 20px;
|
|
2551
|
-
opacity: 1;
|
|
2552
|
-
right: -3px;
|
|
2553
|
-
width: 20px; }
|
|
2554
|
-
|
|
2555
|
-
@media (min-width: 768px) {
|
|
2556
|
-
.cropper-point.point-se {
|
|
2557
|
-
height: 15px;
|
|
2558
|
-
width: 15px; } }
|
|
2559
|
-
|
|
2560
|
-
@media (min-width: 992px) {
|
|
2561
|
-
.cropper-point.point-se {
|
|
2562
|
-
height: 10px;
|
|
2563
|
-
width: 10px; } }
|
|
2564
|
-
|
|
2565
|
-
@media (min-width: 1200px) {
|
|
2566
|
-
.cropper-point.point-se {
|
|
2567
|
-
height: 5px;
|
|
2568
|
-
opacity: 0.75;
|
|
2569
|
-
width: 5px; } }
|
|
2570
|
-
|
|
2571
|
-
.cropper-point.point-se::before {
|
|
2572
|
-
background-color: #39f;
|
|
2573
|
-
bottom: -50%;
|
|
2574
|
-
content: ' ';
|
|
2575
|
-
display: block;
|
|
2576
|
-
height: 200%;
|
|
2620
|
+
.video-js .cv-favourite-button {
|
|
2577
2621
|
opacity: 0;
|
|
2622
|
+
transition: opacity 1s;
|
|
2578
2623
|
position: absolute;
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2624
|
+
top: 1.25rem;
|
|
2625
|
+
right: 1.25rem;
|
|
2626
|
+
padding: 0;
|
|
2627
|
+
width: 35px;
|
|
2628
|
+
height: 35px;
|
|
2629
|
+
border-radius: 50%;
|
|
2630
|
+
background-color: rgba(241, 241, 241, 0.5);
|
|
2631
|
+
box-shadow: 0 0.5rem 1rem rgba(51, 51, 51, 0.15);
|
|
2632
|
+
z-index: 2; }
|
|
2633
|
+
.video-js .cv-favourite-button .vjs-icon-placeholder::before {
|
|
2634
|
+
position: absolute;
|
|
2635
|
+
top: 50%;
|
|
2636
|
+
left: 50%;
|
|
2637
|
+
transform: translate(-50%, -50%);
|
|
2638
|
+
font-size: 23px !important;
|
|
2639
|
+
font-family: CVPlayer;
|
|
2640
|
+
/* Defined in font/icon-map.js */
|
|
2641
|
+
content: "\f11a";
|
|
2642
|
+
color: #333333;
|
|
2643
|
+
display: block; }
|
|
2644
|
+
.video-js .cv-favourite-button.cv-favourited .vjs-icon-placeholder::before {
|
|
2645
|
+
content: "\f119";
|
|
2646
|
+
color: #D9584F; }
|
|
2587
2647
|
|
|
2588
|
-
.
|
|
2589
|
-
|
|
2590
|
-
height: 0;
|
|
2591
|
-
position: absolute;
|
|
2592
|
-
width: 0; }
|
|
2648
|
+
.video-js.vjs-has-started .cv-favourite-button {
|
|
2649
|
+
opacity: 1; }
|
|
2593
2650
|
|
|
2594
|
-
.
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
.cropper-move {
|
|
2598
|
-
cursor: move; }
|
|
2599
|
-
|
|
2600
|
-
.cropper-crop {
|
|
2601
|
-
cursor: crosshair; }
|
|
2602
|
-
|
|
2603
|
-
.cropper-disabled .cropper-drag-box,
|
|
2604
|
-
.cropper-disabled .cropper-face,
|
|
2605
|
-
.cropper-disabled .cropper-line,
|
|
2606
|
-
.cropper-disabled .cropper-point {
|
|
2607
|
-
cursor: not-allowed; }
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
.video-js .cv-image-interaction-upload-container {
|
|
2612
|
-
border-width: 2px;
|
|
2613
|
-
border-style: dashed;
|
|
2614
|
-
border-color: #979797; }
|
|
2615
|
-
|
|
2616
|
-
.video-js .cv-upload-image-icon {
|
|
2617
|
-
fill: #979797; }
|
|
2618
|
-
|
|
2619
|
-
.video-js .cv-uploaded-image-container {
|
|
2620
|
-
position: relative;
|
|
2621
|
-
margin: 0 auto;
|
|
2622
|
-
display: inline-block; }
|
|
2623
|
-
.video-js .cv-uploaded-image-container img {
|
|
2624
|
-
max-height: 150px; }
|
|
2625
|
-
.video-js .cv-uploaded-image-container .cv-remove-uploaded-image {
|
|
2626
|
-
position: absolute;
|
|
2627
|
-
top: 0;
|
|
2628
|
-
bottom: 0;
|
|
2629
|
-
left: 0;
|
|
2630
|
-
right: 0;
|
|
2631
|
-
transition: opacity 0.2s linear;
|
|
2632
|
-
opacity: 0; }
|
|
2633
|
-
.video-js .cv-uploaded-image-container:hover .cv-remove-uploaded-image {
|
|
2634
|
-
background: rgba(49, 53, 67, 0.6);
|
|
2635
|
-
opacity: 1; }
|
|
2636
|
-
|
|
2637
|
-
.video-js .cv-image-upload-mask {
|
|
2638
|
-
color: #F8981D; }
|
|
2639
|
-
.video-js .cv-image-upload-mask .cv-image-interaction-upload-container {
|
|
2640
|
-
border-color: #F8981D; }
|
|
2641
|
-
.video-js .cv-image-upload-mask .cv-upload-image-icon {
|
|
2642
|
-
fill: #F8981D; }
|
|
2643
|
-
|
|
2644
|
-
.rdw-option-wrapper {
|
|
2645
|
-
border: 1px solid #F1F1F1;
|
|
2646
|
-
padding: 5px;
|
|
2647
|
-
min-width: 25px;
|
|
2648
|
-
height: 20px;
|
|
2649
|
-
border-radius: 2px;
|
|
2650
|
-
margin: 0 4px;
|
|
2651
|
-
display: flex;
|
|
2652
|
-
justify-content: center;
|
|
2653
|
-
align-items: center;
|
|
2654
|
-
cursor: pointer;
|
|
2655
|
-
background: white;
|
|
2656
|
-
text-transform: capitalize; }
|
|
2657
|
-
|
|
2658
|
-
.rdw-option-wrapper:hover {
|
|
2659
|
-
box-shadow: 1px 1px 0px #BFBDBD; }
|
|
2660
|
-
|
|
2661
|
-
.rdw-option-wrapper:active {
|
|
2662
|
-
box-shadow: 1px 1px 0px #BFBDBD inset; }
|
|
2663
|
-
|
|
2664
|
-
.rdw-option-active {
|
|
2665
|
-
box-shadow: 1px 1px 0px #BFBDBD inset; }
|
|
2666
|
-
|
|
2667
|
-
.rdw-option-disabled {
|
|
2668
|
-
opacity: 0.3;
|
|
2669
|
-
cursor: default; }
|
|
2670
|
-
|
|
2671
|
-
.rdw-dropdown-wrapper {
|
|
2672
|
-
height: 30px;
|
|
2673
|
-
background: white;
|
|
2674
|
-
cursor: pointer;
|
|
2675
|
-
border: 1px solid #F1F1F1;
|
|
2676
|
-
border-radius: 2px;
|
|
2677
|
-
margin: 0 3px;
|
|
2678
|
-
text-transform: capitalize;
|
|
2679
|
-
background: white; }
|
|
2680
|
-
|
|
2681
|
-
.rdw-dropdown-wrapper:focus {
|
|
2682
|
-
outline: none; }
|
|
2683
|
-
|
|
2684
|
-
.rdw-dropdown-wrapper:hover {
|
|
2685
|
-
box-shadow: 1px 1px 0px #BFBDBD;
|
|
2686
|
-
background-color: #FFFFFF; }
|
|
2687
|
-
|
|
2688
|
-
.rdw-dropdown-wrapper:active {
|
|
2689
|
-
box-shadow: 1px 1px 0px #BFBDBD inset; }
|
|
2690
|
-
|
|
2691
|
-
.rdw-dropdown-carettoopen {
|
|
2692
|
-
height: 0px;
|
|
2693
|
-
width: 0px;
|
|
2694
|
-
position: absolute;
|
|
2695
|
-
top: 35%;
|
|
2696
|
-
right: 10%;
|
|
2697
|
-
border-top: 6px solid black;
|
|
2698
|
-
border-left: 5px solid transparent;
|
|
2699
|
-
border-right: 5px solid transparent; }
|
|
2700
|
-
|
|
2701
|
-
.rdw-dropdown-carettoclose {
|
|
2702
|
-
height: 0px;
|
|
2703
|
-
width: 0px;
|
|
2704
|
-
position: absolute;
|
|
2705
|
-
top: 35%;
|
|
2706
|
-
right: 10%;
|
|
2707
|
-
border-bottom: 6px solid black;
|
|
2708
|
-
border-left: 5px solid transparent;
|
|
2709
|
-
border-right: 5px solid transparent; }
|
|
2710
|
-
|
|
2711
|
-
.rdw-dropdown-selectedtext {
|
|
2712
|
-
display: flex;
|
|
2713
|
-
position: relative;
|
|
2714
|
-
height: 100%;
|
|
2715
|
-
align-items: center;
|
|
2716
|
-
padding: 0 5px; }
|
|
2717
|
-
|
|
2718
|
-
.rdw-dropdown-optionwrapper {
|
|
2719
|
-
z-index: 100;
|
|
2720
|
-
position: relative;
|
|
2721
|
-
border: 1px solid #F1F1F1;
|
|
2722
|
-
width: 98%;
|
|
2723
|
-
background: white;
|
|
2724
|
-
border-radius: 2px;
|
|
2725
|
-
margin: 0;
|
|
2726
|
-
padding: 0;
|
|
2727
|
-
max-height: 250px;
|
|
2728
|
-
overflow-y: scroll; }
|
|
2729
|
-
|
|
2730
|
-
.rdw-dropdown-optionwrapper:hover {
|
|
2731
|
-
box-shadow: 1px 1px 0px #BFBDBD;
|
|
2732
|
-
background-color: #FFFFFF; }
|
|
2733
|
-
|
|
2734
|
-
.rdw-dropdownoption-default {
|
|
2735
|
-
min-height: 25px;
|
|
2736
|
-
display: flex;
|
|
2737
|
-
align-items: center;
|
|
2738
|
-
padding: 0 5px; }
|
|
2739
|
-
|
|
2740
|
-
.rdw-dropdownoption-highlighted {
|
|
2741
|
-
background: #F1F1F1; }
|
|
2742
|
-
|
|
2743
|
-
.rdw-dropdownoption-active {
|
|
2744
|
-
background: #f5f5f5; }
|
|
2745
|
-
|
|
2746
|
-
.rdw-dropdownoption-disabled {
|
|
2747
|
-
opacity: 0.3;
|
|
2748
|
-
cursor: default; }
|
|
2749
|
-
|
|
2750
|
-
.rdw-inline-wrapper {
|
|
2751
|
-
display: flex;
|
|
2752
|
-
align-items: center;
|
|
2753
|
-
margin-bottom: 6px;
|
|
2754
|
-
flex-wrap: wrap; }
|
|
2755
|
-
|
|
2756
|
-
.rdw-inline-dropdown {
|
|
2757
|
-
width: 50px; }
|
|
2758
|
-
|
|
2759
|
-
.rdw-inline-dropdownoption {
|
|
2760
|
-
height: 40px;
|
|
2761
|
-
display: flex;
|
|
2762
|
-
justify-content: center; }
|
|
2763
|
-
|
|
2764
|
-
.rdw-block-wrapper {
|
|
2765
|
-
display: flex;
|
|
2766
|
-
align-items: center;
|
|
2767
|
-
margin-bottom: 6px;
|
|
2768
|
-
flex-wrap: wrap; }
|
|
2769
|
-
|
|
2770
|
-
.rdw-block-dropdown {
|
|
2771
|
-
width: 110px; }
|
|
2772
|
-
|
|
2773
|
-
.rdw-fontsize-wrapper {
|
|
2774
|
-
display: flex;
|
|
2775
|
-
align-items: center;
|
|
2776
|
-
margin-bottom: 6px;
|
|
2777
|
-
flex-wrap: wrap; }
|
|
2778
|
-
|
|
2779
|
-
.rdw-fontsize-dropdown {
|
|
2780
|
-
min-width: 40px; }
|
|
2781
|
-
|
|
2782
|
-
.rdw-fontsize-option {
|
|
2783
|
-
display: flex;
|
|
2784
|
-
justify-content: center; }
|
|
2785
|
-
|
|
2786
|
-
.rdw-fontfamily-wrapper {
|
|
2787
|
-
display: flex;
|
|
2788
|
-
align-items: center;
|
|
2789
|
-
margin-bottom: 6px;
|
|
2790
|
-
flex-wrap: wrap; }
|
|
2791
|
-
|
|
2792
|
-
.rdw-fontfamily-dropdown {
|
|
2793
|
-
width: 115px; }
|
|
2794
|
-
|
|
2795
|
-
.rdw-fontfamily-placeholder {
|
|
2796
|
-
white-space: nowrap;
|
|
2797
|
-
max-width: 90px;
|
|
2798
|
-
overflow: hidden;
|
|
2799
|
-
text-overflow: ellipsis; }
|
|
2800
|
-
|
|
2801
|
-
.rdw-fontfamily-optionwrapper {
|
|
2802
|
-
width: 140px; }
|
|
2803
|
-
|
|
2804
|
-
.rdw-list-wrapper {
|
|
2805
|
-
display: flex;
|
|
2806
|
-
align-items: center;
|
|
2807
|
-
margin-bottom: 6px;
|
|
2808
|
-
flex-wrap: wrap; }
|
|
2809
|
-
|
|
2810
|
-
.rdw-list-dropdown {
|
|
2811
|
-
width: 50px;
|
|
2812
|
-
z-index: 90; }
|
|
2813
|
-
|
|
2814
|
-
.rdw-list-dropdownOption {
|
|
2815
|
-
height: 40px;
|
|
2816
|
-
display: flex;
|
|
2817
|
-
justify-content: center; }
|
|
2818
|
-
|
|
2819
|
-
.rdw-text-align-wrapper {
|
|
2820
|
-
display: flex;
|
|
2821
|
-
align-items: center;
|
|
2822
|
-
margin-bottom: 6px;
|
|
2823
|
-
flex-wrap: wrap; }
|
|
2824
|
-
|
|
2825
|
-
.rdw-text-align-dropdown {
|
|
2826
|
-
width: 50px;
|
|
2827
|
-
z-index: 90; }
|
|
2828
|
-
|
|
2829
|
-
.rdw-text-align-dropdownOption {
|
|
2830
|
-
height: 40px;
|
|
2831
|
-
display: flex;
|
|
2832
|
-
justify-content: center; }
|
|
2833
|
-
|
|
2834
|
-
.rdw-right-aligned-block {
|
|
2835
|
-
text-align: right; }
|
|
2836
|
-
|
|
2837
|
-
.rdw-left-aligned-block {
|
|
2838
|
-
text-align: left !important; }
|
|
2839
|
-
|
|
2840
|
-
.rdw-center-aligned-block {
|
|
2841
|
-
text-align: center !important; }
|
|
2842
|
-
|
|
2843
|
-
.rdw-justify-aligned-block {
|
|
2844
|
-
text-align: justify !important; }
|
|
2845
|
-
|
|
2846
|
-
.rdw-right-aligned-block > div {
|
|
2847
|
-
display: inline-block; }
|
|
2848
|
-
|
|
2849
|
-
.rdw-left-aligned-block > div {
|
|
2850
|
-
display: inline-block; }
|
|
2851
|
-
|
|
2852
|
-
.rdw-center-aligned-block > div {
|
|
2853
|
-
display: inline-block; }
|
|
2854
|
-
|
|
2855
|
-
.rdw-justify-aligned-block > div {
|
|
2856
|
-
display: inline-block; }
|
|
2857
|
-
|
|
2858
|
-
.rdw-colorpicker-wrapper {
|
|
2859
|
-
display: flex;
|
|
2860
|
-
align-items: center;
|
|
2861
|
-
margin-bottom: 6px;
|
|
2862
|
-
position: relative;
|
|
2863
|
-
flex-wrap: wrap; }
|
|
2864
|
-
|
|
2865
|
-
.rdw-colorpicker-modal {
|
|
2866
|
-
position: absolute;
|
|
2867
|
-
top: 35px;
|
|
2868
|
-
left: 5px;
|
|
2869
|
-
display: flex;
|
|
2870
|
-
flex-direction: column;
|
|
2871
|
-
width: 175px;
|
|
2872
|
-
height: 175px;
|
|
2873
|
-
border: 1px solid #F1F1F1;
|
|
2874
|
-
padding: 15px;
|
|
2875
|
-
border-radius: 2px;
|
|
2876
|
-
z-index: 100;
|
|
2877
|
-
background: white;
|
|
2878
|
-
box-shadow: 3px 3px 5px #BFBDBD; }
|
|
2879
|
-
|
|
2880
|
-
.rdw-colorpicker-modal-header {
|
|
2881
|
-
display: flex;
|
|
2882
|
-
padding-bottom: 5px; }
|
|
2883
|
-
|
|
2884
|
-
.rdw-colorpicker-modal-style-label {
|
|
2885
|
-
font-size: 15px;
|
|
2886
|
-
width: 50%;
|
|
2887
|
-
text-align: center;
|
|
2888
|
-
cursor: pointer;
|
|
2889
|
-
padding: 0 10px 5px; }
|
|
2890
|
-
|
|
2891
|
-
.rdw-colorpicker-modal-style-label-active {
|
|
2892
|
-
border-bottom: 2px solid #0a66b7; }
|
|
2893
|
-
|
|
2894
|
-
.rdw-colorpicker-modal-options {
|
|
2895
|
-
margin: 5px auto;
|
|
2896
|
-
display: flex;
|
|
2897
|
-
width: 100%;
|
|
2898
|
-
height: 100%;
|
|
2899
|
-
flex-wrap: wrap;
|
|
2900
|
-
overflow: scroll; }
|
|
2901
|
-
|
|
2902
|
-
.rdw-colorpicker-cube {
|
|
2903
|
-
width: 22px;
|
|
2904
|
-
height: 22px;
|
|
2905
|
-
border: 1px solid #F1F1F1; }
|
|
2906
|
-
|
|
2907
|
-
.rdw-colorpicker-option {
|
|
2908
|
-
margin: 3px;
|
|
2909
|
-
padding: 0;
|
|
2910
|
-
min-height: 20px;
|
|
2911
|
-
border: none;
|
|
2912
|
-
width: 22px;
|
|
2913
|
-
height: 22px;
|
|
2914
|
-
min-width: 22px;
|
|
2915
|
-
box-shadow: 1px 2px 1px #BFBDBD inset; }
|
|
2916
|
-
|
|
2917
|
-
.rdw-colorpicker-option:hover {
|
|
2918
|
-
box-shadow: 1px 2px 1px #BFBDBD; }
|
|
2919
|
-
|
|
2920
|
-
.rdw-colorpicker-option:active {
|
|
2921
|
-
box-shadow: -1px -2px 1px #BFBDBD; }
|
|
2922
|
-
|
|
2923
|
-
.rdw-colorpicker-option-active {
|
|
2924
|
-
box-shadow: 0px 0px 2px 2px #BFBDBD; }
|
|
2925
|
-
|
|
2926
|
-
.rdw-link-wrapper {
|
|
2927
|
-
display: flex;
|
|
2928
|
-
align-items: center;
|
|
2929
|
-
margin-bottom: 6px;
|
|
2930
|
-
position: relative;
|
|
2931
|
-
flex-wrap: wrap; }
|
|
2932
|
-
|
|
2933
|
-
.rdw-link-dropdown {
|
|
2934
|
-
width: 50px; }
|
|
2935
|
-
|
|
2936
|
-
.rdw-link-dropdownOption {
|
|
2937
|
-
height: 40px;
|
|
2938
|
-
display: flex;
|
|
2939
|
-
justify-content: center; }
|
|
2940
|
-
|
|
2941
|
-
.rdw-link-dropdownPlaceholder {
|
|
2942
|
-
margin-left: 8px; }
|
|
2943
|
-
|
|
2944
|
-
.rdw-link-modal {
|
|
2945
|
-
position: absolute;
|
|
2946
|
-
top: 35px;
|
|
2947
|
-
left: 5px;
|
|
2948
|
-
display: flex;
|
|
2949
|
-
flex-direction: column;
|
|
2950
|
-
width: 235px;
|
|
2951
|
-
height: 205px;
|
|
2952
|
-
border: 1px solid #F1F1F1;
|
|
2953
|
-
padding: 15px;
|
|
2954
|
-
border-radius: 2px;
|
|
2955
|
-
z-index: 100;
|
|
2956
|
-
background: white;
|
|
2957
|
-
box-shadow: 3px 3px 5px #BFBDBD; }
|
|
2958
|
-
|
|
2959
|
-
.rdw-link-modal-label {
|
|
2960
|
-
font-size: 15px; }
|
|
2961
|
-
|
|
2962
|
-
.rdw-link-modal-input {
|
|
2963
|
-
margin-top: 5px;
|
|
2964
|
-
border-radius: 2px;
|
|
2965
|
-
border: 1px solid #F1F1F1;
|
|
2966
|
-
height: 25px;
|
|
2967
|
-
margin-bottom: 15px;
|
|
2968
|
-
padding: 0 5px; }
|
|
2969
|
-
|
|
2970
|
-
.rdw-link-modal-input:focus {
|
|
2971
|
-
outline: none; }
|
|
2972
|
-
|
|
2973
|
-
.rdw-link-modal-buttonsection {
|
|
2974
|
-
margin: 0 auto; }
|
|
2975
|
-
|
|
2976
|
-
.rdw-link-modal-target-option {
|
|
2977
|
-
margin-bottom: 20px; }
|
|
2978
|
-
|
|
2979
|
-
.rdw-link-modal-target-option > span {
|
|
2980
|
-
margin-left: 5px; }
|
|
2981
|
-
|
|
2982
|
-
.rdw-link-modal-btn {
|
|
2983
|
-
margin-left: 10px;
|
|
2984
|
-
width: 75px;
|
|
2985
|
-
height: 30px;
|
|
2986
|
-
border: 1px solid #F1F1F1;
|
|
2987
|
-
border-radius: 2px;
|
|
2988
|
-
cursor: pointer;
|
|
2989
|
-
background: white;
|
|
2990
|
-
text-transform: capitalize; }
|
|
2991
|
-
|
|
2992
|
-
.rdw-link-modal-btn:hover {
|
|
2993
|
-
box-shadow: 1px 1px 0px #BFBDBD; }
|
|
2994
|
-
|
|
2995
|
-
.rdw-link-modal-btn:active {
|
|
2996
|
-
box-shadow: 1px 1px 0px #BFBDBD inset; }
|
|
2997
|
-
|
|
2998
|
-
.rdw-link-modal-btn:focus {
|
|
2999
|
-
outline: none !important; }
|
|
3000
|
-
|
|
3001
|
-
.rdw-link-modal-btn:disabled {
|
|
3002
|
-
background: #ece9e9; }
|
|
3003
|
-
|
|
3004
|
-
.rdw-link-dropdownoption {
|
|
3005
|
-
height: 40px;
|
|
3006
|
-
display: flex;
|
|
3007
|
-
justify-content: center; }
|
|
3008
|
-
|
|
3009
|
-
.rdw-history-dropdown {
|
|
3010
|
-
width: 50px; }
|
|
3011
|
-
|
|
3012
|
-
.rdw-embedded-wrapper {
|
|
3013
|
-
display: flex;
|
|
3014
|
-
align-items: center;
|
|
3015
|
-
margin-bottom: 6px;
|
|
3016
|
-
position: relative;
|
|
3017
|
-
flex-wrap: wrap; }
|
|
3018
|
-
|
|
3019
|
-
.rdw-embedded-modal {
|
|
3020
|
-
position: absolute;
|
|
3021
|
-
top: 35px;
|
|
3022
|
-
left: 5px;
|
|
3023
|
-
display: flex;
|
|
3024
|
-
flex-direction: column;
|
|
3025
|
-
width: 235px;
|
|
3026
|
-
height: 180px;
|
|
3027
|
-
border: 1px solid #F1F1F1;
|
|
3028
|
-
padding: 15px;
|
|
3029
|
-
border-radius: 2px;
|
|
3030
|
-
z-index: 100;
|
|
3031
|
-
background: white;
|
|
3032
|
-
justify-content: space-between;
|
|
3033
|
-
box-shadow: 3px 3px 5px #BFBDBD; }
|
|
3034
|
-
|
|
3035
|
-
.rdw-embedded-modal-header {
|
|
3036
|
-
font-size: 15px;
|
|
3037
|
-
display: flex; }
|
|
3038
|
-
|
|
3039
|
-
.rdw-embedded-modal-header-option {
|
|
3040
|
-
width: 50%;
|
|
3041
|
-
cursor: pointer;
|
|
3042
|
-
display: flex;
|
|
3043
|
-
justify-content: center;
|
|
3044
|
-
align-items: center;
|
|
3045
|
-
flex-direction: column; }
|
|
3046
|
-
|
|
3047
|
-
.rdw-embedded-modal-header-label {
|
|
3048
|
-
width: 95px;
|
|
3049
|
-
border: 1px solid #f1f1f1;
|
|
3050
|
-
margin-top: 5px;
|
|
3051
|
-
background: #6EB8D4;
|
|
3052
|
-
border-bottom: 2px solid #0a66b7; }
|
|
3053
|
-
|
|
3054
|
-
.rdw-embedded-modal-link-section {
|
|
3055
|
-
display: flex;
|
|
3056
|
-
flex-direction: column; }
|
|
3057
|
-
|
|
3058
|
-
.rdw-embedded-modal-link-input {
|
|
3059
|
-
width: 88%;
|
|
3060
|
-
height: 35px;
|
|
3061
|
-
margin: 10px 0;
|
|
3062
|
-
border: 1px solid #F1F1F1;
|
|
3063
|
-
border-radius: 2px;
|
|
3064
|
-
font-size: 15px;
|
|
3065
|
-
padding: 0 5px; }
|
|
3066
|
-
|
|
3067
|
-
.rdw-embedded-modal-link-input-wrapper {
|
|
3068
|
-
display: flex;
|
|
3069
|
-
align-items: center; }
|
|
3070
|
-
|
|
3071
|
-
.rdw-embedded-modal-link-input:focus {
|
|
3072
|
-
outline: none; }
|
|
3073
|
-
|
|
3074
|
-
.rdw-embedded-modal-btn-section {
|
|
3075
|
-
display: flex;
|
|
3076
|
-
justify-content: center; }
|
|
3077
|
-
|
|
3078
|
-
.rdw-embedded-modal-btn {
|
|
3079
|
-
margin: 0 3px;
|
|
3080
|
-
width: 75px;
|
|
3081
|
-
height: 30px;
|
|
3082
|
-
border: 1px solid #F1F1F1;
|
|
3083
|
-
border-radius: 2px;
|
|
3084
|
-
cursor: pointer;
|
|
3085
|
-
background: white;
|
|
3086
|
-
text-transform: capitalize; }
|
|
3087
|
-
|
|
3088
|
-
.rdw-embedded-modal-btn:hover {
|
|
3089
|
-
box-shadow: 1px 1px 0px #BFBDBD; }
|
|
3090
|
-
|
|
3091
|
-
.rdw-embedded-modal-btn:active {
|
|
3092
|
-
box-shadow: 1px 1px 0px #BFBDBD inset; }
|
|
3093
|
-
|
|
3094
|
-
.rdw-embedded-modal-btn:focus {
|
|
3095
|
-
outline: none !important; }
|
|
3096
|
-
|
|
3097
|
-
.rdw-embedded-modal-btn:disabled {
|
|
3098
|
-
background: #ece9e9; }
|
|
3099
|
-
|
|
3100
|
-
.rdw-embedded-modal-size {
|
|
3101
|
-
align-items: center;
|
|
3102
|
-
display: flex;
|
|
3103
|
-
margin: 8px 0;
|
|
3104
|
-
justify-content: space-between; }
|
|
3105
|
-
|
|
3106
|
-
.rdw-embedded-modal-size-input {
|
|
3107
|
-
width: 80%;
|
|
3108
|
-
height: 20px;
|
|
3109
|
-
border: 1px solid #F1F1F1;
|
|
3110
|
-
border-radius: 2px;
|
|
3111
|
-
font-size: 12px; }
|
|
3112
|
-
|
|
3113
|
-
.rdw-embedded-modal-size-input:focus {
|
|
3114
|
-
outline: none; }
|
|
3115
|
-
|
|
3116
|
-
.rdw-emoji-wrapper {
|
|
3117
|
-
display: flex;
|
|
3118
|
-
align-items: center;
|
|
3119
|
-
margin-bottom: 6px;
|
|
3120
|
-
position: relative;
|
|
3121
|
-
flex-wrap: wrap; }
|
|
3122
|
-
|
|
3123
|
-
.rdw-emoji-modal {
|
|
3124
|
-
overflow: auto;
|
|
3125
|
-
position: absolute;
|
|
3126
|
-
top: 35px;
|
|
3127
|
-
left: 5px;
|
|
3128
|
-
display: flex;
|
|
3129
|
-
flex-wrap: wrap;
|
|
3130
|
-
width: 235px;
|
|
3131
|
-
height: 180px;
|
|
3132
|
-
border: 1px solid #F1F1F1;
|
|
3133
|
-
padding: 15px;
|
|
3134
|
-
border-radius: 2px;
|
|
3135
|
-
z-index: 100;
|
|
3136
|
-
background: white;
|
|
3137
|
-
box-shadow: 3px 3px 5px #BFBDBD; }
|
|
3138
|
-
|
|
3139
|
-
.rdw-emoji-icon {
|
|
3140
|
-
margin: 2.5px;
|
|
3141
|
-
height: 24px;
|
|
3142
|
-
width: 24px;
|
|
3143
|
-
cursor: pointer;
|
|
3144
|
-
font-size: 22px;
|
|
3145
|
-
display: flex;
|
|
3146
|
-
justify-content: center;
|
|
3147
|
-
align-items: center; }
|
|
3148
|
-
|
|
3149
|
-
.rdw-spinner {
|
|
3150
|
-
display: flex;
|
|
3151
|
-
align-items: center;
|
|
3152
|
-
justify-content: center;
|
|
3153
|
-
height: 100%;
|
|
3154
|
-
width: 100%; }
|
|
3155
|
-
|
|
3156
|
-
.rdw-spinner > div {
|
|
3157
|
-
width: 12px;
|
|
3158
|
-
height: 12px;
|
|
3159
|
-
background-color: #333;
|
|
3160
|
-
border-radius: 100%;
|
|
3161
|
-
display: inline-block;
|
|
3162
|
-
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
|
3163
|
-
animation: sk-bouncedelay 1.4s infinite ease-in-out both; }
|
|
3164
|
-
|
|
3165
|
-
.rdw-spinner .rdw-bounce1 {
|
|
3166
|
-
-webkit-animation-delay: -0.32s;
|
|
3167
|
-
animation-delay: -0.32s; }
|
|
3168
|
-
|
|
3169
|
-
.rdw-spinner .rdw-bounce2 {
|
|
3170
|
-
-webkit-animation-delay: -0.16s;
|
|
3171
|
-
animation-delay: -0.16s; }
|
|
3172
|
-
|
|
3173
|
-
@-webkit-keyframes sk-bouncedelay {
|
|
3174
|
-
0%, 80%, 100% {
|
|
3175
|
-
-webkit-transform: scale(0); }
|
|
3176
|
-
40% {
|
|
3177
|
-
-webkit-transform: scale(1); } }
|
|
3178
|
-
|
|
3179
|
-
@keyframes sk-bouncedelay {
|
|
3180
|
-
0%, 80%, 100% {
|
|
3181
|
-
transform: scale(0); }
|
|
3182
|
-
40% {
|
|
3183
|
-
transform: scale(1); } }
|
|
3184
|
-
|
|
3185
|
-
.rdw-image-wrapper {
|
|
3186
|
-
display: flex;
|
|
3187
|
-
align-items: center;
|
|
3188
|
-
margin-bottom: 6px;
|
|
3189
|
-
position: relative;
|
|
3190
|
-
flex-wrap: wrap; }
|
|
3191
|
-
|
|
3192
|
-
.rdw-image-modal {
|
|
3193
|
-
position: absolute;
|
|
3194
|
-
top: 35px;
|
|
3195
|
-
left: 5px;
|
|
3196
|
-
display: flex;
|
|
3197
|
-
flex-direction: column;
|
|
3198
|
-
width: 235px;
|
|
3199
|
-
border: 1px solid #F1F1F1;
|
|
3200
|
-
padding: 15px;
|
|
3201
|
-
border-radius: 2px;
|
|
3202
|
-
z-index: 100;
|
|
3203
|
-
background: white;
|
|
3204
|
-
box-shadow: 3px 3px 5px #BFBDBD; }
|
|
3205
|
-
|
|
3206
|
-
.rdw-image-modal-header {
|
|
3207
|
-
font-size: 15px;
|
|
3208
|
-
margin: 10px 0;
|
|
3209
|
-
display: flex; }
|
|
3210
|
-
|
|
3211
|
-
.rdw-image-modal-header-option {
|
|
3212
|
-
width: 50%;
|
|
3213
|
-
cursor: pointer;
|
|
3214
|
-
display: flex;
|
|
3215
|
-
justify-content: center;
|
|
3216
|
-
align-items: center;
|
|
3217
|
-
flex-direction: column; }
|
|
3218
|
-
|
|
3219
|
-
.rdw-image-modal-header-label {
|
|
3220
|
-
width: 80px;
|
|
3221
|
-
background: #f1f1f1;
|
|
3222
|
-
border: 1px solid #f1f1f1;
|
|
3223
|
-
margin-top: 5px; }
|
|
3224
|
-
|
|
3225
|
-
.rdw-image-modal-header-label-highlighted {
|
|
3226
|
-
background: #6EB8D4;
|
|
3227
|
-
border-bottom: 2px solid #0a66b7; }
|
|
3228
|
-
|
|
3229
|
-
.rdw-image-modal-upload-option {
|
|
3230
|
-
width: 100%;
|
|
3231
|
-
color: gray;
|
|
3232
|
-
cursor: pointer;
|
|
3233
|
-
display: flex;
|
|
3234
|
-
border: none;
|
|
3235
|
-
font-size: 15px;
|
|
3236
|
-
align-items: center;
|
|
3237
|
-
justify-content: center;
|
|
3238
|
-
background-color: #f1f1f1;
|
|
3239
|
-
outline: 2px dashed gray;
|
|
3240
|
-
outline-offset: -10px;
|
|
3241
|
-
margin: 10px 0;
|
|
3242
|
-
padding: 9px 0; }
|
|
3243
|
-
|
|
3244
|
-
.rdw-image-modal-upload-option-highlighted {
|
|
3245
|
-
outline: 2px dashed #0a66b7; }
|
|
3246
|
-
|
|
3247
|
-
.rdw-image-modal-upload-option-label {
|
|
3248
|
-
cursor: pointer;
|
|
3249
|
-
height: 100%;
|
|
3250
|
-
width: 100%;
|
|
3251
|
-
display: flex;
|
|
3252
|
-
justify-content: center;
|
|
3253
|
-
align-items: center;
|
|
3254
|
-
padding: 15px; }
|
|
3255
|
-
|
|
3256
|
-
.rdw-image-modal-upload-option-label span {
|
|
3257
|
-
padding: 0 20px; }
|
|
3258
|
-
|
|
3259
|
-
.rdw-image-modal-upload-option-image-preview {
|
|
3260
|
-
max-width: 100%;
|
|
3261
|
-
max-height: 200px; }
|
|
3262
|
-
|
|
3263
|
-
.rdw-image-modal-upload-option-input {
|
|
3264
|
-
width: 0.1px;
|
|
3265
|
-
height: 0.1px;
|
|
3266
|
-
opacity: 0;
|
|
3267
|
-
overflow: hidden;
|
|
3268
|
-
position: absolute;
|
|
3269
|
-
z-index: -1; }
|
|
3270
|
-
|
|
3271
|
-
.rdw-image-modal-url-section {
|
|
3272
|
-
display: flex;
|
|
3273
|
-
align-items: center; }
|
|
3274
|
-
|
|
3275
|
-
.rdw-image-modal-url-input {
|
|
3276
|
-
width: 90%;
|
|
3277
|
-
height: 35px;
|
|
3278
|
-
margin: 15px 0 12px;
|
|
3279
|
-
border: 1px solid #F1F1F1;
|
|
3280
|
-
border-radius: 2px;
|
|
3281
|
-
font-size: 15px;
|
|
3282
|
-
padding: 0 5px; }
|
|
3283
|
-
|
|
3284
|
-
.rdw-image-modal-btn-section {
|
|
3285
|
-
margin: 10px auto 0; }
|
|
3286
|
-
|
|
3287
|
-
.rdw-image-modal-url-input:focus {
|
|
3288
|
-
outline: none; }
|
|
3289
|
-
|
|
3290
|
-
.rdw-image-modal-btn {
|
|
3291
|
-
margin: 0 5px;
|
|
3292
|
-
width: 75px;
|
|
3293
|
-
height: 30px;
|
|
3294
|
-
border: 1px solid #F1F1F1;
|
|
3295
|
-
border-radius: 2px;
|
|
3296
|
-
cursor: pointer;
|
|
3297
|
-
background: white;
|
|
3298
|
-
text-transform: capitalize; }
|
|
3299
|
-
|
|
3300
|
-
.rdw-image-modal-btn:hover {
|
|
3301
|
-
box-shadow: 1px 1px 0px #BFBDBD; }
|
|
3302
|
-
|
|
3303
|
-
.rdw-image-modal-btn:active {
|
|
3304
|
-
box-shadow: 1px 1px 0px #BFBDBD inset; }
|
|
3305
|
-
|
|
3306
|
-
.rdw-image-modal-btn:focus {
|
|
3307
|
-
outline: none !important; }
|
|
3308
|
-
|
|
3309
|
-
.rdw-image-modal-btn:disabled {
|
|
3310
|
-
background: #ece9e9; }
|
|
3311
|
-
|
|
3312
|
-
.rdw-image-modal-spinner {
|
|
3313
|
-
position: absolute;
|
|
3314
|
-
top: -3px;
|
|
3315
|
-
left: 0;
|
|
3316
|
-
width: 100%;
|
|
3317
|
-
height: 100%;
|
|
3318
|
-
opacity: 0.5; }
|
|
3319
|
-
|
|
3320
|
-
.rdw-image-modal-alt-input {
|
|
3321
|
-
width: 70%;
|
|
3322
|
-
height: 20px;
|
|
3323
|
-
border: 1px solid #F1F1F1;
|
|
3324
|
-
border-radius: 2px;
|
|
3325
|
-
font-size: 12px;
|
|
3326
|
-
margin-left: 5px; }
|
|
3327
|
-
|
|
3328
|
-
.rdw-image-modal-alt-input:focus {
|
|
3329
|
-
outline: none; }
|
|
3330
|
-
|
|
3331
|
-
.rdw-image-modal-alt-lbl {
|
|
3332
|
-
font-size: 12px; }
|
|
3333
|
-
|
|
3334
|
-
.rdw-image-modal-size {
|
|
3335
|
-
align-items: center;
|
|
3336
|
-
display: flex;
|
|
3337
|
-
margin: 8px 0;
|
|
3338
|
-
justify-content: space-between; }
|
|
3339
|
-
|
|
3340
|
-
.rdw-image-modal-size-input {
|
|
3341
|
-
width: 40%;
|
|
3342
|
-
height: 20px;
|
|
3343
|
-
border: 1px solid #F1F1F1;
|
|
3344
|
-
border-radius: 2px;
|
|
3345
|
-
font-size: 12px; }
|
|
3346
|
-
|
|
3347
|
-
.rdw-image-modal-size-input:focus {
|
|
3348
|
-
outline: none; }
|
|
3349
|
-
|
|
3350
|
-
.rdw-image-mandatory-sign {
|
|
3351
|
-
color: red;
|
|
3352
|
-
margin-left: 3px;
|
|
3353
|
-
margin-right: 3px; }
|
|
3354
|
-
|
|
3355
|
-
.rdw-remove-wrapper {
|
|
3356
|
-
display: flex;
|
|
3357
|
-
align-items: center;
|
|
3358
|
-
margin-bottom: 6px;
|
|
3359
|
-
position: relative;
|
|
3360
|
-
flex-wrap: wrap; }
|
|
3361
|
-
|
|
3362
|
-
.rdw-history-wrapper {
|
|
3363
|
-
display: flex;
|
|
3364
|
-
align-items: center;
|
|
3365
|
-
margin-bottom: 6px;
|
|
3366
|
-
flex-wrap: wrap; }
|
|
3367
|
-
|
|
3368
|
-
.rdw-history-dropdownoption {
|
|
3369
|
-
height: 40px;
|
|
3370
|
-
display: flex;
|
|
3371
|
-
justify-content: center; }
|
|
3372
|
-
|
|
3373
|
-
.rdw-history-dropdown {
|
|
3374
|
-
width: 50px; }
|
|
3375
|
-
|
|
3376
|
-
.rdw-link-decorator-wrapper {
|
|
3377
|
-
position: relative; }
|
|
3378
|
-
|
|
3379
|
-
.rdw-link-decorator-icon {
|
|
3380
|
-
position: absolute;
|
|
3381
|
-
left: 40%;
|
|
3382
|
-
top: 0;
|
|
3383
|
-
cursor: pointer;
|
|
3384
|
-
background-color: white; }
|
|
3385
|
-
|
|
3386
|
-
.rdw-mention-link {
|
|
3387
|
-
text-decoration: none;
|
|
3388
|
-
color: #1236ff;
|
|
3389
|
-
background-color: #f0fbff;
|
|
3390
|
-
padding: 1px 2px;
|
|
3391
|
-
border-radius: 2px; }
|
|
3392
|
-
|
|
3393
|
-
.rdw-suggestion-wrapper {
|
|
3394
|
-
position: relative; }
|
|
3395
|
-
|
|
3396
|
-
.rdw-suggestion-dropdown {
|
|
3397
|
-
position: absolute;
|
|
3398
|
-
display: flex;
|
|
3399
|
-
flex-direction: column;
|
|
3400
|
-
border: 1px solid #F1F1F1;
|
|
3401
|
-
min-width: 100px;
|
|
3402
|
-
max-height: 150px;
|
|
3403
|
-
overflow: auto;
|
|
3404
|
-
background: white;
|
|
3405
|
-
z-index: 100; }
|
|
3406
|
-
|
|
3407
|
-
.rdw-suggestion-option {
|
|
3408
|
-
padding: 7px 5px;
|
|
3409
|
-
border-bottom: 1px solid #f1f1f1; }
|
|
3410
|
-
|
|
3411
|
-
.rdw-suggestion-option-active {
|
|
3412
|
-
background-color: #F1F1F1; }
|
|
3413
|
-
|
|
3414
|
-
.rdw-hashtag-link {
|
|
3415
|
-
text-decoration: none;
|
|
3416
|
-
color: #1236ff;
|
|
3417
|
-
background-color: #f0fbff;
|
|
3418
|
-
padding: 1px 2px;
|
|
3419
|
-
border-radius: 2px; }
|
|
3420
|
-
|
|
3421
|
-
.rdw-image-alignment-options-popup {
|
|
3422
|
-
position: absolute;
|
|
3423
|
-
background: white;
|
|
3424
|
-
display: flex;
|
|
3425
|
-
padding: 5px 2px;
|
|
3426
|
-
border-radius: 2px;
|
|
3427
|
-
border: 1px solid #F1F1F1;
|
|
3428
|
-
width: 105px;
|
|
3429
|
-
cursor: pointer;
|
|
3430
|
-
z-index: 100; }
|
|
3431
|
-
|
|
3432
|
-
.rdw-alignment-option-left {
|
|
3433
|
-
justify-content: flex-start; }
|
|
3434
|
-
|
|
3435
|
-
.rdw-image-alignment-option {
|
|
3436
|
-
height: 15px;
|
|
3437
|
-
width: 15px;
|
|
3438
|
-
min-width: 15px; }
|
|
3439
|
-
|
|
3440
|
-
.rdw-image-alignment {
|
|
3441
|
-
position: relative; }
|
|
3442
|
-
|
|
3443
|
-
.rdw-image-imagewrapper {
|
|
3444
|
-
position: relative; }
|
|
3445
|
-
|
|
3446
|
-
.rdw-image-center {
|
|
3447
|
-
display: flex;
|
|
3448
|
-
justify-content: center; }
|
|
3449
|
-
|
|
3450
|
-
.rdw-image-left {
|
|
3451
|
-
display: flex; }
|
|
3452
|
-
|
|
3453
|
-
.rdw-image-right {
|
|
3454
|
-
display: flex;
|
|
3455
|
-
justify-content: flex-end; }
|
|
3456
|
-
|
|
3457
|
-
.rdw-image-alignment-options-popup-right {
|
|
3458
|
-
right: 0; }
|
|
3459
|
-
|
|
3460
|
-
.rdw-editor-main {
|
|
3461
|
-
height: 100%;
|
|
3462
|
-
overflow: auto;
|
|
3463
|
-
box-sizing: border-box; }
|
|
3464
|
-
|
|
3465
|
-
.rdw-editor-toolbar {
|
|
3466
|
-
padding: 6px 5px 0;
|
|
3467
|
-
border-radius: 2px;
|
|
3468
|
-
border: 1px solid #F1F1F1;
|
|
3469
|
-
display: flex;
|
|
3470
|
-
justify-content: flex-start;
|
|
3471
|
-
background: white;
|
|
3472
|
-
flex-wrap: wrap;
|
|
3473
|
-
font-size: 15px;
|
|
3474
|
-
margin-bottom: 5px;
|
|
3475
|
-
-webkit-user-select: none;
|
|
3476
|
-
-moz-user-select: none;
|
|
3477
|
-
-ms-user-select: none;
|
|
3478
|
-
user-select: none; }
|
|
3479
|
-
|
|
3480
|
-
.public-DraftStyleDefault-block {
|
|
3481
|
-
margin: 1em 0; }
|
|
3482
|
-
|
|
3483
|
-
.rdw-editor-wrapper:focus {
|
|
3484
|
-
outline: none; }
|
|
3485
|
-
|
|
3486
|
-
.rdw-editor-wrapper {
|
|
3487
|
-
box-sizing: content-box; }
|
|
3488
|
-
|
|
3489
|
-
.rdw-editor-main blockquote {
|
|
3490
|
-
border-left: 5px solid #f1f1f1;
|
|
3491
|
-
padding-left: 5px; }
|
|
3492
|
-
|
|
3493
|
-
.rdw-editor-main pre {
|
|
3494
|
-
background: #f1f1f1;
|
|
3495
|
-
border-radius: 3px;
|
|
3496
|
-
padding: 1px 10px; }
|
|
3497
|
-
|
|
3498
|
-
/**
|
|
3499
|
-
* Draft v0.9.1
|
|
3500
|
-
*
|
|
3501
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
|
3502
|
-
* All rights reserved.
|
|
3503
|
-
*
|
|
3504
|
-
* This source code is licensed under the BSD-style license found in the
|
|
3505
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
|
3506
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3507
|
-
*/
|
|
3508
|
-
.DraftEditor-editorContainer, .DraftEditor-root, .public-DraftEditor-content {
|
|
3509
|
-
height: inherit;
|
|
3510
|
-
text-align: initial; }
|
|
3511
|
-
|
|
3512
|
-
.public-DraftEditor-content[contenteditable=true] {
|
|
3513
|
-
-webkit-user-modify: read-write-plaintext-only; }
|
|
3514
|
-
|
|
3515
|
-
.DraftEditor-root {
|
|
3516
|
-
position: relative; }
|
|
3517
|
-
|
|
3518
|
-
.DraftEditor-editorContainer {
|
|
3519
|
-
background-color: rgba(255, 255, 255, 0);
|
|
3520
|
-
border-left: .1px solid transparent;
|
|
3521
|
-
position: relative;
|
|
3522
|
-
z-index: 1; }
|
|
3523
|
-
|
|
3524
|
-
.public-DraftEditor-block {
|
|
3525
|
-
position: relative; }
|
|
3526
|
-
|
|
3527
|
-
.DraftEditor-alignLeft .public-DraftStyleDefault-block {
|
|
3528
|
-
text-align: left; }
|
|
3529
|
-
|
|
3530
|
-
.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root {
|
|
3531
|
-
left: 0;
|
|
3532
|
-
text-align: left; }
|
|
3533
|
-
|
|
3534
|
-
.DraftEditor-alignCenter .public-DraftStyleDefault-block {
|
|
3535
|
-
text-align: center; }
|
|
3536
|
-
|
|
3537
|
-
.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root {
|
|
3538
|
-
margin: 0 auto;
|
|
3539
|
-
text-align: center;
|
|
3540
|
-
width: 100%; }
|
|
3541
|
-
|
|
3542
|
-
.DraftEditor-alignRight .public-DraftStyleDefault-block {
|
|
3543
|
-
text-align: right; }
|
|
3544
|
-
|
|
3545
|
-
.DraftEditor-alignRight .public-DraftEditorPlaceholder-root {
|
|
3546
|
-
right: 0;
|
|
3547
|
-
text-align: right; }
|
|
3548
|
-
|
|
3549
|
-
.public-DraftEditorPlaceholder-root {
|
|
3550
|
-
color: #9197a3;
|
|
3551
|
-
position: absolute;
|
|
3552
|
-
z-index: 0; }
|
|
3553
|
-
|
|
3554
|
-
.public-DraftEditorPlaceholder-hasFocus {
|
|
3555
|
-
color: #bdc1c9; }
|
|
3556
|
-
|
|
3557
|
-
.DraftEditorPlaceholder-hidden {
|
|
3558
|
-
display: none; }
|
|
3559
|
-
|
|
3560
|
-
.public-DraftStyleDefault-block {
|
|
3561
|
-
position: relative;
|
|
3562
|
-
white-space: pre-wrap; }
|
|
3563
|
-
|
|
3564
|
-
.public-DraftStyleDefault-ltr {
|
|
3565
|
-
direction: ltr;
|
|
3566
|
-
text-align: left; }
|
|
3567
|
-
|
|
3568
|
-
.public-DraftStyleDefault-rtl {
|
|
3569
|
-
direction: rtl;
|
|
3570
|
-
text-align: right; }
|
|
3571
|
-
|
|
3572
|
-
.public-DraftStyleDefault-listLTR {
|
|
3573
|
-
direction: ltr; }
|
|
3574
|
-
|
|
3575
|
-
.public-DraftStyleDefault-listRTL {
|
|
3576
|
-
direction: rtl; }
|
|
3577
|
-
|
|
3578
|
-
.public-DraftStyleDefault-ol, .public-DraftStyleDefault-ul {
|
|
3579
|
-
margin: 16px 0;
|
|
3580
|
-
padding: 0; }
|
|
3581
|
-
|
|
3582
|
-
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR {
|
|
3583
|
-
margin-left: 1.5em; }
|
|
3584
|
-
|
|
3585
|
-
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL {
|
|
3586
|
-
margin-right: 1.5em; }
|
|
3587
|
-
|
|
3588
|
-
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR {
|
|
3589
|
-
margin-left: 3em; }
|
|
3590
|
-
|
|
3591
|
-
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL {
|
|
3592
|
-
margin-right: 3em; }
|
|
3593
|
-
|
|
3594
|
-
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR {
|
|
3595
|
-
margin-left: 4.5em; }
|
|
3596
|
-
|
|
3597
|
-
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL {
|
|
3598
|
-
margin-right: 4.5em; }
|
|
3599
|
-
|
|
3600
|
-
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR {
|
|
3601
|
-
margin-left: 6em; }
|
|
3602
|
-
|
|
3603
|
-
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL {
|
|
3604
|
-
margin-right: 6em; }
|
|
3605
|
-
|
|
3606
|
-
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR {
|
|
3607
|
-
margin-left: 7.5em; }
|
|
3608
|
-
|
|
3609
|
-
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL {
|
|
3610
|
-
margin-right: 7.5em; }
|
|
3611
|
-
|
|
3612
|
-
.public-DraftStyleDefault-unorderedListItem {
|
|
3613
|
-
list-style-type: square;
|
|
3614
|
-
position: relative; }
|
|
3615
|
-
|
|
3616
|
-
.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0 {
|
|
3617
|
-
list-style-type: disc; }
|
|
3618
|
-
|
|
3619
|
-
.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1 {
|
|
3620
|
-
list-style-type: circle; }
|
|
3621
|
-
|
|
3622
|
-
.public-DraftStyleDefault-orderedListItem {
|
|
3623
|
-
list-style-type: none;
|
|
3624
|
-
position: relative; }
|
|
3625
|
-
|
|
3626
|
-
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before {
|
|
3627
|
-
left: -36px;
|
|
3628
|
-
position: absolute;
|
|
3629
|
-
text-align: right;
|
|
3630
|
-
width: 30px; }
|
|
3631
|
-
|
|
3632
|
-
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before {
|
|
3633
|
-
position: absolute;
|
|
3634
|
-
right: -36px;
|
|
3635
|
-
text-align: left;
|
|
3636
|
-
width: 30px; }
|
|
3637
|
-
|
|
3638
|
-
.public-DraftStyleDefault-orderedListItem:before {
|
|
3639
|
-
content: counter(ol0) ". ";
|
|
3640
|
-
counter-increment: ol0; }
|
|
3641
|
-
|
|
3642
|
-
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before {
|
|
3643
|
-
content: counter(ol1) ". ";
|
|
3644
|
-
counter-increment: ol1; }
|
|
3645
|
-
|
|
3646
|
-
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before {
|
|
3647
|
-
content: counter(ol2) ". ";
|
|
3648
|
-
counter-increment: ol2; }
|
|
3649
|
-
|
|
3650
|
-
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before {
|
|
3651
|
-
content: counter(ol3) ". ";
|
|
3652
|
-
counter-increment: ol3; }
|
|
3653
|
-
|
|
3654
|
-
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before {
|
|
3655
|
-
content: counter(ol4) ". ";
|
|
3656
|
-
counter-increment: ol4; }
|
|
3657
|
-
|
|
3658
|
-
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset {
|
|
3659
|
-
counter-reset: ol0; }
|
|
3660
|
-
|
|
3661
|
-
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset {
|
|
3662
|
-
counter-reset: ol1; }
|
|
3663
|
-
|
|
3664
|
-
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset {
|
|
3665
|
-
counter-reset: ol2; }
|
|
3666
|
-
|
|
3667
|
-
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset {
|
|
3668
|
-
counter-reset: ol3; }
|
|
3669
|
-
|
|
3670
|
-
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset {
|
|
3671
|
-
counter-reset: ol4; }
|
|
3672
|
-
|
|
3673
|
-
.video-js .cv-annotation .public-DraftStyleDefault-block {
|
|
3674
|
-
margin: 0; }
|
|
3675
|
-
|
|
3676
|
-
.video-js .Editor--hide-placeholder .public-DraftEditorPlaceholder-root {
|
|
3677
|
-
display: none; }
|
|
3678
|
-
|
|
3679
|
-
.video-js img.rdw-link-decorator-icon {
|
|
3680
|
-
display: none; }
|
|
3681
|
-
|
|
3682
|
-
.video-js .cv-annotation-editor {
|
|
3683
|
-
min-height: 10rem; }
|
|
3684
|
-
|
|
3685
|
-
.video-js .cv-annotation-toolbar {
|
|
3686
|
-
background: none;
|
|
3687
|
-
border: none; }
|
|
3688
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option {
|
|
3689
|
-
background: none;
|
|
3690
|
-
border: none;
|
|
3691
|
-
box-shadow: none;
|
|
3692
|
-
font-size: 1.5rem;
|
|
3693
|
-
margin: 0;
|
|
3694
|
-
padding: 0;
|
|
3695
|
-
padding-right: 0.3125rem; }
|
|
3696
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option:hover {
|
|
3697
|
-
box-shadow: none; }
|
|
3698
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option[aria-selected="true"] {
|
|
3699
|
-
color: #F8981D; }
|
|
3700
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option.cv-annotation-bold::before {
|
|
3701
|
-
font-family: CVPlayer;
|
|
3702
|
-
content: "\f110"; }
|
|
3703
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option.cv-annotation-italic::before {
|
|
3704
|
-
font-family: CVPlayer;
|
|
3705
|
-
content: "\f111"; }
|
|
3706
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option.cv-annotation-underline::before {
|
|
3707
|
-
font-family: CVPlayer;
|
|
3708
|
-
content: "\f112"; }
|
|
3709
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option.cv-annotation-superscript::before {
|
|
3710
|
-
font-family: CVPlayer;
|
|
3711
|
-
content: "\f113"; }
|
|
3712
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option.cv-annotation-subscript::before {
|
|
3713
|
-
font-family: CVPlayer;
|
|
3714
|
-
content: "\f114"; }
|
|
3715
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option.cv-annotation-bullet-list::before {
|
|
3716
|
-
font-family: CVPlayer;
|
|
3717
|
-
content: "\f115"; }
|
|
3718
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option.cv-annotation-number-list::before {
|
|
3719
|
-
font-family: CVPlayer;
|
|
3720
|
-
content: "\f116"; }
|
|
3721
|
-
.video-js .cv-annotation-toolbar .cv-annotation-toolbar-option.cv-annotation-link::before {
|
|
3722
|
-
font-family: CVPlayer;
|
|
3723
|
-
content: "\f117"; }
|
|
3724
|
-
|
|
3725
|
-
.video-js .cv-image-container {
|
|
3726
|
-
margin: 0 auto; }
|
|
3727
|
-
.video-js .cv-image-container img {
|
|
3728
|
-
max-height: 300px; }
|
|
3729
|
-
|
|
3730
|
-
.video-js .cv-missing-word-input-container {
|
|
3731
|
-
padding: 4px;
|
|
3732
|
-
border: 1px solid #B5B5B5;
|
|
3733
|
-
border-radius: 0.25rem;
|
|
3734
|
-
display: inline-block;
|
|
3735
|
-
background-color: #fff; }
|
|
3736
|
-
|
|
3737
|
-
.video-js .cv-missing-word-input {
|
|
3738
|
-
background-color: rgba(0, 0, 0, 0);
|
|
3739
|
-
border: 1px solid rgba(0, 0, 0, 0);
|
|
3740
|
-
border-bottom: 1px solid #B5B5B5;
|
|
3741
|
-
outline: 0; }
|
|
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
|
-
|
|
3753
|
-
.video-js .cv-multiple-choice-label-container {
|
|
3754
|
-
padding: 0.625rem; }
|
|
3755
|
-
|
|
3756
|
-
.video-js .cv-multiple-choice-input-container {
|
|
3757
|
-
padding: 0.625rem 1.875rem; }
|
|
3758
|
-
|
|
3759
|
-
.video-js .cv-multiple-choice-incorrect {
|
|
3760
|
-
opacity: 0.5; }
|
|
3761
|
-
|
|
3762
|
-
.video-js .cv-multiple-choice-label {
|
|
3763
|
-
line-height: 20px; }
|
|
3764
|
-
|
|
3765
|
-
.video-js .cv-multiple-choice-bullet {
|
|
3766
|
-
width: 20px;
|
|
3767
|
-
height: 20px; }
|
|
3768
|
-
|
|
3769
|
-
.video-js .cv-multiple-choice-form .table-bordered td {
|
|
3770
|
-
border: 1px solid #B5B5B5;
|
|
3771
|
-
text-align: left;
|
|
3772
|
-
vertical-align: middle; }
|
|
3773
|
-
|
|
3774
|
-
.video-js .cv-multiple-choice-form label {
|
|
3775
|
-
margin-bottom: 0; }
|
|
3776
|
-
|
|
3777
|
-
.video-js .cv-multiple-choice-form .custom-checkbox .custom-control-input ~ .custom-control-label::before {
|
|
3778
|
-
border-color: #B5B5B5; }
|
|
3779
|
-
|
|
3780
|
-
.video-js .cv-multiple-choice-form .custom-radio .custom-control-input ~ .custom-control-label::before {
|
|
3781
|
-
border-color: #B5B5B5; }
|
|
3782
|
-
|
|
3783
|
-
.video-js .cv-multiple-choice-form .custom-control-input:focus ~ .custom-control-label::before {
|
|
3784
|
-
box-shadow: none; }
|
|
3785
|
-
|
|
3786
|
-
.video-js .cv-multiple-choice-form .custom-control-input:disabled ~ .custom-control-label::before {
|
|
3787
|
-
background-color: transparent; }
|
|
3788
|
-
|
|
3789
|
-
.video-js .cv-multiple-choice-form .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
|
|
3790
|
-
border-color: #B5B5B5;
|
|
3791
|
-
background-color: transparent; }
|
|
3792
|
-
|
|
3793
|
-
.video-js .cv-multiple-choice-form .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::after {
|
|
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"); }
|
|
3795
|
-
|
|
3796
|
-
.video-js .cv-true-or-false-feedback {
|
|
3797
|
-
top: 0;
|
|
3798
|
-
left: 0; }
|
|
3799
|
-
|
|
3800
|
-
.video-js .cv-true-or-false-avatar {
|
|
3801
|
-
bottom: 0;
|
|
3802
|
-
right: 0; }
|
|
3803
|
-
|
|
3804
|
-
.video-js .cv-timepoint {
|
|
3805
|
-
justify-content: space-between;
|
|
3806
|
-
flex-direction: column;
|
|
3807
|
-
display: flex; }
|
|
3808
|
-
|
|
3809
|
-
.video-js .cv-timepoint-padding {
|
|
3810
|
-
padding: 1.25rem; }
|
|
3811
|
-
|
|
3812
|
-
.video-js .cv-timpoint-button-container {
|
|
3813
|
-
justify-content: flex-end;
|
|
3814
|
-
display: flex;
|
|
3815
|
-
padding: 1.25rem;
|
|
3816
|
-
padding-top: 0; }
|
|
3817
|
-
|
|
3818
|
-
.video-js .cv-interaction-title {
|
|
3819
|
-
position: relative;
|
|
3820
|
-
margin: 0;
|
|
3821
|
-
display: inline-block;
|
|
3822
|
-
vertical-align: middle;
|
|
3823
|
-
width: calc(100% - 50px);
|
|
3824
|
-
font-weight: 700; }
|
|
3825
|
-
|
|
3826
|
-
.video-js .cv-iteraction-icon {
|
|
3827
|
-
display: inline-block;
|
|
3828
|
-
width: 50.5px;
|
|
3829
|
-
height: 50.5px;
|
|
3830
|
-
margin-right: 1.25rem;
|
|
3831
|
-
vertical-align: middle;
|
|
3832
|
-
background-size: contain; }
|
|
3833
|
-
|
|
3834
|
-
.video-js .cv-interaction-heading {
|
|
3835
|
-
color: #313543; }
|
|
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; }
|
|
3863
|
-
|
|
3864
|
-
.cv--time--3B2vs {
|
|
3865
|
-
vertical-align: top;
|
|
3866
|
-
display: inline-block;
|
|
3867
|
-
width: 3.5rem; }
|
|
3868
|
-
|
|
3869
|
-
.cv--typeIcon--3MSul {
|
|
3870
|
-
width: 1.5625rem;
|
|
3871
|
-
height: 1.5625rem;
|
|
3872
|
-
display: inline-block;
|
|
3873
|
-
background-size: contain;
|
|
3874
|
-
border-radius: 3px;
|
|
3875
|
-
margin: 0 0.625rem;
|
|
3876
|
-
vertical-align: top;
|
|
3877
|
-
color: #fff; }
|
|
3878
|
-
|
|
3879
|
-
.cv--type--3lYII {
|
|
3880
|
-
vertical-align: top;
|
|
3881
|
-
width: 8rem;
|
|
3882
|
-
display: inline-block; }
|
|
3883
|
-
|
|
3884
|
-
.cv--question--3WHlt {
|
|
3885
|
-
vertical-align: top;
|
|
3886
|
-
width: calc(100% - 16.0625rem);
|
|
3887
|
-
display: inline-block; }
|
|
3888
|
-
|
|
3889
|
-
.cv--delete--_4TtZ {
|
|
3890
|
-
width: 1.75rem;
|
|
3891
|
-
display: none; }
|
|
3892
|
-
|
|
3893
|
-
.cv--row--3uCfp {
|
|
3894
|
-
min-height: 3rem; }
|
|
3895
|
-
.cv--row--3uCfp:hover .cv--delete--_4TtZ {
|
|
3896
|
-
display: inline-block; }
|
|
3897
|
-
|
|
3898
|
-
.video-js .cv-interactive {
|
|
3899
|
-
position: absolute;
|
|
3900
|
-
top: 0;
|
|
3901
|
-
right: -100%;
|
|
3902
|
-
bottom: 0;
|
|
3903
|
-
width: 55%;
|
|
3904
|
-
background-color: rgba(255, 255, 255, 0.97);
|
|
3905
|
-
transition: right 600ms;
|
|
3906
|
-
z-index: 5; }
|
|
3907
|
-
.video-js .cv-interactive .simplebar-scrollbar::before {
|
|
3908
|
-
background-color: #313543; }
|
|
3909
|
-
.video-js .cv-interactive .simplebar-content {
|
|
3910
|
-
height: 100%; }
|
|
3911
|
-
|
|
3912
|
-
.video-js .cv-open {
|
|
3913
|
-
right: 0; }
|
|
3914
|
-
|
|
3915
|
-
.video-js .cv-timpoint-button-container .cv-interactive-spinner {
|
|
3916
|
-
min-width: 58px; }
|
|
3917
|
-
|
|
3918
|
-
.video-js .cv-add-question {
|
|
3919
|
-
position: absolute;
|
|
3920
|
-
top: 1.25rem;
|
|
3921
|
-
right: 1.25rem; }
|
|
3922
|
-
|
|
3923
|
-
.video-js.cv-interactive-plugin {
|
|
3924
|
-
overflow: hidden; }
|
|
3925
|
-
|
|
3926
|
-
.video-js .cv-interaction-field-label {
|
|
3927
|
-
font-size: 0.875rem;
|
|
3928
|
-
font-weight: 600; }
|
|
3929
|
-
|
|
3930
|
-
.video-js .cv-interactive-question {
|
|
3931
|
-
color: #313543;
|
|
3932
|
-
font-size: 1rem; }
|
|
3933
|
-
|
|
3934
|
-
.video-js .cv-avatar-container {
|
|
3935
|
-
width: 2.1875rem;
|
|
3936
|
-
height: 2.1875rem;
|
|
3937
|
-
position: absolute;
|
|
3938
|
-
right: 0.625rem;
|
|
3939
|
-
top: 50%;
|
|
3940
|
-
transform: translateY(-50%); }
|
|
3941
|
-
.video-js .cv-avatar-container.cv-avatar-bottom-right {
|
|
3942
|
-
top: auto;
|
|
3943
|
-
bottom: 0.625rem;
|
|
3944
|
-
transform: none; }
|
|
3945
|
-
|
|
3946
|
-
@media (min-width: 1201px) {
|
|
3947
|
-
.video-js.cv-interactive-plugin {
|
|
3948
|
-
overflow: visible; }
|
|
3949
|
-
.video-js.cv-create-interactives {
|
|
3950
|
-
width: 70%;
|
|
3951
|
-
padding-top: 39.375%; }
|
|
3952
|
-
.video-js.cv-create-interactives .cv-add-question,
|
|
3953
|
-
.video-js.cv-create-interactives .cv-adding-first-cancel {
|
|
3954
|
-
display: none; }
|
|
3955
|
-
.video-js.cv-create-interactives .cv-interactive {
|
|
3956
|
-
transition: none;
|
|
3957
|
-
right: -42.85714%;
|
|
3958
|
-
width: 42.85714%;
|
|
3959
|
-
background-color: #f8f8f8; } }
|
|
2651
|
+
.video-js.vjs-has-started.vjs-user-inactive.vjs-playing .cv-favourite-button {
|
|
2652
|
+
opacity: 0; }
|
|
3960
2653
|
|
|
3961
2654
|
.cv-clip-timepoint-selector {
|
|
3962
2655
|
position: relative;
|