unified-video-framework 1.4.454 → 1.4.455
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 +1 -1
- package/packages/core/dist/version.d.ts +1 -1
- package/packages/core/dist/version.js +1 -1
- package/packages/core/src/version.ts +1 -1
- package/packages/web/dist/WebPlayer.d.ts.map +1 -1
- package/packages/web/dist/WebPlayer.js +11 -4
- package/packages/web/dist/WebPlayer.js.map +1 -1
- package/packages/web/src/WebPlayer.ts +11 -4
|
@@ -1897,6 +1897,7 @@ export class WebPlayer extends BasePlayer {
|
|
|
1897
1897
|
this.debugLog('[YouTube] Custom controls only mode - showing custom controls, hiding YouTube native controls');
|
|
1898
1898
|
this.playerWrapper.classList.remove('youtube-native-controls-mode');
|
|
1899
1899
|
this.playerWrapper.classList.add('youtube-custom-controls-mode');
|
|
1900
|
+
this.playerWrapper.classList.add('controls-visible');
|
|
1900
1901
|
this.showCustomControls();
|
|
1901
1902
|
} else if (!this.youtubeNativeControls && !this.useCustomControls && this.playerWrapper) {
|
|
1902
1903
|
// No controls mode - both YouTube native and custom controls are hidden
|
|
@@ -5668,8 +5669,8 @@ export class WebPlayer extends BasePlayer {
|
|
|
5668
5669
|
|
|
5669
5670
|
.uvf-player-wrapper:hover .uvf-controls-bar,
|
|
5670
5671
|
.uvf-player-wrapper.controls-visible .uvf-controls-bar {
|
|
5671
|
-
opacity: 1;
|
|
5672
|
-
transform: translateY(0);
|
|
5672
|
+
opacity: 1 !important;
|
|
5673
|
+
transform: translateY(0) !important;
|
|
5673
5674
|
}
|
|
5674
5675
|
|
|
5675
5676
|
.uvf-player-wrapper.no-cursor {
|
|
@@ -7124,8 +7125,8 @@ export class WebPlayer extends BasePlayer {
|
|
|
7124
7125
|
|
|
7125
7126
|
.uvf-player-wrapper:hover .uvf-top-bar,
|
|
7126
7127
|
.uvf-player-wrapper.controls-visible .uvf-top-bar {
|
|
7127
|
-
opacity: 1;
|
|
7128
|
-
transform: translateY(0);
|
|
7128
|
+
opacity: 1 !important;
|
|
7129
|
+
transform: translateY(0) !important;
|
|
7129
7130
|
}
|
|
7130
7131
|
|
|
7131
7132
|
/* Title Bar - After navigation buttons */
|
|
@@ -8842,18 +8843,24 @@ export class WebPlayer extends BasePlayer {
|
|
|
8842
8843
|
display: flex !important;
|
|
8843
8844
|
visibility: visible !important;
|
|
8844
8845
|
pointer-events: auto !important;
|
|
8846
|
+
opacity: 1 !important;
|
|
8847
|
+
transform: translateY(0) !important;
|
|
8845
8848
|
}
|
|
8846
8849
|
|
|
8847
8850
|
.uvf-player-wrapper.youtube-custom-controls-mode .uvf-top-bar {
|
|
8848
8851
|
display: flex !important;
|
|
8849
8852
|
visibility: visible !important;
|
|
8850
8853
|
pointer-events: auto !important;
|
|
8854
|
+
opacity: 1 !important;
|
|
8855
|
+
transform: translateY(0) !important;
|
|
8851
8856
|
}
|
|
8852
8857
|
|
|
8853
8858
|
.uvf-player-wrapper.youtube-custom-controls-mode .uvf-center-play-container {
|
|
8854
8859
|
display: flex !important;
|
|
8855
8860
|
visibility: visible !important;
|
|
8856
8861
|
pointer-events: auto !important;
|
|
8862
|
+
opacity: 1 !important;
|
|
8863
|
+
transform: scale(1) !important;
|
|
8857
8864
|
}
|
|
8858
8865
|
|
|
8859
8866
|
/* Override any inline styles */
|