@3deye-toolkit/react-camera 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react-camera.css +1 -927
- package/dist/react-camera.d.ts +47 -38
- package/dist/react-camera.js +1 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +4 -7
package/dist/react-camera.css
CHANGED
|
@@ -1,927 +1 @@
|
|
|
1
|
-
.x-3deye-player * {
|
|
2
|
-
box-sizing: border-box;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.x-3deye-player {
|
|
6
|
-
position: relative;
|
|
7
|
-
background-color: black;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.x-3deye-player__zoomable-wrapper {
|
|
11
|
-
width: 100%;
|
|
12
|
-
height: 100%;
|
|
13
|
-
overflow: hidden;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.x-3deye-player__zoomable {
|
|
17
|
-
width: 100%;
|
|
18
|
-
height: 100%;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.x-3deye-player video {
|
|
22
|
-
width: 100%;
|
|
23
|
-
height: 100%;
|
|
24
|
-
position: absolute;
|
|
25
|
-
top: 0;
|
|
26
|
-
left: 0;
|
|
27
|
-
bottom: 0;
|
|
28
|
-
right: 0;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.spinner {
|
|
32
|
-
animation: spinner-rotation 1.5s linear infinite;
|
|
33
|
-
width: 65px;
|
|
34
|
-
height: 65px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.spinner circle {
|
|
38
|
-
stroke-dasharray: 207.34;
|
|
39
|
-
stroke-dashoffset: 0;
|
|
40
|
-
transform-origin: center;
|
|
41
|
-
animation: spinner-dash 1.5s ease-in-out infinite;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
@keyframes spinner-rotation {
|
|
45
|
-
0% {
|
|
46
|
-
transform: rotate(0deg);
|
|
47
|
-
}
|
|
48
|
-
100% {
|
|
49
|
-
transform: rotate(270deg);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@keyframes spinner-dash {
|
|
54
|
-
0% {
|
|
55
|
-
stroke-dashoffset: 207.34;
|
|
56
|
-
}
|
|
57
|
-
50% {
|
|
58
|
-
stroke-dashoffset: 51.835; /* offset / 4 */
|
|
59
|
-
transform: rotate(135deg);
|
|
60
|
-
}
|
|
61
|
-
100% {
|
|
62
|
-
stroke-dashoffset: 207.34;
|
|
63
|
-
transform: rotate(450deg);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.x-3deye-player__camera-name-popover {
|
|
68
|
-
background-color: rgba(15, 15, 20, 0.8);
|
|
69
|
-
box-shadow: none;
|
|
70
|
-
color: white;
|
|
71
|
-
white-space: nowrap;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.x-3deye-popover-container.x-3deye-player__camera-name-popover svg {
|
|
75
|
-
--tip-background: rgb(15, 15, 20);
|
|
76
|
-
opacity: 0.8;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.x-3deye-player__camera-name-popover button.x-3deye-button {
|
|
80
|
-
pointer-events: auto;
|
|
81
|
-
font-size: inherit;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.x-3deye-player__camera-name-popover button.x-3deye-button:hover {
|
|
85
|
-
text-decoration: underline;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.x-3deye-player__camera-name {
|
|
89
|
-
background-color: rgba(0, 0, 0, 0.25);
|
|
90
|
-
text-shadow: 1px 1px 1px black;
|
|
91
|
-
opacity: 0.8;
|
|
92
|
-
padding: 2px 16px;
|
|
93
|
-
border-radius: 16px;
|
|
94
|
-
line-height: 16px;
|
|
95
|
-
cursor: pointer;
|
|
96
|
-
-webkit-backdrop-filter: blur(3px);
|
|
97
|
-
backdrop-filter: blur(3px);
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.x-3deye-player__camera-name:hover {
|
|
101
|
-
text-decoration: underline;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.x-3deye-button {
|
|
105
|
-
color: inherit;
|
|
106
|
-
background: none;
|
|
107
|
-
border: none;
|
|
108
|
-
position: relative;
|
|
109
|
-
padding: 0 8px;
|
|
110
|
-
height: 32px;
|
|
111
|
-
-webkit-user-select: none;
|
|
112
|
-
-moz-user-select: none;
|
|
113
|
-
user-select: none;
|
|
114
|
-
display: inline-flex;
|
|
115
|
-
justify-content: center;
|
|
116
|
-
align-items: center;
|
|
117
|
-
border-radius: 4px;
|
|
118
|
-
letter-spacing: 0.0107142857em;
|
|
119
|
-
font-weight: 500;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.x-3deye-button sup {
|
|
123
|
-
position: relative;
|
|
124
|
-
top: -0.5em;
|
|
125
|
-
left: 0.25em;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.x-3deye-button.x-3deye-button--fullwidth {
|
|
129
|
-
width: 100%;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.x-3deye-button:focus,
|
|
133
|
-
.x-3deye-button.x-3deye-button:not(:disabled):hover {
|
|
134
|
-
background-color: rgba(var(--surface-highlight-rgb), 0.1);
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.x-3deye-button--icon {
|
|
138
|
-
border-radius: 16px;
|
|
139
|
-
padding: 4px;
|
|
140
|
-
width: 32px;
|
|
141
|
-
height: 32px;
|
|
142
|
-
display: inline-flex;
|
|
143
|
-
align-items: center;
|
|
144
|
-
justify-content: center;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.x-3deye-button--action .icon {
|
|
148
|
-
opacity: 0.5;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.x-3deye-button--action:hover .icon {
|
|
152
|
-
opacity: 1;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.x-3deye-button:disabled {
|
|
156
|
-
opacity: 0.4;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.x-3deye-button:not(:disabled) {
|
|
160
|
-
cursor: pointer;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.x-3deye-button.x-3deye-button--filled,
|
|
164
|
-
.x-3deye-button.x-3deye-button--text {
|
|
165
|
-
min-width: 80px;
|
|
166
|
-
text-transform: capitalize;
|
|
167
|
-
font-family: 'Roboto', sans-serif;
|
|
168
|
-
font-size: 0.875rem;
|
|
169
|
-
font-weight: 500;
|
|
170
|
-
border-radius: 0.25rem;
|
|
171
|
-
padding: 0 1rem;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.x-3deye-button.x-3deye-button--filled {
|
|
175
|
-
background-color: rgb(39, 185, 161);
|
|
176
|
-
color: white;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.x-3deye-button.x-3deye-button--filled:not(:disabled):hover {
|
|
180
|
-
background-color: rgb(34, 163, 142);
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.x-3deye-button.x-3deye-button--filled:focus {
|
|
184
|
-
transition: box-shadow 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
185
|
-
box-shadow: 0 0 0 2px rgba(39, 185, 161, 0.33);
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.x-3deye-button canvas {
|
|
189
|
-
color: rgb(var(--surface-highlight-rgb));
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.x-3deye-button--overlay {
|
|
193
|
-
pointer-events: auto;
|
|
194
|
-
background: rgba(0, 0, 0, 0.5);
|
|
195
|
-
border: 2px solid rgba(255, 255, 255, 0.25);
|
|
196
|
-
color: white;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.x-3deye-button.x-3deye-button--overlay:focus,
|
|
200
|
-
.x-3deye-button.x-3deye-button--overlay:not(:disabled):hover {
|
|
201
|
-
background: rgba(0, 0, 0, 0.5);
|
|
202
|
-
border: 2px solid rgba(255, 255, 255, 0.5);
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.x-3deye-button.x-3deye-button--overlay.x-3deye-button--overlay-danger:not(
|
|
206
|
-
:disabled
|
|
207
|
-
),
|
|
208
|
-
.x-3deye-button.x-3deye-button--overlay.x-3deye-button--overlay-danger:not(
|
|
209
|
-
:disabled
|
|
210
|
-
):hover {
|
|
211
|
-
background-color: rgba(156, 51, 49, 0.5);
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
.x-3deye-tooltip {
|
|
215
|
-
background: rgb(0 0 0 / 0.9);
|
|
216
|
-
color: white;
|
|
217
|
-
border: none;
|
|
218
|
-
border-radius: 4px;
|
|
219
|
-
padding: 0.5em 1em;
|
|
220
|
-
font-size: 12px;
|
|
221
|
-
border: rgb(255 255 255 / 0.15) 1px solid;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
.x-3deye-popover-container {
|
|
225
|
-
background: #222;
|
|
226
|
-
box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgb(0 0 0 / 0.1),
|
|
227
|
-
inset 0 0 0 1px rgb(255 255 255 /0.05);
|
|
228
|
-
color: white;
|
|
229
|
-
border-radius: 6px;
|
|
230
|
-
padding: 8px;
|
|
231
|
-
text-align: left;
|
|
232
|
-
animation: slide-in 0.15s ease-in;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
@media (prefers-reduced-motion: reduce) {
|
|
236
|
-
.x-3deye-popover-container {
|
|
237
|
-
animation: none;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.x-3deye-popover-container .tip {
|
|
242
|
-
--tip-background: #222;
|
|
243
|
-
--tip-border: rgb(255 255 255 /0.05);
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.x-3deye-player__stats > summary {
|
|
247
|
-
line-height: 24px;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
.x-3deye-player__stats > summary:hover {
|
|
251
|
-
text-decoration: underline;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.x-3deye-player__stats dl {
|
|
255
|
-
font-size: 0.75rem;
|
|
256
|
-
line-height: 1.25rem;
|
|
257
|
-
display: table;
|
|
258
|
-
margin-top: 0;
|
|
259
|
-
margin-bottom: 0.75rem;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.x-3deye-player__stats dl > div {
|
|
263
|
-
display: table-row;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.x-3deye-player__stats dl > div > dt,
|
|
267
|
-
.x-3deye-player__stats dl > div > dd {
|
|
268
|
-
display: table-cell;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.x-3deye-player__stats dl > div > dd {
|
|
272
|
-
font-variant-numeric: tabular-nums;
|
|
273
|
-
text-align: right;
|
|
274
|
-
min-width: 100px;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
.x-3deye-live-indicator {
|
|
278
|
-
-webkit-user-select: none;
|
|
279
|
-
-moz-user-select: none;
|
|
280
|
-
user-select: none;
|
|
281
|
-
padding: 0 5px;
|
|
282
|
-
color: rgba(0, 0, 0, 0.7);
|
|
283
|
-
background-color: white;
|
|
284
|
-
font-weight: bold;
|
|
285
|
-
text-transform: uppercase;
|
|
286
|
-
opacity: 0.8;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.x-3deye-button--live {
|
|
290
|
-
height: 24px;
|
|
291
|
-
padding: 0 12px;
|
|
292
|
-
background-color: rgba(0, 0, 0, 0.25);
|
|
293
|
-
border-radius: 15px;
|
|
294
|
-
margin: 0;
|
|
295
|
-
color: orange;
|
|
296
|
-
text-shadow: 1px 1px 1px black;
|
|
297
|
-
text-transform: uppercase;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.x-3deye-player__overlay .x-3deye-button-go-live:focus {
|
|
301
|
-
box-shadow: 0 0 2px orange;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
.x-3deye-delay-indicator:hover {
|
|
305
|
-
text-decoration: underline;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
.x-3deye-delay-indicator {
|
|
309
|
-
background-color: rgba(0, 0, 0, 0.25);
|
|
310
|
-
border-radius: 15px;
|
|
311
|
-
padding: 2px 8px;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
.x-3deye-player__playback-indicator {
|
|
315
|
-
pointer-events: none;
|
|
316
|
-
position: absolute;
|
|
317
|
-
top: 50%;
|
|
318
|
-
left: 50%;
|
|
319
|
-
transform: translate(-50%, -50%);
|
|
320
|
-
animation: playback-indicator-fade-out 0.5s linear forwards;
|
|
321
|
-
display: none;
|
|
322
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
323
|
-
width: 48px;
|
|
324
|
-
height: 48px;
|
|
325
|
-
padding: 8px;
|
|
326
|
-
border-radius: 48px;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
@keyframes playback-indicator-fade-out {
|
|
330
|
-
0% {
|
|
331
|
-
opacity: 1;
|
|
332
|
-
transform: translate(-50%, -50%) scale(1);
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
100% {
|
|
336
|
-
opacity: 0;
|
|
337
|
-
transform: translate(-50%, -50%) scale(2);
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.x-3deye-player__overlay {
|
|
342
|
-
position: absolute;
|
|
343
|
-
top: 0;
|
|
344
|
-
left: 0;
|
|
345
|
-
bottom: 0;
|
|
346
|
-
right: 0;
|
|
347
|
-
color: white;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.x-3deye-player__controls {
|
|
351
|
-
position: absolute;
|
|
352
|
-
left: 0;
|
|
353
|
-
bottom: 0;
|
|
354
|
-
right: 0;
|
|
355
|
-
height: 54px;
|
|
356
|
-
opacity: 0;
|
|
357
|
-
display: flex;
|
|
358
|
-
pointer-events: none;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
.x-3deye-player__controls > * {
|
|
362
|
-
pointer-events: auto;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
.x-3deye-player__overlay:hover .x-3deye-player__controls,
|
|
366
|
-
.x-3deye-player__controls:focus-within,
|
|
367
|
-
.x-3deye-player--paused .x-3deye-player__controls {
|
|
368
|
-
opacity: 1;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.x-3deye-player__indicators {
|
|
372
|
-
display: flex;
|
|
373
|
-
pointer-events: none;
|
|
374
|
-
align-items: center;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
.x-3deye-player__indicators > * {
|
|
378
|
-
margin: 5px;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.x-3deye-player__overlay .x-3deye-button--live {
|
|
382
|
-
opacity: 0;
|
|
383
|
-
margin: 3px 5px;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
.x-3deye-player__overlay:hover .x-3deye-button--live,
|
|
387
|
-
.x-3deye-button--live:focus {
|
|
388
|
-
opacity: 1;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
.x-3deye-player__overlay .x-3deye-player__camera-name {
|
|
392
|
-
pointer-events: auto;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
.x-3deye-player__current-time {
|
|
396
|
-
line-height: 16px;
|
|
397
|
-
font-size: 11px;
|
|
398
|
-
text-shadow: 1px 1px 1px black;
|
|
399
|
-
background-color: rgba(0, 0, 0, 0.25);
|
|
400
|
-
padding: 2px 16px;
|
|
401
|
-
border-radius: 16px;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
.x-3deye-player__current-time--synced {
|
|
405
|
-
background-color: rgb(147, 221, 30, 0.6);
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.x-3deye-player__zoom-preview {
|
|
409
|
-
display: flex;
|
|
410
|
-
flex-direction: column;
|
|
411
|
-
position: absolute;
|
|
412
|
-
right: 44px;
|
|
413
|
-
top: 50%;
|
|
414
|
-
transform: translateY(-50%);
|
|
415
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
416
|
-
border: 1px solid white;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
.x-3deye-player__zoom-preview .zoom-value {
|
|
420
|
-
position: absolute;
|
|
421
|
-
top: 0;
|
|
422
|
-
left: 0;
|
|
423
|
-
right: 0;
|
|
424
|
-
bottom: 0;
|
|
425
|
-
display: flex;
|
|
426
|
-
justify-content: center;
|
|
427
|
-
align-items: center;
|
|
428
|
-
font-family: monospace;
|
|
429
|
-
font-size: 32px;
|
|
430
|
-
font-weight: bold;
|
|
431
|
-
color: white;
|
|
432
|
-
text-shadow: 0 1px 1px black;
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
.x-3deye-player__zoom-preview .x-3deye-player__zoomable {
|
|
436
|
-
position: relative;
|
|
437
|
-
flex: 1;
|
|
438
|
-
background-color: rgba(255, 255, 255, 0.5);
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
.x-3deye-player__zoom-slider {
|
|
442
|
-
position: absolute;
|
|
443
|
-
right: 10px;
|
|
444
|
-
top: 50%;
|
|
445
|
-
transform: translateY(-50%);
|
|
446
|
-
width: 34px;
|
|
447
|
-
padding: 10px 5px;
|
|
448
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
449
|
-
border: 2px solid rgba(255, 255, 255, 0.25);
|
|
450
|
-
border-radius: 4px;
|
|
451
|
-
-webkit-backdrop-filter: blur(2px);
|
|
452
|
-
backdrop-filter: blur(2px);
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
.x-3deye-player__zoom-slider .tick {
|
|
456
|
-
margin-left: 4px;
|
|
457
|
-
width: 12px;
|
|
458
|
-
height: 10px;
|
|
459
|
-
border-top: 1px solid rgba(255, 255, 255, 0.4);
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
.x-3deye-player__zoom-slider .tick:nth-child(5n + 1) {
|
|
463
|
-
margin-left: 0px;
|
|
464
|
-
width: 20px;
|
|
465
|
-
border-top-width: 2px;
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
.x-3deye-player__zoom-slider .tick:last-child {
|
|
469
|
-
height: 0;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
.x-3deye-player__zoom-slider .rotation-button {
|
|
473
|
-
padding: 0;
|
|
474
|
-
margin-left: -4px;
|
|
475
|
-
margin-bottom: -4px;
|
|
476
|
-
width: 28px;
|
|
477
|
-
text-align: right;
|
|
478
|
-
color: white;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
.x-3deye-player__zoom-preview {
|
|
482
|
-
display: none;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.x-3deye-player__zoom-slider:hover + .x-3deye-player__zoom-preview,
|
|
486
|
-
.x-3deye-player__zoom-slider + .x-3deye-player__zoom-preview:focus,
|
|
487
|
-
.x-3deye-player__zoom-preview:hover,
|
|
488
|
-
.x-3deye-player__zoom-preview:focus {
|
|
489
|
-
display: block;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
.x-3deye-player__zoom-slider:is(:hover, :focus),
|
|
493
|
-
.x-3deye-player__zoom-slider:has(
|
|
494
|
-
+ .x-3deye-player__zoom-preview:is(:focus, :hover)
|
|
495
|
-
) {
|
|
496
|
-
display: block;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
.x-3deye-player__controls {
|
|
500
|
-
display: flex;
|
|
501
|
-
padding: 8px;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
.x-3deye-player__controls .spacer {
|
|
505
|
-
pointer-events: none;
|
|
506
|
-
flex: 1;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
.x-3deye-button.x-3deye-player__control {
|
|
510
|
-
width: 38px;
|
|
511
|
-
height: 38px;
|
|
512
|
-
background-color: rgb(26, 30, 29, 0.8);
|
|
513
|
-
color: rgba(255, 255, 255, 0.6);
|
|
514
|
-
border-radius: 0;
|
|
515
|
-
display: flex;
|
|
516
|
-
justify-content: center;
|
|
517
|
-
align-items: center;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.x-3deye-player__controls--compact .x-3deye-player__control {
|
|
521
|
-
padding: 0;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.x-3deye-player__controls--compact .x-3deye-player__control .icon {
|
|
525
|
-
width: 20px;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.x-3deye-player__control--reflowed {
|
|
529
|
-
width: 20px;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.x-3deye-player__control + .x-3deye-player__control {
|
|
533
|
-
border-left: 1px solid rgb(26, 30, 29);
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control:hover {
|
|
537
|
-
background-color: #2a2e2d;
|
|
538
|
-
color: white;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
.x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control:focus {
|
|
542
|
-
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
|
|
543
|
-
background-color: rgb(26, 30, 29, 0.8);
|
|
544
|
-
z-index: 1;
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
.x-3deye-player__control:first-child {
|
|
548
|
-
border-top-left-radius: 4px;
|
|
549
|
-
border-bottom-left-radius: 4px;
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
.x-3deye-player__controls > .x-3deye-player__control:last-child {
|
|
553
|
-
border-top-right-radius: 4px;
|
|
554
|
-
border-bottom-right-radius: 4px;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.x-3deye-player__controls--spaced > .spacer + .x-3deye-player__control {
|
|
558
|
-
border-top-left-radius: 4px;
|
|
559
|
-
border-bottom-left-radius: 4px;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
.x-3deye-player__controls--spaced > .x-3deye-player__control.before-spacer {
|
|
563
|
-
border-top-right-radius: 4px;
|
|
564
|
-
border-bottom-right-radius: 4px;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
.x-3deye-button.x-3deye-player__control-close {
|
|
568
|
-
background-color: rgba(156, 51, 49, 0.8);
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
.x-3deye-button.x-3deye-button:not(
|
|
572
|
-
:disabled
|
|
573
|
-
).x-3deye-player__control-close:hover {
|
|
574
|
-
background-color: rgba(156, 51, 49);
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
.x-3deye-button.x-3deye-button:not(
|
|
578
|
-
:disabled
|
|
579
|
-
).x-3deye-player__control-close:focus {
|
|
580
|
-
background-color: rgba(156, 51, 49, 0.8);
|
|
581
|
-
box-shadow: 0 0 0 0.2rem rgba(101, 20, 46, 0.5);
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.x-3deye-player--paused
|
|
585
|
-
.x-3deye-button.x-3deye-button:not(
|
|
586
|
-
:disabled
|
|
587
|
-
).x-3deye-player__control-playpause {
|
|
588
|
-
background-color: rgba(49, 106, 156, 0.8);
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.x-3deye-player--paused
|
|
592
|
-
.x-3deye-button.x-3deye-button:not(
|
|
593
|
-
:disabled
|
|
594
|
-
).x-3deye-player__control-playpause:hover {
|
|
595
|
-
background-color: rgba(49, 106, 156);
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
.x-3deye-player--paused
|
|
599
|
-
.x-3deye-button.x-3deye-button:not(
|
|
600
|
-
:disabled
|
|
601
|
-
).x-3deye-player__control-playpause:focus {
|
|
602
|
-
background-color: rgba(49, 106, 156, 0.8);
|
|
603
|
-
box-shadow: 0 0 0 0.2rem rgba(20, 69, 101, 0.5);
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.x-3deye-popover-container.popover-playbackrate {
|
|
607
|
-
background: rgba(26, 30, 29, 0.8);
|
|
608
|
-
-webkit-backdrop-filter: blur(2px);
|
|
609
|
-
backdrop-filter: blur(2px);
|
|
610
|
-
color: white;
|
|
611
|
-
display: grid;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.x-3deye-popover-container.popover-playbackrate .tip {
|
|
615
|
-
--tip-background: rgba(26, 30, 29, 0.8);
|
|
616
|
-
--tip-border: transparent;
|
|
617
|
-
}
|
|
618
|
-
|
|
619
|
-
.volume-control:hover .volume-range,
|
|
620
|
-
.volume-control:focus .volume-range,
|
|
621
|
-
.volume-control:focus-within .volume-range {
|
|
622
|
-
visibility: visible;
|
|
623
|
-
transition: visibility 0s;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.volume-range {
|
|
627
|
-
--surface-inverse: rgba(255, 255, 255, 0.15);
|
|
628
|
-
--surface-highlight-rgb: 255, 255, 255;
|
|
629
|
-
--primary-color: #0067ac;
|
|
630
|
-
--on-primary-color: white;
|
|
631
|
-
background-color: rgba(26, 30, 29, 0.5);
|
|
632
|
-
padding: 16px 4px;
|
|
633
|
-
border-radius: 4px;
|
|
634
|
-
position: absolute;
|
|
635
|
-
display: flex;
|
|
636
|
-
justify-content: center;
|
|
637
|
-
width: 32px;
|
|
638
|
-
height: 140px;
|
|
639
|
-
bottom: 100%;
|
|
640
|
-
left: 0;
|
|
641
|
-
visibility: hidden;
|
|
642
|
-
transition: visibility 0s 0.5s;
|
|
643
|
-
transform-origin: 16px 12px;
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
.x-3deye-slider {
|
|
647
|
-
position: relative;
|
|
648
|
-
display: flex;
|
|
649
|
-
align-items: center;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
.x-3deye-slider:focus-visible {
|
|
653
|
-
outline: none;
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
.x-3deye-slider.horizontal {
|
|
657
|
-
width: 100%;
|
|
658
|
-
height: 20px;
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
.x-3deye-slider.vertical {
|
|
662
|
-
width: 20px;
|
|
663
|
-
height: 100%;
|
|
664
|
-
flex-direction: column;
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
.x-3deye-slider__track {
|
|
668
|
-
background: var(--surface-inverse, gainsboro);
|
|
669
|
-
position: relative;
|
|
670
|
-
flex: 1;
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
.x-3deye-slider__bar {
|
|
674
|
-
background-color: var(--primary-color, #0067ac);
|
|
675
|
-
position: absolute;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
.x-3deye-slider.disabled .x-3deye-slider__bar {
|
|
679
|
-
background-color: rgb(165, 165, 165);
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
.x-3deye-slider.horizontal .x-3deye-slider__bar {
|
|
683
|
-
top: 0;
|
|
684
|
-
bottom: 0;
|
|
685
|
-
left: 0;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.x-3deye-slider.vertical .x-3deye-slider__bar {
|
|
689
|
-
bottom: 0;
|
|
690
|
-
left: 0;
|
|
691
|
-
right: 0;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
.x-3deye-slider.horizontal .x-3deye-slider__track {
|
|
695
|
-
height: 3px;
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
.x-3deye-slider.vertical .x-3deye-slider__track {
|
|
699
|
-
width: 3px;
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
.x-3deye-slider__thumb {
|
|
703
|
-
will-change: transform box-shadow;
|
|
704
|
-
background: white;
|
|
705
|
-
box-shadow: 0 0 0 6px rgba(0, 100, 255, 0), 0 0 0 1px rgba(0, 0, 0, 0.1) inset,
|
|
706
|
-
1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
707
|
-
width: 20px;
|
|
708
|
-
height: 20px;
|
|
709
|
-
border-radius: 50%;
|
|
710
|
-
transition: box-shadow 150ms cubic-bezier(0.45, 0.05, 0.55, 0.95) 0ms;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.x-3deye-slider:not(.disabled) .x-3deye-slider__thumb:hover,
|
|
714
|
-
.x-3deye-slider:focus .x-3deye-slider__thumb {
|
|
715
|
-
box-shadow: 0 0 0 6px rgba(var(--surface-highlight-rgb, 0, 100, 255), 0.1),
|
|
716
|
-
0 0 0 1px rgba(0, 0, 0, 0.1) inset, 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
.x-3deye-slider:focus .x-3deye-slider__thumb.active {
|
|
720
|
-
box-shadow: 0 0 0 6px rgba(var(--surface-highlight-rgb, 0, 100, 255), 0.2),
|
|
721
|
-
0 0 0 1px rgba(0, 0, 0, 0.1) inset, 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
.x-3deye-slider.horizontal .x-3deye-slider__thumb {
|
|
725
|
-
margin-left: -10px;
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
.x-3deye-slider.vertical .x-3deye-slider__thumb {
|
|
729
|
-
margin-bottom: -10px;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
.x-3deye-slider__label {
|
|
733
|
-
pointer-events: none;
|
|
734
|
-
touch-action: none;
|
|
735
|
-
will-change: transform;
|
|
736
|
-
transform: translate(-50%, -100%) scale(0);
|
|
737
|
-
background: var(--primary-color, #0067ac);
|
|
738
|
-
bottom: 50%;
|
|
739
|
-
left: 50%;
|
|
740
|
-
color: var(--on-primary-color, white);
|
|
741
|
-
font-size: 0.75rem;
|
|
742
|
-
border-radius: 4px;
|
|
743
|
-
width: -moz-fit-content;
|
|
744
|
-
width: fit-content;
|
|
745
|
-
min-width: 24px;
|
|
746
|
-
padding: 4px 8px;
|
|
747
|
-
position: relative;
|
|
748
|
-
transition: transform 150ms cubic-bezier(0.45, 0.05, 0.55, 0.95) 0ms;
|
|
749
|
-
transform-origin: center bottom;
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
.x-3deye-slider__label.open,
|
|
753
|
-
.x-3deye-slider:not(.disabled)
|
|
754
|
-
.x-3deye-slider__thumb:hover
|
|
755
|
-
.x-3deye-slider__label,
|
|
756
|
-
.x-3deye-slider:focus .x-3deye-slider__label {
|
|
757
|
-
transform: translate(-50%, -100%) scale(1);
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.x-3deye-slider__label::before {
|
|
761
|
-
content: '';
|
|
762
|
-
display: block;
|
|
763
|
-
position: absolute;
|
|
764
|
-
top: 100%;
|
|
765
|
-
left: calc(50% - 5px);
|
|
766
|
-
width: 0;
|
|
767
|
-
height: 0;
|
|
768
|
-
border-left: 5px solid transparent;
|
|
769
|
-
border-right: 5px solid transparent;
|
|
770
|
-
border-top: 5px solid var(--primary-color, #0067ac);
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
.ptz-popover.x-3deye-popover-container {
|
|
774
|
-
border-radius: 6px;
|
|
775
|
-
background-color: rgba(15, 15, 20, 0.7);
|
|
776
|
-
box-shadow: none;
|
|
777
|
-
color: rgba(255, 255, 255, 0.8);
|
|
778
|
-
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
779
|
-
-webkit-backdrop-filter: blur(1px);
|
|
780
|
-
backdrop-filter: blur(1px);
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
.ptz-popover .tip {
|
|
784
|
-
--tip-background: rgba(15, 15, 20, 0.5);
|
|
785
|
-
--tip-border: rgba(255, 255, 255, 0.2);
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
.ptz-popover {
|
|
789
|
-
--surface-inverse: rgba(255, 255, 255, 0.15);
|
|
790
|
-
--surface-highlight-rgb: 255, 255, 255;
|
|
791
|
-
--primary-color: #0067ac;
|
|
792
|
-
--on-primary-color: white;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
.segmented-control-wrapper {
|
|
796
|
-
display: inline-grid;
|
|
797
|
-
border-radius: 6px;
|
|
798
|
-
background-color: var(--surface-inverse);
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
.segmented-control {
|
|
802
|
-
display: grid;
|
|
803
|
-
margin: 2px;
|
|
804
|
-
position: relative;
|
|
805
|
-
grid-auto-flow: column;
|
|
806
|
-
grid-auto-columns: 1fr;
|
|
807
|
-
--indicator-offset: 0%;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
.segmented-control-indicator {
|
|
811
|
-
position: absolute;
|
|
812
|
-
height: 100%;
|
|
813
|
-
pointer-events: none;
|
|
814
|
-
transform: translateX(var(--indicator-offset));
|
|
815
|
-
transition: 0.2s ease-in-out;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.segmented-control-indicator-inner {
|
|
819
|
-
box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
|
|
820
|
-
border-radius: 6px;
|
|
821
|
-
background: #fff;
|
|
822
|
-
transition: 0.2s;
|
|
823
|
-
transform: scale(1);
|
|
824
|
-
position: absolute;
|
|
825
|
-
inset: 0;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.segmented-control-indicator.active .segmented-control-indicator-inner {
|
|
829
|
-
transform: scale(0.95);
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
.segmented-control-button {
|
|
833
|
-
font-family: inherit;
|
|
834
|
-
min-height: 24px;
|
|
835
|
-
margin: 2px;
|
|
836
|
-
background: none;
|
|
837
|
-
border: none;
|
|
838
|
-
color: currentColor;
|
|
839
|
-
-webkit-user-select: none;
|
|
840
|
-
-moz-user-select: none;
|
|
841
|
-
user-select: none;
|
|
842
|
-
text-overflow: ellipsis;
|
|
843
|
-
overflow: hidden;
|
|
844
|
-
z-index: 1;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.segmented-control-button:not(.current):hover {
|
|
848
|
-
opacity: 0.6;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
.segmented-control-button.current {
|
|
852
|
-
color: black;
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
.box-selector {
|
|
856
|
-
border: 2px solid deepskyblue;
|
|
857
|
-
background-color: rgba(0, 191, 255, 0.5);
|
|
858
|
-
}
|
|
859
|
-
|
|
860
|
-
.box-selector-close {
|
|
861
|
-
background-color: skyblue;
|
|
862
|
-
transition: 0.2s ease-in;
|
|
863
|
-
color: #026282;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
.box-selector-close:hover {
|
|
867
|
-
color: white;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.box-selector-preview {
|
|
871
|
-
width: 40px;
|
|
872
|
-
height: 40px;
|
|
873
|
-
position: relative;
|
|
874
|
-
margin: 20px 20px 0px 10px;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
@keyframes expand-box-selector-preview {
|
|
878
|
-
from {
|
|
879
|
-
width: 20px;
|
|
880
|
-
height: 16px;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
to {
|
|
884
|
-
width: 50px;
|
|
885
|
-
height: 30px;
|
|
886
|
-
}
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.box-selector-preview .box-selector {
|
|
890
|
-
/* width: 20px;
|
|
891
|
-
height: 16px; */
|
|
892
|
-
width: 50px;
|
|
893
|
-
height: 30px;
|
|
894
|
-
position: relative;
|
|
895
|
-
will-change: width, height;
|
|
896
|
-
|
|
897
|
-
animation-duration: 0.5s;
|
|
898
|
-
animation-name: expand-box-selector-preview;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.box-selector-preview .icon {
|
|
902
|
-
position: absolute;
|
|
903
|
-
bottom: -7px;
|
|
904
|
-
right: -7px;
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
/* .box-selector-select:hover .box-selector {
|
|
908
|
-
width: 50px;
|
|
909
|
-
height: 30px;
|
|
910
|
-
} */
|
|
911
|
-
|
|
912
|
-
.box-selector-select {
|
|
913
|
-
color: rgba(255, 255, 255, 0.8);
|
|
914
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
915
|
-
-webkit-backdrop-filter: blur(2px);
|
|
916
|
-
backdrop-filter: blur(2px);
|
|
917
|
-
text-transform: uppercase;
|
|
918
|
-
font-weight: bold;
|
|
919
|
-
text-align: center;
|
|
920
|
-
border-radius: 4px;
|
|
921
|
-
padding: 8px;
|
|
922
|
-
width: content-width;
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
.box-selector-cancel {
|
|
926
|
-
pointer-events: auto;
|
|
927
|
-
}
|
|
1
|
+
.x-3deye-player *{box-sizing:border-box}.x-3deye-player{background-color:#000;position:relative}.x-3deye-player__zoomable-wrapper{width:100%;height:100%;overflow:hidden}.x-3deye-player__zoomable{width:100%;height:100%}.x-3deye-player video{width:100%;height:100%;position:absolute;inset:0}.x-3deye-player__overlay{color:#fff;position:absolute;inset:0}.x-3deye-player__controls{opacity:0;pointer-events:none;height:54px;display:flex;position:absolute;bottom:0;left:0;right:0}.x-3deye-player__controls>*{pointer-events:auto}.x-3deye-player__overlay:hover .x-3deye-player__controls,.x-3deye-player__controls:focus-within,.x-3deye-player--paused .x-3deye-player__controls{opacity:1}.x-3deye-player__indicators{pointer-events:none;align-items:center;display:flex}.x-3deye-player__indicators>*{margin:5px}.x-3deye-player__overlay .x-3deye-button--live{opacity:0;margin:3px 5px}.x-3deye-player__overlay:hover .x-3deye-button--live,.x-3deye-button--live:focus{opacity:1}.x-3deye-player__overlay .x-3deye-player__camera-name{pointer-events:auto}.x-3deye-player__current-time{text-shadow:1px 1px 1px #000;background-color:#00000040;border-radius:16px;padding:2px 16px;font-size:11px;line-height:16px}.x-3deye-player__current-time--synced{background-color:#93dd1e99}.x-3deye-player__zoom-preview{backdrop-filter:blur(1px);border:2px solid #ffffff40;border-radius:4px;display:none;overflow:hidden}.x-3deye-player__zoom-preview .zoom-value{color:#fff;text-shadow:0 1px 1px #000;justify-content:center;align-items:center;font-family:monospace;font-size:32px;font-weight:700;display:flex;position:absolute;inset:0}.x-3deye-player__zoom-preview .x-3deye-player__zoomable{background-color:#fff6;border-radius:4px;flex:1;position:relative}.x-3deye-player__zoom-preview{&:has(+:hover),&:has(+:focus-within),&:hover{display:block}}.x-3deye-player__zoom-slider{--primary-color:orange;--surface-highlight-rgb:255,255,255;backdrop-filter:blur(2px);opacity:.5;background-color:#00000080;border:2px solid #ffffff40;border-radius:4px;padding:10px 5px;position:absolute;top:50%;right:10px;transform:translateY(-50%);&:hover{opacity:1}&:focus-within{opacity:1;display:flex!important}& .x-3deye-slider__thumb{background:orange;width:16px;height:16px}}.x-3deye-player__zoom-slider .rotation-button{text-align:right;color:#fff;width:28px;margin-bottom:-4px;margin-left:-4px;padding:0}.box-selector{background-color:#00bfff80;border:2px solid #00bfff}.box-selector-close{color:#026282;background-color:#87ceeb;transition:all .2s ease-in}.box-selector-close:hover{color:#fff}.box-selector-preview{width:40px;height:40px;margin:20px 20px 0 10px;position:relative}@keyframes expand-box-selector-preview{0%{width:20px;height:16px}to{width:50px;height:30px}}.box-selector-preview .box-selector{will-change:width,height;width:50px;height:30px;animation-name:expand-box-selector-preview;animation-duration:.5s;position:relative}.box-selector-preview .icon{position:absolute;bottom:-7px;right:-7px}.box-selector-select{color:#fffc;backdrop-filter:blur(2px);text-transform:uppercase;text-align:center;width:content-width;background-color:#00000080;border-radius:4px;padding:8px;font-weight:700}.box-selector-cancel{pointer-events:auto}.x-3deye-player__controls{padding:8px;display:flex}.x-3deye-player__controls .spacer{pointer-events:none;flex:1}.x-3deye-button.x-3deye-player__control{color:#fff9;background-color:#1a1e1dcc;border-radius:0;justify-content:center;align-items:center;width:38px;height:38px;display:flex}.x-3deye-player__controls--compact .x-3deye-player__control{padding:0}.x-3deye-player__controls--compact .x-3deye-player__control .icon,.x-3deye-player__control--reflowed{width:20px}.x-3deye-player__control+.x-3deye-player__control{border-left:1px solid #1a1e1d}.x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control:hover{color:#fff;background-color:#2a2e2d}.x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control:focus{z-index:1;background-color:#1a1e1dcc;box-shadow:0 0 0 .2rem #343a4080}.x-3deye-player__control:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.x-3deye-player__controls>.x-3deye-player__control:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.x-3deye-player__controls--spaced>.spacer+.x-3deye-player__control{border-top-left-radius:4px;border-bottom-left-radius:4px}.x-3deye-player__controls--spaced>.x-3deye-player__control.before-spacer{border-top-right-radius:4px;border-bottom-right-radius:4px}.x-3deye-button.x-3deye-player__control-close{background-color:#9c3331cc}.x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control-close:hover{background-color:#9c3331}.x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control-close:focus{background-color:#9c3331cc;box-shadow:0 0 0 .2rem #65142e80}.x-3deye-player--paused .x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control-playpause{background-color:#316a9ccc}.x-3deye-player--paused .x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control-playpause:hover{background-color:#316a9c}.x-3deye-player--paused .x-3deye-button.x-3deye-button:not(:disabled).x-3deye-player__control-playpause:focus{background-color:#316a9ccc;box-shadow:0 0 0 .2rem #14456580}.x-3deye-popover-container.popover-playbackrate{backdrop-filter:blur(2px);color:#fff;background:#1a1e1dcc;display:grid}.x-3deye-popover-container.popover-playbackrate .tip{--tip-background:#1a1e1dcc;--tip-border:transparent}.volume-control:hover .volume-range,.volume-control:focus .volume-range,.volume-control:focus-within .volume-range{visibility:visible;transition:visibility}.volume-range{--surface-inverse:#ffffff26;--surface-highlight-rgb:255,255,255;--primary-color:#0067ac;--on-primary-color:white;visibility:hidden;transform-origin:16px 12px;background-color:#1a1e1d80;border-radius:4px;justify-content:center;width:32px;height:140px;padding:16px 4px;transition:visibility 0s .5s;display:flex;position:absolute;bottom:100%;left:0}.x-3deye-button{color:inherit;user-select:none;letter-spacing:.0107143em;background:0 0;border:none;border-radius:4px;justify-content:center;align-items:center;height:32px;padding:0 8px;font-weight:500;display:inline-flex;position:relative}.x-3deye-button sup{position:relative;top:-.5em;left:.25em}.x-3deye-button.x-3deye-button--fullwidth{width:100%}.x-3deye-button:focus,.x-3deye-button.x-3deye-button:not(:disabled):hover{background-color:rgba(var(--surface-highlight-rgb),.1)}.x-3deye-button--icon{border-radius:16px;justify-content:center;align-items:center;width:32px;height:32px;padding:4px;display:inline-flex}.x-3deye-button--action .icon{opacity:.5}.x-3deye-button--action:hover .icon{opacity:1}.x-3deye-button:disabled{opacity:.4}.x-3deye-button:not(:disabled){cursor:pointer}.x-3deye-button.x-3deye-button--filled,.x-3deye-button.x-3deye-button--text{text-transform:capitalize;border-radius:.25rem;min-width:80px;padding:0 1rem;font-family:Roboto,sans-serif;font-size:.875rem;font-weight:500}.x-3deye-button.x-3deye-button--filled{color:#fff;background-color:#27b9a1}.x-3deye-button.x-3deye-button--filled:not(:disabled):hover{background-color:#22a38e}.x-3deye-button.x-3deye-button--filled:focus{transition:box-shadow .2s cubic-bezier(.215,.61,.355,1);box-shadow:0 0 0 2px #27b9a154}.x-3deye-button canvas{color:rgb(var(--surface-highlight-rgb))}.x-3deye-button--overlay{pointer-events:auto;color:#fff;background:#00000080;border:2px solid #ffffff40}.x-3deye-button.x-3deye-button--overlay:focus,.x-3deye-button.x-3deye-button--overlay:not(:disabled):hover{background:#00000080;border:2px solid #ffffff80}.x-3deye-button.x-3deye-button--overlay.x-3deye-button--overlay-danger:not(:disabled),.x-3deye-button.x-3deye-button--overlay.x-3deye-button--overlay-danger:not(:disabled):hover{background-color:#9c333180}.x-3deye-slider{align-items:center;display:flex;position:relative}.x-3deye-slider:focus-visible{outline:none}.x-3deye-slider.horizontal{width:100%;height:20px}.x-3deye-slider.vertical{flex-direction:column;width:20px;height:100%}.x-3deye-slider__track{background:var(--surface-inverse,gainsboro);flex:1;position:relative}.x-3deye-slider__bar{background-color:var(--primary-color,#0067ac);position:absolute}.x-3deye-slider.disabled .x-3deye-slider__bar{background-color:#a5a5a5}.x-3deye-slider.horizontal .x-3deye-slider__bar{top:0;bottom:0;left:0}.x-3deye-slider.vertical .x-3deye-slider__bar{bottom:0;left:0;right:0}.x-3deye-slider.horizontal .x-3deye-slider__track{height:3px}.x-3deye-slider.vertical .x-3deye-slider__track{width:3px}.x-3deye-slider__thumb{will-change:transform box-shadow;background:#fff;border-radius:50%;width:20px;height:20px;transition:box-shadow .15s cubic-bezier(.45,.05,.55,.95);box-shadow:0 0 0 6px #0064ff00,inset 0 0 0 1px #0000001a,1px 1px 2px #00000040}.x-3deye-slider:not(.disabled) .x-3deye-slider__thumb:hover,.x-3deye-slider:focus .x-3deye-slider__thumb{box-shadow:0 0 0 6px rgba(var(--surface-highlight-rgb,0,100,255),.1),0 0 0 1px #0000001a inset,1px 1px 2px 0 #00000040}.x-3deye-slider:focus .x-3deye-slider__thumb.active{box-shadow:0 0 0 6px rgba(var(--surface-highlight-rgb,0,100,255),.2),0 0 0 1px #0000001a inset,1px 1px 2px 0 #00000040}.x-3deye-slider.horizontal .x-3deye-slider__thumb{margin-left:-10px}.x-3deye-slider.vertical .x-3deye-slider__thumb{margin-bottom:-10px}.x-3deye-slider__label{pointer-events:none;touch-action:none;will-change:transform;background:var(--primary-color,#0067ac);color:var(--on-primary-color,white);transform-origin:bottom;border-radius:4px;width:fit-content;min-width:24px;padding:4px 8px;font-size:.75rem;transition:transform .15s cubic-bezier(.45,.05,.55,.95);position:relative;bottom:50%;left:50%;transform:translate(-50%,-100%)scale(0)}.x-3deye-slider__label.open,.x-3deye-slider:not(.disabled) .x-3deye-slider__thumb:hover .x-3deye-slider__label,.x-3deye-slider:focus .x-3deye-slider__label{transform:translate(-50%,-100%)scale(1)}.x-3deye-slider__label:before{content:"";border-left:5px solid #0000;border-right:5px solid #0000;border-top:5px solid var(--primary-color,#0067ac);width:0;height:0;display:block;position:absolute;top:100%;left:calc(50% - 5px)}.spinner{width:65px;height:65px;animation:1.5s linear infinite spinner-rotation}.spinner circle{stroke-dasharray:207.34;stroke-dashoffset:0;transform-origin:50%;animation:1.5s ease-in-out infinite spinner-dash}@keyframes spinner-rotation{0%{transform:rotate(0)}to{transform:rotate(270deg)}}@keyframes spinner-dash{0%{stroke-dashoffset:207.34px}50%{stroke-dashoffset:51.835px;transform:rotate(135deg)}to{stroke-dashoffset:207.34px;transform:rotate(450deg)}}.x-3deye-player__camera-name-popover{box-shadow:none;color:#fff;white-space:nowrap;background-color:#0f0f14cc}.x-3deye-popover-container.x-3deye-player__camera-name-popover svg{--tip-background:#0f0f14;opacity:.8}.x-3deye-player__camera-name-popover button.x-3deye-button{pointer-events:auto;font-size:inherit}.x-3deye-player__camera-name-popover button.x-3deye-button:hover{text-decoration:underline}.x-3deye-player__camera-name{text-shadow:1px 1px 1px #000;opacity:.8;cursor:pointer;backdrop-filter:blur(3px);background-color:#00000040;border-radius:16px;padding:2px 16px;line-height:16px}.x-3deye-player__camera-name:hover{text-decoration:underline}.x-3deye-live-indicator{user-select:none;color:#000000b3;text-transform:uppercase;opacity:.8;background-color:#fff;padding:0 5px;font-weight:700}.x-3deye-button--live{color:orange;text-shadow:1px 1px 1px #000;text-transform:uppercase;background-color:#00000040;border-radius:15px;height:24px;margin:0;padding:0 12px}.x-3deye-player__overlay .x-3deye-button-go-live:focus{box-shadow:0 0 2px orange}.x-3deye-delay-indicator:hover{text-decoration:underline}.x-3deye-delay-indicator{background-color:#00000040;border-radius:15px;padding:2px 8px}.x-3deye-player__playback-indicator{pointer-events:none;background-color:#00000080;border-radius:48px;width:48px;height:48px;padding:8px;animation:.5s linear forwards playback-indicator-fade-out;display:none;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}@keyframes playback-indicator-fade-out{0%{opacity:1;transform:translate(-50%,-50%)scale(1)}to{opacity:0;transform:translate(-50%,-50%)scale(2)}}.x-3deye-popover-container{color:#fff;text-align:left;background:#222;border-radius:6px;padding:8px;animation:.15s ease-in slide-in;box-shadow:0 12px 28px #0003,0 2px 4px #0000001a,inset 0 0 0 1px #ffffff0d}@media (prefers-reduced-motion:reduce){.x-3deye-popover-container{animation:none}}.x-3deye-popover-container .tip{--tip-background:#222;--tip-border:#ffffff0d}.ptz-popover.x-3deye-popover-container{box-shadow:none;color:#fffc;backdrop-filter:blur(1px);background-color:#0f0f14b3;border:1px solid #fff3;border-radius:6px}.ptz-popover .tip{--tip-background:#0f0f1480;--tip-border:#fff3}.ptz-popover{--surface-inverse:#ffffff26;--surface-highlight-rgb:255,255,255;--primary-color:#0067ac;--on-primary-color:white}.x-3deye-tooltip{color:#fff;background:#000000e6;border:1px solid #ffffff26;border-radius:4px;padding:.5em 1em;font-size:12px}.x-3deye-player__stats>summary{line-height:24px}.x-3deye-player__stats>summary:hover{text-decoration:underline}.x-3deye-player__stats dl{margin-top:0;margin-bottom:.75rem;font-size:.75rem;line-height:1.25rem;display:table}.x-3deye-player__stats dl>div{display:table-row}.x-3deye-player__stats dl>div>dt,.x-3deye-player__stats dl>div>dd{display:table-cell}.x-3deye-player__stats dl>div>dd{font-variant-numeric:tabular-nums;text-align:right;min-width:100px}.segmented-control-wrapper{background-color:var(--surface-inverse);border-radius:6px;display:inline-grid}.segmented-control{--indicator-offset:0%;grid-auto-columns:1fr;grid-auto-flow:column;margin:2px;display:grid;position:relative}.segmented-control-indicator{pointer-events:none;transform:translateX(var(--indicator-offset));height:100%;transition:all .2s ease-in-out;position:absolute}.segmented-control-indicator-inner{background:#fff;border-radius:6px;transition:all .2s;position:absolute;inset:0;transform:scale(1);box-shadow:0 0 5px #00000029}.segmented-control-indicator.active .segmented-control-indicator-inner{transform:scale(.95)}.segmented-control-button{color:currentColor;user-select:none;text-overflow:ellipsis;z-index:1;background:0 0;border:none;min-height:24px;margin:2px;font-family:inherit;overflow:hidden}.segmented-control-button:not(.current):hover{opacity:.6}.segmented-control-button.current{color:#000}
|