You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use styleboot mainly to make my UIs cleaner, especially after having already learned shortcuts for certain websites.
On YouTube for example, I removed most of the player buttons but apparently only some are removed while others are not, in particular I can't remove the "picture in picture" button (button.ytp-pip-button). The code is the same as the other keys but that one remains visible no matter what I do.
Can anyone help me? Maybe I'm doing something wrong?
Chrome 120.0.6099.225
Win11 23H2 22635.2915
The text was updated successfully, but these errors were encountered:
This comment is a bit late, but if you're still having the problem:
This is not a bug with stylebot.
The PiP button is from an extension, it's not something from official Youtube.
I use the Enhancer for YouTube™ extension, which has this button, and uses a bit of weird styling to make the button.
Image
Because it has display: inline-block !important;, and uses a more specific selector, your display: none; is being overridden.
To fix this, you need to also have a specific css selector (stylebot automatically adds !important, so you don't need to add it).
I use styleboot mainly to make my UIs cleaner, especially after having already learned shortcuts for certain websites.
On YouTube for example, I removed most of the player buttons but apparently only some are removed while others are not, in particular I can't remove the "picture in picture" button (button.ytp-pip-button). The code is the same as the other keys but that one remains visible no matter what I do.
Can anyone help me? Maybe I'm doing something wrong?
Chrome 120.0.6099.225
Win11 23H2 22635.2915
The text was updated successfully, but these errors were encountered: