We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firefox 101 tabbox.css uses the have the following rules:
tab { color-scheme: light; } and tabpanels { color-scheme: light; }
tab { color-scheme: light; }
tabpanels { color-scheme: light; }
Which causes the SidebarModoki tabs to be on light color-scheme no matter user prefs.
You can see the issue when using dark mode and going to the Downloads tab in SidebarModoki. . . .
Adding the following rule inside the stylesheet in SidebarModoki.uc.js or in userchrome.css fixes the issue.
#SM_tabpanels , #SM_tabs tab { color-scheme: normal !important; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Firefox 101 tabbox.css uses the have the following rules:
tab { color-scheme: light; }
andtabpanels { color-scheme: light; }
Which causes the SidebarModoki tabs to be on light color-scheme no matter user prefs.
You can see the issue when using dark mode and going to the Downloads tab in SidebarModoki.
.
.
.
Adding the following rule inside the stylesheet in SidebarModoki.uc.js or in userchrome.css fixes the issue.
#SM_tabpanels , #SM_tabs tab { color-scheme: normal !important; }
The text was updated successfully, but these errors were encountered: