Created
February 8, 2024 08:56
-
-
Save mjf/8f45003310c0c3aca811c8750fb663cf to your computer and use it in GitHub Desktop.
Fix Firefox textarea ligature rendering bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Get your profile from about:support page. | |
* Create ~/.mozilla/firefox/<profile>/chrome directory. | |
* Place to ~/.mozilla/firefox/<profile>/chrome/userContent.css file. | |
* Run restorecon -R -F ~/.mozilla/firefox/<profile>/chrome on SELinux-enabled distros. | |
* Set toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config page. | |
* Restart Firefox and it should be working. | |
*/ | |
@-moz-document domain("www.example.com") { | |
textarea { | |
font-variant-ligatures: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment