1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-27 07:39:49 +01:00

Merge pull request #929 from bitwarden/responsive-theme-change

Respond to OS theme changes
This commit is contained in:
Thomas Rittson 2021-06-03 07:47:07 +10:00 committed by GitHub
commit f0716c62d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

2
jslib

@ -1 +1 @@
Subproject commit 25a91313ad0441d1c02e043113f931f203fd57e6
Subproject commit b1d9b84eae451ec2edaf18b7256dd8361b0310ca

View File

@ -156,11 +156,11 @@ export function initFactory(): Function {
htmlEl.classList.add('locale_' + i18nService.translationLocale);
let theme = await storageService.get<string>(ConstantsService.themeKey);
if (theme == null) {
if (platformUtilsService.getDevice() === DeviceType.MacOsDesktop) {
theme = await platformUtilsService.getDefaultSystemTheme();
} else {
theme = 'light';
}
theme = await platformUtilsService.getDefaultSystemTheme();
platformUtilsService.onDefaultSystemThemeChange(sysTheme => {
window.document.documentElement.classList.remove('theme_light', 'theme_dark');
window.document.documentElement.classList.add('theme_' + sysTheme);
});
}
htmlEl.classList.add('theme_' + theme);
stateService.save(ConstantsService.disableFaviconKey,