From def38e5438e62cb735e9babe3d257050b7114b46 Mon Sep 17 00:00:00 2001 From: Dhya Date: Sat, 19 Oct 2024 09:17:34 -0700 Subject: [PATCH] initial commit --- README.md | 23 +++++++++++++++++++++++ userChrome.css | 11 +++++++++++ 2 files changed, 34 insertions(+) create mode 100644 README.md create mode 100644 userChrome.css 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; +}