Do not uppercase the SponsorBlock categories

Avoid the `text-transform` on `label` by simply not using that tag.

Anyone who is better with CSS than I am, with an improved solution, is welcome to create a pull request.
This commit is contained in:
tcely 2025-02-01 22:45:57 -05:00 committed by GitHub
parent ae1042a3d0
commit a06bd29f88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
<!--<input type="{{ option.type }}" name="{{ option.name }}" value="{{ option.value }}" id="{{ option.value }}"><BR>
<label for="{{ option.value }}">{{option.label}}</label>-->
<label>
<div>
<input type="{{ option.type }}" name="{{ option.name }}" value="{{ option.value }}" id="{{ option.value }}" {% if option.selected %}checked{% endif %}>
<span>{{option.label}}</span>
</label>
</div>