Bug 1583237 - Add fallback to set the in-content-deemphasized-text color in case the user has prefers-color-scheme set to dark but the in-content dark-mode pref is disabled. r=ntim

Differential Revision: https://phabricator.services.mozilla.com/D46859

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jared Wein 2019-09-23 21:08:58 +00:00
parent 43bd3da9a3
commit 0af2dda1a7

View File

@ -20,6 +20,11 @@
--in-content-deemphasized-text: #737373;
}
}
@supports not (-moz-bool-pref("browser.in-content.dark-mode")) {
:host {
--in-content-deemphasized-text: #737373;
}
}
form {
flex-grow: 1;