mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-14 21:11:06 +00:00
Merge pull request #5071 from Simounet/fix/5064-auto-prefered-color-scheme
This commit is contained in:
commit
4aa818866b
3 changed files with 5 additions and 4 deletions
|
@ -63,9 +63,10 @@ function darkTheme() {
|
|||
};
|
||||
const preferedColorScheme = {
|
||||
choose() {
|
||||
if (this.isAvailable() && themeCookie.exists() === 0) {
|
||||
const themeCookieExists = themeCookie.exists();
|
||||
if (this.isAvailable() && !themeCookieExists) {
|
||||
const isPreferedColorSchemeDark = window.matchMedia('(prefers-color-scheme: dark)').matches === true;
|
||||
if (themeCookie.exists() === 0) {
|
||||
if (!themeCookieExists) {
|
||||
themeDom[isPreferedColorSchemeDark ? 'addClass' : 'removeClass'](rootEl);
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue