Skip to content

Commit

Permalink
Fixed text color in settings when using a dark color scheme.
Browse files Browse the repository at this point in the history
  • Loading branch information
peci1 committed Nov 8, 2022
1 parent 27935d6 commit 32e14eb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.zip
*.xpi
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
[![Gitter](https://badges.gitter.im/more-snooze/community.svg)](https://gitter.im/more-snooze/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

# More Snooze

A Thunderbird and Lightning addon which allows to **customize the snooze times menu when snoozing calendar event alarms**.
A [Thunderbird and Lightning addon](https://addons.thunderbird.net/cs/thunderbird/addon/more-snooze/) which allows to **customize the snooze times menu when snoozing calendar event alarms**.

## Compatibility Table

Version 1.x is for Thunderbird up to version 67. Version 2.x is for Thunderbird 68 and newer. Version 3.x is for Thunderbird 78 and newer.
| Addon Version | Thunderbird Versions |
|---------------|----------------------|
| 3.3+ | \>= 102 |
| 3.0 - 3.2 | 78 - 101 |
| 2.* | 68 - 77 |
| 1.* | < 67 |

![Screenshot](doc/screenshot.png)
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "3.3",
"version": "3.3.1",
"author": "Martin Pecka",
"homepage_url": "https://github.com/peci1/more-snooze",
"default_locale": "en",
Expand Down
7 changes: 7 additions & 0 deletions skin/moresnooze.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,10 @@
#moresnooze_selectall,
#moresnooze_deselectall,
#moresnooze_reload { min-width: 20px; }

@media (prefers-color-scheme: dark) {
body {
background-color: #23222b;
color: rgb(249, 249, 250);
}
}

0 comments on commit 32e14eb

Please sign in to comment.