commit def38e5438e62cb735e9babe3d257050b7114b46 Author: Dhya Date: Sat Oct 19 09:17:34 2024 -0700 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..a7ece9d --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# User Style Customizations for Thunderbird Supernova + + +Tweak the header pane subject and sender font to be a little smaller. + + +## Usage + +To enable: + +**Settings > General** > scroll to bottom & select **Config Editor** + +Search for `legacy` + +Change `toolkit.legacyUserProfileCustomizations.stylesheets` to 'true' + + + +To find your profile folder launch the Thunderbird binary with the -P switch or look for it in the Thunderbird configuration folder. + +On Linux it is under $HOME/.thunderbird/ + +Create 'chrome' directory in the profile folder and place `userChrome.css` in there. diff --git a/userChrome.css b/userChrome.css new file mode 100644 index 0000000..0b1c67d --- /dev/null +++ b/userChrome.css @@ -0,0 +1,11 @@ +/* header pane subject style */ +#expandedsubjectBox { + font-weight: 600 !important; + font-size: 15px !important; +} + +/* header pane sender address style */ +.recipient-multi-line-address { + font-weight: 500 !important; + font-size: 14px !important; +}