1
How can I add a border to the PiP window?
(lemmy.world)
One thing you could do is like this:
html[windowtype="Toolkit:PictureInPicture"] > body::after {
content: "";
position: absolute;
top: 0;
height: 100%;
width: 100%;
outline: 2px solid red;
outline-offset: -2px;
pointer-events: none;
}
Yes, it works perfectly fine! Thank you very much!
Post your unsupported Firefox customizations here!
From the makers of r/FirefoxCSS
Links
Related