peopleinside Can I report a small issue maybe present also before?
Checkboxes like when you flag a post and need select an option or the check box to stay logged still have dark background if the light theme is active. Can be this fixed? The issue is resolved if the extension night mode is turned off.
Another small issue with the new extension is that night mode miss the night mode text.
Yes it can I've just reported this issue on the repo. In the meantime if you wish to fix it yourself use HTML Head Items to add:
<meta name="color-scheme" content="light dark">
It won't remove the wrong meta tat but adding a duplicate tag will fix the issue there, and then in Appearance > Custom Styles add this to your custom CSS:
:root {
color-scheme: light dark;
}
Walys Can be hide via custom CSS?
#header .Header-controls>.item-nightmode {
display: none;
}