diff --git a/src/components/player/atoms/ProgressBar.tsx b/src/components/player/atoms/ProgressBar.tsx index 90b91dcc..17af477a 100644 --- a/src/components/player/atoms/ProgressBar.tsx +++ b/src/components/player/atoms/ProgressBar.tsx @@ -62,7 +62,10 @@ function ThumbnailDisplay(props: { at: number; show: boolean }) { className="h-24 border rounded-xl border-gray-800" /> )} -

+

{formattedTime}

diff --git a/src/components/player/base/SubtitleView.tsx b/src/components/player/base/SubtitleView.tsx index 83a6946b..3339d315 100644 --- a/src/components/player/base/SubtitleView.tsx +++ b/src/components/player/base/SubtitleView.tsx @@ -98,6 +98,7 @@ export function CaptionCue({ styling.backgroundBlur !== 0 ? `blur(${Math.floor(styling.backgroundBlur * 64)}px)` : "none", + isolation: styling.backgroundBlur !== 0 ? "isolate" : "auto", fontWeight: styling.bold ? "bold" : "normal", ...textEffectStyles, }} diff --git a/src/components/player/internals/VideoContainer.tsx b/src/components/player/internals/VideoContainer.tsx index 89d34433..ff935d51 100644 --- a/src/components/player/internals/VideoContainer.tsx +++ b/src/components/player/internals/VideoContainer.tsx @@ -103,6 +103,7 @@ function VideoElement() {