mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 16:09:18 +00:00
33 lines
969 B
CSS
33 lines
969 B
CSS
/* -------------------------------------------------------------------------- */
|
|
/* Global styles for the host document, outside of the Shadow DOM */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
video-player,
|
|
live-video-player,
|
|
media-i18n {
|
|
display: contents;
|
|
}
|
|
|
|
/*
|
|
Required to override any default video and image styles (such as
|
|
Tailwind's CSS reset) and ensure they fill the container as expected.
|
|
*/
|
|
video-player video,
|
|
video-player [slot="poster"],
|
|
live-video-player video,
|
|
live-video-player [slot="poster"] {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
video-player video::-webkit-media-text-track-container,
|
|
live-video-player video::-webkit-media-text-track-container {
|
|
z-index: 1;
|
|
font-family: inherit;
|
|
scale: 0.98;
|
|
translate: 0 var(--media-caption-track-y, 0);
|
|
transition: translate var(--media-caption-track-duration, 0) ease-out;
|
|
transition-delay: var(--media-caption-track-delay, 0);
|
|
}
|