fix: disable experimental rounded view for macOS and adjust workspace indicator styling

This commit is contained in:
mr. M
2024-12-06 16:04:21 +01:00
parent f755ed9710
commit 12aa51c551
3 changed files with 16 additions and 1 deletions

View File

@@ -108,6 +108,13 @@ pref('zen.view.compact.toolbar-hide-after-hover.duration', 1000);
pref('zen.view.compact.color-toolbar', true);
pref('zen.view.compact.color-sidebar', true);
#ifdef XP_MACOSX
// Disable for macos in the meantime until @HarryHeres finds a solution for hight DPI screens
pref('zen.view.experimental-rounded-view', false);
#else
pref('zen.view.experimental-rounded-view', true);
#endif
pref('zen.glance.enabled', true);
pref('zen.glance.hold-duration', 300); // in ms

View File

@@ -19,5 +19,13 @@
:root[zen-no-padding='true'] &:not([zen-split="true"]) {
border-radius: 0 !important;
}
@media (-moz-bool-pref: 'zen.view.experimental-rounded-view') {
#tabbrowser-tabpanels {
mix-blend-mode: multiply;
-moz-osx-font-smoothing: grayscale;
isolation: isolate;
}
}
}
}

View File

@@ -423,7 +423,7 @@
}
& #zen-current-workspace-indicator-icon:not([hidden]) + #zen-current-workspace-indicator-name {
margin-left: 24px;
padding-left: 24px;
}
}