@gcorevideo/player 2.25.4 → 2.25.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/audio-tracks/style.scss +1 -14
- package/assets/bottom-gear/gear.scss +40 -38
- package/assets/media-control/media-control.scss +260 -305
- package/assets/media-control/width270.scss +3 -2
- package/assets/media-control/width370.scss +8 -6
- package/assets/multi-camera/style.scss +9 -19
- package/assets/picture-in-picture/style.scss +14 -0
- package/assets/subtitles/style.scss +108 -68
- package/dist/core.js +1 -1
- package/dist/index.css +535 -572
- package/dist/index.embed.js +53 -51
- package/dist/index.js +124 -122
- package/lib/plugins/clips/Clips.d.ts.map +1 -1
- package/lib/plugins/clips/Clips.js +2 -4
- package/lib/plugins/picture-in-picture/PictureInPicture.d.ts +1 -1
- package/lib/plugins/picture-in-picture/PictureInPicture.d.ts.map +1 -1
- package/lib/plugins/picture-in-picture/PictureInPicture.js +1 -1
- package/lib/plugins/seek-time/SeekTime.d.ts.map +1 -1
- package/lib/plugins/seek-time/SeekTime.js +7 -2
- package/package.json +1 -1
- package/src/plugins/clips/Clips.ts +3 -5
- package/src/plugins/picture-in-picture/PictureInPicture.ts +1 -1
- package/src/plugins/seek-time/SeekTime.ts +7 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/assets/picture-in-picture/button.scss +0 -12
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
border-radius: 4px;
|
|
55
55
|
bottom: 40px;
|
|
56
56
|
right: -2px;
|
|
57
|
+
|
|
57
58
|
&.hidden {
|
|
58
59
|
display: none;
|
|
59
60
|
}
|
|
@@ -107,18 +108,4 @@
|
|
|
107
108
|
}
|
|
108
109
|
}
|
|
109
110
|
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
@keyframes pulse {
|
|
113
|
-
0% {
|
|
114
|
-
color: #fff;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
50% {
|
|
118
|
-
color: #ff0101
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
100% {
|
|
122
|
-
color: #B80000;
|
|
123
|
-
}
|
|
124
111
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
.media-control-skin-1
|
|
2
|
-
.media-control-gear {
|
|
1
|
+
.media-control-skin-1 {
|
|
2
|
+
.gplayer-mc-panel-item.media-control-gear {
|
|
3
3
|
order: 99;
|
|
4
4
|
height: 20px;
|
|
5
5
|
|
|
@@ -12,45 +12,47 @@
|
|
|
12
12
|
min-height: 48px;
|
|
13
13
|
z-index: 9999;
|
|
14
14
|
border-radius: 4px;
|
|
15
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.gear-options-list {
|
|
19
|
+
padding: 8px 0;
|
|
20
|
+
}
|
|
15
21
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
visibility: hidden;
|
|
36
|
-
display: inline-block;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
&_label {
|
|
41
|
-
flex: 0 1 100%;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
&_arrow-right-icon {
|
|
45
|
-
flex: 0 0 14px;
|
|
46
|
-
height: 24px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
&_value {
|
|
50
|
-
flex: 1 0 auto;
|
|
51
|
-
}
|
|
22
|
+
.gear-option {
|
|
23
|
+
margin: 0;
|
|
24
|
+
text-align: left;
|
|
25
|
+
line-height: 22px;
|
|
26
|
+
padding: 5px 14px;
|
|
27
|
+
width: 250px;
|
|
28
|
+
font-size: 12px;
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
justify-content: flex-start;
|
|
32
|
+
gap: 8px;
|
|
33
|
+
|
|
34
|
+
&_icon {
|
|
35
|
+
flex: 24px 0 0;
|
|
36
|
+
height: 24px;
|
|
37
|
+
|
|
38
|
+
&.hidden {
|
|
39
|
+
visibility: hidden;
|
|
40
|
+
display: inline-block;
|
|
52
41
|
}
|
|
53
42
|
}
|
|
43
|
+
|
|
44
|
+
&_label {
|
|
45
|
+
flex: 0 1 100%;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&_arrow-right-icon {
|
|
49
|
+
flex: 0 0 14px;
|
|
50
|
+
height: 24px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&_value {
|
|
54
|
+
flex: 1 0 auto;
|
|
55
|
+
}
|
|
54
56
|
}
|
|
55
57
|
}
|
|
56
58
|
}
|