initial commit

This commit is contained in:
Ray Elliott 2023-11-06 10:00:24 +00:00
commit bc5498a755
2 changed files with 25 additions and 0 deletions

9
.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
# Ignore everything in the repository
*
# Allow files in the 'chrome' directory
!/chrome/
!/chrome/*
# Allow .gitignore
!.gitignore

16
chrome/userChrome.css Normal file
View File

@ -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;
}