WesselKroos / youtube-ambilight

This browser extension adds ambient light to YouTube videos
MIT License
87 stars 8 forks source link

Remove the on-hover shadow in theatre mode #232

Closed ArcticFox037 closed 5 months ago

ArcticFox037 commented 5 months ago

Is your feature request related to a problem? Please describe. By default, on hover the YT player puts a screen-width black shadow along the bottom while in theatre mode.

Describe the solution you'd like Add an option to disable this shadow

WesselKroos commented 5 months ago

Do you have a screenshot of this shadow? I'm wondering if we are seeing the same shadow.

ArcticFox037 commented 5 months ago

image Just above the title

WesselKroos commented 5 months ago

On bright videos it becomes very hard to scrub the timeline and use the controls when you remove the shadow. So, I won't be making this an option, to prevent confusion.

image

However, you can hide the shadow yourself via this css rule in the Stylus extension:

.ytp-gradient-bottom {
  display: none !important;
}
ArcticFox037 commented 5 months ago

Ah, I didn't consider that. But thank you for the CSS at least!