alice0775 / userChrome.js

457 stars 123 forks source link

Firefox 101 forces light color-scheme on tabs-tabpanels, affecting SidebarModoki.uc.js #71

Open ATechnocratis opened 2 years ago

ATechnocratis commented 2 years ago

Firefox 101 tabbox.css uses the have the following rules:

tab { color-scheme: light; } and 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; }