unified-video-framework 1.4.282 → 1.4.283

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unified-video-framework",
3
- "version": "1.4.282",
3
+ "version": "1.4.283",
4
4
  "description": "Cross-platform video player framework supporting iOS, Android, Web, Smart TVs (Samsung/LG), Roku, and more",
5
5
  "main": "packages/core/dist/index.js",
6
6
  "types": "packages/core/dist/index.d.ts",
@@ -357,8 +357,8 @@ export class GoogleAdsManager {
357
357
  const style = document.createElement('style');
358
358
  style.id = 'uvf-skip-btn-styles';
359
359
  style.textContent = `
360
- /* Google IMA Skip Ad Button - Very specific targeting */
361
- .videoAdUiSkipButton {
360
+ /* Google IMA Skip Ad Button - Correct class targeting */
361
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton {
362
362
  position: absolute !important;
363
363
  bottom: 80px !important;
364
364
  right: 20px !important;
@@ -376,19 +376,19 @@ export class GoogleAdsManager {
376
376
  -webkit-backdrop-filter: blur(10px) !important;
377
377
  }
378
378
 
379
- .videoAdUiSkipButton:hover {
379
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton:hover {
380
380
  background: rgba(0, 0, 0, 0.9) !important;
381
381
  border-color: rgba(255, 255, 255, 0.5) !important;
382
382
  transform: scale(1.05) !important;
383
383
  }
384
384
 
385
- .videoAdUiSkipButton:active {
385
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton:active {
386
386
  transform: scale(0.95) !important;
387
387
  }
388
388
 
389
389
  /* Mobile responsive */
390
390
  @media (max-width: 767px) {
391
- .videoAdUiSkipButton {
391
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton {
392
392
  bottom: 70px !important;
393
393
  right: 50% !important;
394
394
  transform: translateX(50%) !important;
@@ -396,7 +396,7 @@ export class GoogleAdsManager {
396
396
  font-size: 12px !important;
397
397
  }
398
398
 
399
- .videoAdUiSkipButton:hover {
399
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton:hover {
400
400
  transform: translateX(50%) scale(1.05) !important;
401
401
  }
402
402
  }
@@ -594,8 +594,8 @@ export class GoogleAdsManager {
594
594
  const style = document.createElement('style');
595
595
  style.id = 'uvf-skip-btn-styles';
596
596
  style.textContent = `
597
- /* Google IMA Skip Ad Button - Very specific targeting */
598
- .videoAdUiSkipButton {
597
+ /* Google IMA Skip Ad Button - Correct class targeting */
598
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton {
599
599
  position: absolute !important;
600
600
  bottom: 80px !important;
601
601
  right: 20px !important;
@@ -613,19 +613,19 @@ export class GoogleAdsManager {
613
613
  -webkit-backdrop-filter: blur(10px) !important;
614
614
  }
615
615
 
616
- .videoAdUiSkipButton:hover {
616
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton:hover {
617
617
  background: rgba(0, 0, 0, 0.9) !important;
618
618
  border-color: rgba(255, 255, 255, 0.5) !important;
619
619
  transform: scale(1.05) !important;
620
620
  }
621
621
 
622
- .videoAdUiSkipButton:active {
622
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton:active {
623
623
  transform: scale(0.95) !important;
624
624
  }
625
625
 
626
626
  /* Mobile responsive */
627
627
  @media (max-width: 767px) {
628
- .videoAdUiSkipButton {
628
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton {
629
629
  bottom: 70px !important;
630
630
  right: 50% !important;
631
631
  transform: translateX(50%) !important;
@@ -633,7 +633,7 @@ export class GoogleAdsManager {
633
633
  font-size: 12px !important;
634
634
  }
635
635
 
636
- .videoAdUiSkipButton:hover {
636
+ .videoAdUiSkipButton.videoAdUiAction.videoAdUiRedesignedSkipButton:hover {
637
637
  transform: translateX(50%) scale(1.05) !important;
638
638
  }
639
639
  }