mirror of
https://codeberg.org/postscriptum/gemlog.git
synced 2026-02-19 22:42:39 +00:00
17 lines
No EOL
468 B
Text
17 lines
No EOL
468 B
Text
# CSS color-scheme in FireFox on FPR enabled
|
|
|
|
This CSS attribute ignored on the `resistFingerprinting` option is enabled in FireFox / LibreWolf:
|
|
|
|
``` css
|
|
color-scheme: light dark;
|
|
```
|
|
|
|
To resolve, I'm using following asset in the `about:config`:
|
|
|
|
```
|
|
privacy.resistFingerprinting = false
|
|
privacy.fingerprintingProtection = true
|
|
privacy.fingerprintingProtection.overrides = +AllTargets,-CSSPrefersColorScheme
|
|
```
|
|
|
|
=> https://bugzilla.mozilla.org/show_bug.cgi?id=1732114 |