diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-04-03 16:20:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-03 16:20:55 -0400 |
commit | f61690ea2c4b5142c470dbe288446afadae11dbc (patch) | |
tree | 46c6cfc0b6b1c86a33164c50ee59bb3462b25df6 /ext/settings.html | |
parent | 3150da92fed5cfb61b015ebc5ff11ab66d688b7f (diff) |
Theme updates (#2105)
* Change siteColor to siteTheme
* Fix potential null exception
* Simplify
* Update display theme assignment
* Add a data-browser-theme attribute
* Add "browser" option for theme
* Create ThemeController
* Add theme-controller.js to relevant pages
* Use ThemeController
* Simplify
* Fix 'light' being used instead of 'default'
* Update the settings values to more accurately reflect their usage
* Change default site theme in display.js
* Remove async
* Restore async for consistency
Diffstat (limited to 'ext/settings.html')
-rw-r--r-- | ext/settings.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/settings.html b/ext/settings.html index 6c218bb5..d6e8f3d4 100644 --- a/ext/settings.html +++ b/ext/settings.html @@ -664,16 +664,18 @@ <div class="settings-item-group-item"> <div class="settings-item-group-item-label">Body</div> <select data-setting="general.popupTheme" class="short-width short-height"> - <option value="default">Light</option> + <option value="light">Light</option> <option value="dark">Dark</option> + <option value="browser">Browser</option> </select> </div> <div class="settings-item-group-item"> <div class="settings-item-group-item-label">Shadow</div> <select data-setting="general.popupOuterTheme" class="short-width short-height"> - <option value="auto">Auto</option> - <option value="default">Light</option> + <option value="site">Auto</option> + <option value="light">Light</option> <option value="dark">Dark</option> + <option value="browser">Browser</option> </select> </div> </div> |