-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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-style userChrome.css #370
Comments
Sure but I must clarify that This is already available in the nightlys. |
I accidentally switched to Light theme, and my |
Which is totally fine... your style is your style and only yours. If you want to handle the light theme case you can just add some different rules for that using the media query: |
Please elaborate more. I'm totally dumb about CSS. I simply want my modifications to only apply to the Dark theme. |
Oh, in that case you can put your modifications inside the media query that filters for dark color scheme: (assuming you are using the config I left you yesterday) @media (prefers-color-scheme: dark) {
Tab {
background-color: #3f4b58!important;
color: var(--font);
}
Tab:hover {
background-color: #5f6b78!important;
}
Tab:selected {
background-color: #171819!important;
}
} |
Like in Firefox, disabled by default. Must be enabled in Settings to use.
The text was updated successfully, but these errors were encountered: