-
-
Notifications
You must be signed in to change notification settings - Fork 190
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
Download popup with light background on dark theme #250
Comments
This is surprising. I guess I should report it on the Bugzilla. |
Perhaps this media query doesn't applied properly. @media (-moz-toolbar-prefers-color-scheme: dark) {
} |
Although on a clean profile everything works just fine 🤔 Aand with a |
Seems like in Lines 1124 to 1137 in 24fe2cf
color: var(--in-content-page-color) !important;
background-color: var(--in-content-page-background) !important; have that effect on the popup window. Though disabling them.. makes it a little bit weird, as you can see below. |
As a result of the investigation, @media (-moz-toolbar-prefers-color-scheme: dark) {
} -> @media (prefers-color-scheme: dark) {
} mozilla/gecko-dev@c4b7109 |
Now will be works!! |
`layout.css.prefers-color-scheme.content-override` at 95+ - 0: dark - 1: light - 2: OS (old behavior) - 3: browser (the new default) Unfortunately, there are limits. - In Nightly - Works fine. - However, `-moz-toolbar-prefers-color-scheme: dark` should be removed as legacy. - Stable to Dev - If the system is in dark mode, it is unconditionally dark mode. - However, if the system is used in dark mode, the browser theme will also use dark mode, so it is not a very big side effect.
Hmm.. |
I found out something interesting. If |
Describe the bug
I recently noticed that when downloading files, a pop-up has white background even though I have dark theme set.
Expected behavior
The pop-up has background related to the theme.
Screenshots
Environment:
Additional context
Doing as said in #244 (comment) kind of solves the colors. Applying
userChrome.css
fromdev
branch doesn't help at all though. Are these issues related or is it something completely else?The text was updated successfully, but these errors were encountered: