From bc5498a7559abaef6b4ef64ab991b29493d2c448 Mon Sep 17 00:00:00 2001 From: ray Date: Mon, 6 Nov 2023 10:00:24 +0000 Subject: [PATCH] initial commit --- .gitignore | 9 +++++++++ chrome/userChrome.css | 16 ++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .gitignore create mode 100644 chrome/userChrome.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..edae3c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Ignore everything in the repository +* + +# Allow files in the 'chrome' directory +!/chrome/ +!/chrome/* + +# Allow .gitignore +!.gitignore diff --git a/chrome/userChrome.css b/chrome/userChrome.css new file mode 100644 index 0000000..e752878 --- /dev/null +++ b/chrome/userChrome.css @@ -0,0 +1,16 @@ +* { + font-size: 10pt !important; +} + +#threadTree tbody { + color: #373737; +} + +#threadTree tbody tr { + opacity: 0.5; +} + +#threadTree tbody tr[data-properties~="tagged"], +#threadTree tbody tr[data-properties~="unread"] { + opacity: 1; +}