The skip intro button works fine on the first stream after the Jellyfin Client is launched. However, subsequent streams doesn’t show the Skip Intro or Skip Credit button as a display: none property gets added in later streams, which prevents it from showing up. This PR cleans up all instances of the opacity css property as the button already uses the .hide class name, like many other Jellyfin Web elements to show and hide it.
Resolves issue #701.
The skip intro button works fine on the first stream after the Jellyfin Client is launched. However, subsequent streams doesn’t show the
Skip Intro
orSkip Credit
button as adisplay: none
property gets added in later streams, which prevents it from showing up.This PR cleans up all instances of theopacity
css property as the button already uses the.hide
class name, like many other Jellyfin Web elements to show and hide it.