style(mica): apply heavy transparency

This commit is contained in:
Elian Doran 2024-12-07 01:07:23 +02:00
parent cdae9f075c
commit e21e0c6b38
No known key found for this signature in database
2 changed files with 9 additions and 1 deletions

View File

@ -412,6 +412,14 @@ body.layout-horizontal {
--native-titlebar-darwin-y-offset: 14 !important;
}
body.background-effects,
body.background-effects #root-widget {
background: transparent !important;
--launcher-pane-background-color: transparent;
--tab-background-color: transparent;
--active-tab-background-color: transparent;
}
/* Matches when the left pane is collapsed */
:has(#left-pane.hidden-int) {
--center-pane-border-radius: 0;

View File

@ -133,7 +133,7 @@ function getWindowExtraOpts() {
// Window effects (Mica)
// TODO: Apply only on Windows and allow the user to choose whether to activate it or not.
extraOpts.backgroundMaterial = "mica";
extraOpts.backgroundMaterial = "tabbed";
return extraOpts;
}