theme-store/themes/3f316ff2-ede6-4610-888d-8be3f76f8e10/chrome.css
2025-02-11 23:20:44 +00:00

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);
}