@vime/core
Version:
Customizable, extensible, accessible and framework agnostic media player.
25 lines (22 loc) • 447 B
CSS
/**
* @prop --vm-dbl-click-fullscreen-z-index: The position in the UI z-axis stack inside the player.
*/
:host {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: var(--vm-dbl-click-fullscreen-z-index);
}
.dblClickFullscreen {
display: none;
width: 100%;
height: 100%;
pointer-events: none;
}
.dblClickFullscreen.enabled {
display: inline-block;
pointer-events: auto;
}