unified-video-framework 1.4.213 → 1.4.215
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.
|
@@ -4314,10 +4314,10 @@ export class WebPlayer extends BasePlayer {
|
|
|
4314
4314
|
top: 50%;
|
|
4315
4315
|
left: 50%;
|
|
4316
4316
|
transform: translate(-50%, -50%);
|
|
4317
|
-
background: rgba(0,0,0,0.
|
|
4317
|
+
background: rgba(0,0,0,0.88);
|
|
4318
4318
|
color: #fff;
|
|
4319
|
-
padding:
|
|
4320
|
-
border-radius:
|
|
4319
|
+
padding: 22px 32px;
|
|
4320
|
+
border-radius: 12px;
|
|
4321
4321
|
font-size: 24px;
|
|
4322
4322
|
font-weight: 600;
|
|
4323
4323
|
opacity: 0;
|
|
@@ -4327,7 +4327,9 @@ export class WebPlayer extends BasePlayer {
|
|
|
4327
4327
|
white-space: nowrap;
|
|
4328
4328
|
text-align: center;
|
|
4329
4329
|
min-width: auto;
|
|
4330
|
-
max-width:
|
|
4330
|
+
max-width: 400px;
|
|
4331
|
+
backdrop-filter: blur(16px);
|
|
4332
|
+
box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
|
|
4331
4333
|
}
|
|
4332
4334
|
|
|
4333
4335
|
/* Time-specific indicator styling */
|
|
@@ -4388,25 +4390,37 @@ export class WebPlayer extends BasePlayer {
|
|
|
4388
4390
|
pointer-events: none;
|
|
4389
4391
|
z-index: 2;
|
|
4390
4392
|
}
|
|
4391
|
-
.uvf-shortcut-indicator .uvf-ki-volume {
|
|
4392
|
-
|
|
4393
|
+
.uvf-shortcut-indicator .uvf-ki-volume {
|
|
4394
|
+
align-items: center;
|
|
4395
|
+
gap: 16px;
|
|
4396
|
+
}
|
|
4397
|
+
.uvf-shortcut-indicator .uvf-ki-vol-icon svg {
|
|
4398
|
+
width: 40px;
|
|
4399
|
+
height: 40px;
|
|
4400
|
+
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
|
|
4401
|
+
}
|
|
4393
4402
|
.uvf-shortcut-indicator .uvf-ki-vol-bar {
|
|
4394
|
-
width:
|
|
4395
|
-
height:
|
|
4396
|
-
background: rgba(255,255,255,0.
|
|
4397
|
-
border-radius:
|
|
4403
|
+
width: 220px;
|
|
4404
|
+
height: 10px;
|
|
4405
|
+
background: rgba(255,255,255,0.2);
|
|
4406
|
+
border-radius: 5px;
|
|
4398
4407
|
overflow: hidden;
|
|
4408
|
+
box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
|
|
4399
4409
|
}
|
|
4400
4410
|
.uvf-shortcut-indicator .uvf-ki-vol-fill {
|
|
4401
4411
|
height: 100%;
|
|
4402
4412
|
background: linear-gradient(90deg, var(--uvf-accent-1), var(--uvf-accent-2));
|
|
4413
|
+
border-radius: 5px;
|
|
4414
|
+
box-shadow: 0 1px 4px rgba(255,87,34,0.4);
|
|
4403
4415
|
}
|
|
4404
4416
|
.uvf-shortcut-indicator .uvf-ki-vol-text {
|
|
4405
|
-
font-size:
|
|
4406
|
-
font-weight:
|
|
4417
|
+
font-size: 20px;
|
|
4418
|
+
font-weight: 700;
|
|
4407
4419
|
color: var(--uvf-text-primary);
|
|
4408
|
-
min-width:
|
|
4420
|
+
min-width: 56px;
|
|
4409
4421
|
text-align: right;
|
|
4422
|
+
letter-spacing: 0.5px;
|
|
4423
|
+
text-shadow: 0 2px 6px rgba(0,0,0,0.4);
|
|
4410
4424
|
}
|
|
4411
4425
|
.uvf-shortcut-indicator .uvf-ki-text {
|
|
4412
4426
|
font-size: 18px;
|
|
@@ -4423,68 +4437,123 @@ export class WebPlayer extends BasePlayer {
|
|
|
4423
4437
|
/* Responsive shortcut/volume indicator for mobile and tablet */
|
|
4424
4438
|
@media screen and (max-width: 767px) {
|
|
4425
4439
|
.uvf-shortcut-indicator {
|
|
4426
|
-
padding:
|
|
4440
|
+
padding: 18px 26px;
|
|
4427
4441
|
font-size: 20px;
|
|
4428
|
-
max-width: calc(100vw -
|
|
4429
|
-
border-radius:
|
|
4430
|
-
backdrop-filter: blur(
|
|
4442
|
+
max-width: calc(100vw - 48px);
|
|
4443
|
+
border-radius: 16px;
|
|
4444
|
+
backdrop-filter: blur(12px);
|
|
4445
|
+
background: rgba(0,0,0,0.85);
|
|
4446
|
+
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
|
|
4431
4447
|
}
|
|
4432
4448
|
|
|
4433
|
-
/* Volume indicator -
|
|
4449
|
+
/* Volume indicator - vertical layout on mobile */
|
|
4434
4450
|
.uvf-shortcut-indicator .uvf-ki-volume {
|
|
4435
4451
|
flex-direction: column;
|
|
4436
|
-
gap:
|
|
4452
|
+
gap: 14px;
|
|
4453
|
+
align-items: center;
|
|
4437
4454
|
}
|
|
4438
4455
|
|
|
4439
4456
|
.uvf-shortcut-indicator .uvf-ki-vol-icon svg {
|
|
4440
|
-
width:
|
|
4441
|
-
height:
|
|
4457
|
+
width: 36px;
|
|
4458
|
+
height: 36px;
|
|
4459
|
+
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
|
|
4442
4460
|
}
|
|
4443
4461
|
|
|
4444
4462
|
.uvf-shortcut-indicator .uvf-ki-vol-bar {
|
|
4445
|
-
width: clamp(
|
|
4446
|
-
height:
|
|
4447
|
-
border-radius:
|
|
4463
|
+
width: clamp(220px, 75vw, 300px);
|
|
4464
|
+
height: 12px;
|
|
4465
|
+
border-radius: 6px;
|
|
4466
|
+
background: rgba(255,255,255,0.2);
|
|
4467
|
+
box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
|
|
4468
|
+
}
|
|
4469
|
+
|
|
4470
|
+
.uvf-shortcut-indicator .uvf-ki-vol-fill {
|
|
4471
|
+
height: 100%;
|
|
4472
|
+
border-radius: 6px;
|
|
4473
|
+
box-shadow: 0 1px 4px rgba(255,87,34,0.4);
|
|
4448
4474
|
}
|
|
4449
4475
|
|
|
4450
4476
|
.uvf-shortcut-indicator .uvf-ki-vol-text {
|
|
4451
|
-
font-size:
|
|
4477
|
+
font-size: 28px;
|
|
4452
4478
|
font-weight: 700;
|
|
4453
4479
|
min-width: auto;
|
|
4454
4480
|
text-align: center;
|
|
4455
4481
|
width: 100%;
|
|
4482
|
+
letter-spacing: 0.5px;
|
|
4483
|
+
text-shadow: 0 2px 8px rgba(0,0,0,0.5);
|
|
4456
4484
|
}
|
|
4457
4485
|
|
|
4458
|
-
/* Skip indicators -
|
|
4486
|
+
/* Skip indicators - optimized for mobile */
|
|
4459
4487
|
.uvf-shortcut-indicator .uvf-ki-skip {
|
|
4460
|
-
width:
|
|
4461
|
-
height:
|
|
4488
|
+
width: 96px;
|
|
4489
|
+
height: 96px;
|
|
4462
4490
|
}
|
|
4463
4491
|
|
|
4464
4492
|
.uvf-shortcut-indicator .uvf-ki-skip svg {
|
|
4465
|
-
width:
|
|
4466
|
-
height:
|
|
4493
|
+
width: 96px;
|
|
4494
|
+
height: 96px;
|
|
4495
|
+
filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
|
|
4467
4496
|
}
|
|
4468
4497
|
|
|
4469
4498
|
.uvf-shortcut-indicator .uvf-ki-skip .uvf-ki-skip-num {
|
|
4470
|
-
font-size:
|
|
4499
|
+
font-size: 20px;
|
|
4500
|
+
font-weight: 800;
|
|
4471
4501
|
}
|
|
4472
4502
|
|
|
4473
4503
|
/* Icon indicators */
|
|
4474
4504
|
.uvf-shortcut-indicator .uvf-ki svg {
|
|
4475
|
-
width:
|
|
4476
|
-
height:
|
|
4505
|
+
width: 60px;
|
|
4506
|
+
height: 60px;
|
|
4507
|
+
filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
|
|
4477
4508
|
}
|
|
4478
4509
|
|
|
4479
4510
|
.uvf-shortcut-indicator .uvf-ki-text {
|
|
4480
|
-
font-size:
|
|
4511
|
+
font-size: 17px;
|
|
4512
|
+
font-weight: 600;
|
|
4513
|
+
}
|
|
4514
|
+
}
|
|
4515
|
+
|
|
4516
|
+
/* Mobile landscape - more compact */
|
|
4517
|
+
@media screen and (max-width: 767px) and (orientation: landscape) {
|
|
4518
|
+
.uvf-shortcut-indicator {
|
|
4519
|
+
padding: 14px 20px;
|
|
4520
|
+
max-width: calc(100vw - 80px);
|
|
4521
|
+
}
|
|
4522
|
+
|
|
4523
|
+
.uvf-shortcut-indicator .uvf-ki-volume {
|
|
4524
|
+
flex-direction: row;
|
|
4525
|
+
gap: 12px;
|
|
4526
|
+
}
|
|
4527
|
+
|
|
4528
|
+
.uvf-shortcut-indicator .uvf-ki-vol-icon svg {
|
|
4529
|
+
width: 28px;
|
|
4530
|
+
height: 28px;
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4533
|
+
.uvf-shortcut-indicator .uvf-ki-vol-bar {
|
|
4534
|
+
width: clamp(140px, 50vw, 200px);
|
|
4535
|
+
height: 10px;
|
|
4536
|
+
}
|
|
4537
|
+
|
|
4538
|
+
.uvf-shortcut-indicator .uvf-ki-vol-text {
|
|
4539
|
+
font-size: 18px;
|
|
4481
4540
|
}
|
|
4482
4541
|
}
|
|
4483
4542
|
|
|
4484
4543
|
@media screen and (min-width: 768px) and (max-width: 1023px) {
|
|
4485
4544
|
/* Tablet optimization */
|
|
4545
|
+
.uvf-shortcut-indicator {
|
|
4546
|
+
padding: 18px 28px;
|
|
4547
|
+
border-radius: 14px;
|
|
4548
|
+
}
|
|
4549
|
+
|
|
4550
|
+
.uvf-shortcut-indicator .uvf-ki-volume {
|
|
4551
|
+
gap: 14px;
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4486
4554
|
.uvf-shortcut-indicator .uvf-ki-vol-bar {
|
|
4487
|
-
width:
|
|
4555
|
+
width: 180px;
|
|
4556
|
+
height: 10px;
|
|
4488
4557
|
}
|
|
4489
4558
|
|
|
4490
4559
|
.uvf-shortcut-indicator .uvf-ki-vol-icon svg {
|
|
@@ -4493,7 +4562,8 @@ export class WebPlayer extends BasePlayer {
|
|
|
4493
4562
|
}
|
|
4494
4563
|
|
|
4495
4564
|
.uvf-shortcut-indicator .uvf-ki-vol-text {
|
|
4496
|
-
font-size:
|
|
4565
|
+
font-size: 18px;
|
|
4566
|
+
font-weight: 600;
|
|
4497
4567
|
}
|
|
4498
4568
|
}
|
|
4499
4569
|
|