[1681958 views]

[]

Odi's astoundingly incomplete notes

New entries | Code

Grey background in Firefox 46, Thunderbird 52

Firefox 46 and Thunderbird 52 have enabled GTK3 support on Linux. This affects the default background color of web pages that don't specify it. To resolve it, put a custom CSS into your profile folder.

~.mozilla/firefox/*.default/chrome/userContent.css:
~.thunderbird/*.default/chrome/userContent.css:
body {
 background-color: white;
}
GTK3 also affects scrollbar behaviour and the size of form elements.

posted on 2016-04-28 12:37 UTC in Code | 1 comments | permalink
Thanks mate ! That is a nice tweak !