pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix some grey overlays on the video player with some browsers

Pas 324cff18 a7889d56

+6 -1
+4 -1
src/components/player/atoms/ProgressBar.tsx
··· 62 62 className="h-24 border rounded-xl border-gray-800" 63 63 /> 64 64 )} 65 - <p className="mt-1 mx-auto text-center border rounded-xl border-gray-800 px-3 py-1 backdrop-blur-lg bg-black bg-opacity-20 w-max"> 65 + <p 66 + className="mt-1 mx-auto text-center border rounded-xl border-gray-800 px-3 py-1 backdrop-blur-lg bg-black bg-opacity-20 w-max" 67 + style={{ isolation: "isolate" }} 68 + > 66 69 {formattedTime} 67 70 </p> 68 71 </div>
+1
src/components/player/base/SubtitleView.tsx
··· 98 98 styling.backgroundBlur !== 0 99 99 ? `blur(${Math.floor(styling.backgroundBlur * 64)}px)` 100 100 : "none", 101 + isolation: styling.backgroundBlur !== 0 ? "isolate" : "auto", 101 102 fontWeight: styling.bold ? "bold" : "normal", 102 103 ...textEffectStyles, 103 104 }}
+1
src/components/player/internals/VideoContainer.tsx
··· 103 103 <video 104 104 id="video-element" 105 105 className="absolute inset-0 w-full h-screen bg-black" 106 + style={{ isolation: "isolate" }} 106 107 autoPlay 107 108 playsInline 108 109 ref={videoEl}