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.

Revert "fix some grey overlays on the video player with some browsers"

This reverts commit 324cff18cc36361bda5c2db7f6e3eb04b19bf7d8.

Pas 29abc0cf 1f5049f7

+1 -6
+1 -4
src/components/player/atoms/ProgressBar.tsx
··· 62 62 className="h-24 border rounded-xl border-gray-800" 63 63 /> 64 64 )} 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 - > 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"> 69 66 {formattedTime} 70 67 </p> 71 68 </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", 102 101 fontWeight: styling.bold ? "bold" : "normal", 103 102 ...textEffectStyles, 104 103 }}
-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" }} 107 106 autoPlay 108 107 playsInline 109 108 ref={videoEl}