@gcorevideo/player 2.25.5 → 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 -301
- package/assets/media-control/width270.scss +3 -2
- package/assets/media-control/width370.scss +1 -1
- 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 +1364 -1396
- package/dist/index.embed.js +6 -6
- package/dist/index.js +1 -1
- 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/package.json +1 -1
- package/src/plugins/picture-in-picture/PictureInPicture.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/assets/picture-in-picture/button.scss +0 -12
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
*,
|
|
1
|
+
*,
|
|
2
|
+
:focus,
|
|
3
|
+
:visited {
|
|
2
4
|
outline: none !important;
|
|
3
5
|
}
|
|
4
6
|
|
|
@@ -40,7 +42,7 @@
|
|
|
40
42
|
}
|
|
41
43
|
}
|
|
42
44
|
|
|
43
|
-
|
|
45
|
+
&>ul {
|
|
44
46
|
padding: 6px 0;
|
|
45
47
|
right: -24px;
|
|
46
48
|
width: 245px;
|
|
@@ -91,7 +93,8 @@
|
|
|
91
93
|
pointer-events: none;
|
|
92
94
|
}
|
|
93
95
|
|
|
94
|
-
&:hover,
|
|
96
|
+
&:hover,
|
|
97
|
+
&.multicamera-active {
|
|
95
98
|
background-color: rgb(0 0 0 / 30%);
|
|
96
99
|
}
|
|
97
100
|
|
|
@@ -110,7 +113,8 @@
|
|
|
110
113
|
text-align: left;
|
|
111
114
|
margin-left: 15px;
|
|
112
115
|
|
|
113
|
-
.multicamera-title,
|
|
116
|
+
.multicamera-title,
|
|
117
|
+
.multicamera-description {
|
|
114
118
|
width: 120px;
|
|
115
119
|
height: 20px;
|
|
116
120
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
@@ -159,18 +163,4 @@
|
|
|
159
163
|
}
|
|
160
164
|
|
|
161
165
|
}
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
@keyframes pulse {
|
|
165
|
-
0% {
|
|
166
|
-
color: #fff;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
50% {
|
|
170
|
-
color: #ff0101
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
100% {
|
|
174
|
-
color: #B80000;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
166
|
+
}
|
|
@@ -1,91 +1,131 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
order: 85;
|
|
10
|
-
|
|
11
|
-
button {
|
|
12
|
-
background-color: transparent;
|
|
13
|
-
color: #fff;
|
|
14
|
-
-webkit-font-smoothing: antialiased;
|
|
15
|
-
border: none;
|
|
16
|
-
cursor: pointer;
|
|
1
|
+
.media-control-skin-1 {
|
|
2
|
+
.media-control-cc {
|
|
3
|
+
button.media-control-button {
|
|
4
|
+
display: flex;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
padding: 0;
|
|
7
|
+
align-items: center;
|
|
8
|
+
vertical-align: top;
|
|
17
9
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
fill: white;
|
|
10
|
+
&:hover {
|
|
11
|
+
color: white;
|
|
21
12
|
}
|
|
22
13
|
}
|
|
23
14
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
15
|
+
ul {
|
|
16
|
+
// TODO extract common styles
|
|
17
|
+
width: auto;
|
|
18
|
+
border-radius: 4px;
|
|
19
|
+
bottom: 52px;
|
|
20
|
+
margin-left: -28px;
|
|
21
|
+
|
|
22
|
+
li {
|
|
23
|
+
font-size: 16px;
|
|
24
|
+
text-align: center;
|
|
25
|
+
white-space: nowrap;
|
|
26
|
+
height: 30px;
|
|
27
|
+
|
|
28
|
+
a {
|
|
29
|
+
height: 30px;
|
|
30
|
+
padding: 5px 10px;
|
|
31
|
+
color: #fffffe;
|
|
32
|
+
|
|
33
|
+
&:hover {
|
|
34
|
+
background-color: rgb(0 0 0 / 40%);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.current a {
|
|
39
|
+
background-color: rgb(0 0 0 / 40%);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&:first-child {
|
|
43
|
+
a {
|
|
44
|
+
border-bottom-left-radius: 4px;
|
|
45
|
+
border-bottom-right-radius: 4px;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
27
48
|
|
|
28
|
-
|
|
29
|
-
|
|
49
|
+
&:last-child {
|
|
50
|
+
a {
|
|
51
|
+
border-top-left-radius: 4px;
|
|
52
|
+
border-top-right-radius: 4px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
30
56
|
}
|
|
31
57
|
}
|
|
32
58
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
position: absolute;
|
|
37
|
-
bottom: 25px;
|
|
38
|
-
border: 1px solid black;
|
|
39
|
-
background-color: #e6e6e6;
|
|
40
|
-
padding: 8px 0;
|
|
41
|
-
}
|
|
59
|
+
.media-control-cc {
|
|
60
|
+
position: relative;
|
|
61
|
+
order: 85;
|
|
42
62
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
color: #
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
63
|
+
button {
|
|
64
|
+
background-color: transparent;
|
|
65
|
+
color: #fff;
|
|
66
|
+
-webkit-font-smoothing: antialiased;
|
|
67
|
+
border: none;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
|
|
70
|
+
.cc-text {
|
|
71
|
+
svg {
|
|
72
|
+
fill: white;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
49
75
|
|
|
50
76
|
&:hover {
|
|
51
|
-
|
|
52
|
-
|
|
77
|
+
color: #c9c9c9;
|
|
78
|
+
}
|
|
53
79
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
text-decoration: none;
|
|
57
|
-
}
|
|
80
|
+
&.changing {
|
|
81
|
+
animation: pulse 0.5s infinite alternate;
|
|
58
82
|
}
|
|
59
83
|
}
|
|
60
84
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
85
|
+
ul {
|
|
86
|
+
width: 80px;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
list-style-type: none;
|
|
89
|
+
position: absolute;
|
|
90
|
+
bottom: 25px;
|
|
91
|
+
border: none;
|
|
92
|
+
background-color: #e6e6e6;
|
|
93
|
+
padding: 8px 0;
|
|
94
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
64
95
|
}
|
|
65
96
|
|
|
66
|
-
|
|
67
|
-
|
|
97
|
+
li {
|
|
98
|
+
a {
|
|
99
|
+
color: #444;
|
|
100
|
+
padding: 2px 10px;
|
|
101
|
+
display: block;
|
|
102
|
+
text-decoration: none;
|
|
68
103
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
104
|
+
&:hover {
|
|
105
|
+
background-color: #555;
|
|
106
|
+
color: white;
|
|
73
107
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
108
|
+
a {
|
|
109
|
+
color: white;
|
|
110
|
+
text-decoration: none;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
77
114
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
}
|
|
115
|
+
&.current a {
|
|
116
|
+
color: #f00;
|
|
117
|
+
background-color: #555;
|
|
118
|
+
}
|
|
82
119
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
font-size: 0 !important;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
86
122
|
}
|
|
87
123
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
}
|
|
124
|
+
// ::cue {
|
|
125
|
+
// visibility: hidden !important;
|
|
126
|
+
// font-size: 0 !important;
|
|
127
|
+
// }
|
|
128
|
+
// .ios-fullscreen::cue {
|
|
129
|
+
// visibility: visible !important;
|
|
130
|
+
// font-size: 1em !important;
|
|
131
|
+
// }
|
package/dist/core.js
CHANGED
|
@@ -43228,7 +43228,7 @@ class Player {
|
|
|
43228
43228
|
}
|
|
43229
43229
|
}
|
|
43230
43230
|
|
|
43231
|
-
var version$1 = "2.25.
|
|
43231
|
+
var version$1 = "2.25.6";
|
|
43232
43232
|
|
|
43233
43233
|
var packages = {
|
|
43234
43234
|
"node_modules/@clappr/core": {
|