mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-14 20:23:53 +02:00
34 lines
859 B
CSS
34 lines
859 B
CSS
|
|
#urlbar[open][zen-floating-urlbar="true"] {
|
|
top: 50% !important;
|
|
transform: translateX(calc(var(--zen-sidebar-width, 273px) / 2)) translateY(-50%) !important;
|
|
}
|
|
|
|
.browserContainer {
|
|
will-change: filter;
|
|
transition: filter 0.2s ease-out;
|
|
}
|
|
|
|
#zen-appcontent-wrapper:has(#urlbar[zen-floating-urlbar="true"]) .browserContainer {
|
|
filter: blur(5px);
|
|
}
|
|
|
|
#tabbrowser-tabbox::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
border-radius: var(--zen-native-inner-radius);
|
|
|
|
will-change: background-color;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
transition: background-color 0.2s ease-out;
|
|
}
|
|
|
|
#zen-appcontent-wrapper:has(#urlbar[zen-floating-urlbar="true"]) #tabbrowser-tabbox::before {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|