unified-video-framework 1.4.457 → 1.4.459
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 +3 -2
- package/packages/web/dist/WebPlayer.js.map +1 -1
- package/packages/web/src/WebPlayer.ts +3 -2
|
@@ -1927,7 +1927,7 @@ export class WebPlayer extends BasePlayer {
|
|
|
1927
1927
|
controlsBar.style.opacity = '1';
|
|
1928
1928
|
controlsBar.style.pointerEvents = 'auto';
|
|
1929
1929
|
controlsBar.style.zIndex = '100';
|
|
1930
|
-
controlsBar.style.position = '
|
|
1930
|
+
controlsBar.style.position = 'absolute'; // Anchor to bottom of player wrapper
|
|
1931
1931
|
}
|
|
1932
1932
|
|
|
1933
1933
|
const topBar = document.querySelector('.uvf-top-bar') as HTMLElement;
|
|
@@ -8996,12 +8996,13 @@ export class WebPlayer extends BasePlayer {
|
|
|
8996
8996
|
|
|
8997
8997
|
/* Ensure controls bar is positioned correctly and visible */
|
|
8998
8998
|
.uvf-player-wrapper.youtube-custom-controls-mode .uvf-controls-bar {
|
|
8999
|
-
position:
|
|
8999
|
+
position: absolute !important;
|
|
9000
9000
|
bottom: 0 !important;
|
|
9001
9001
|
left: 0 !important;
|
|
9002
9002
|
right: 0 !important;
|
|
9003
9003
|
z-index: 100 !important;
|
|
9004
9004
|
display: flex !important;
|
|
9005
|
+
flex-direction: column !important;
|
|
9005
9006
|
visibility: visible !important;
|
|
9006
9007
|
pointer-events: auto !important;
|
|
9007
9008
|
opacity: 1 !important;
|