@gcorevideo/player 2.26.4 → 2.26.6
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/assets/media-control/media-control.ejs +3 -3
- package/assets/media-control/media-control.scss +1 -6
- package/dist/core.js +432 -432
- package/dist/index.css +946 -950
- package/dist/index.embed.js +440 -455
- package/dist/index.js +440 -455
- package/lib/plugins/seek-time/SeekTime.d.ts.map +1 -1
- package/lib/plugins/seek-time/SeekTime.js +4 -8
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +0 -11
- package/package.json +1 -1
- package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +6 -6
- package/src/plugins/seek-time/SeekTime.ts +4 -12
- package/src/plugins/source-controller/SourceController.ts +0 -11
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
<div class="bar-fill-2 gcore-skin-main-color" data-<%= name %>></div>
|
|
9
9
|
<div class="bar-hover" data-<%= name %>></div>
|
|
10
10
|
</div>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
<div class="bar-scrubber" data-<%= name %>>
|
|
12
|
+
<div class="bar-scrubber-icon gcore-skin-main-color" data-<%= name %>></div>
|
|
13
|
+
</div>
|
|
14
14
|
</div>
|
|
15
15
|
<% }; %>
|
|
16
16
|
<% var renderSegmentedBar = function(name, segments) {
|
|
@@ -256,15 +256,10 @@
|
|
|
256
256
|
}
|
|
257
257
|
}
|
|
258
258
|
|
|
259
|
-
.bar-container[data-seekbar].seek-disabled+.bar-scrubber[data-seekbar] {
|
|
260
|
-
cursor: default;
|
|
261
|
-
display: none;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
259
|
.bar-scrubber[data-seekbar] {
|
|
265
260
|
position: absolute;
|
|
266
261
|
transform: translateX(-50%);
|
|
267
|
-
top:
|
|
262
|
+
top: 0;
|
|
268
263
|
left: 0;
|
|
269
264
|
width: 20px;
|
|
270
265
|
height: 20px;
|