Added per workspace support for gradients and animations

This commit is contained in:
mr. M
2024-10-25 15:11:35 +02:00
parent c4502c2762
commit 5c565def63
3 changed files with 23 additions and 1 deletions

View File

@@ -25,6 +25,16 @@
}
}
@keyframes zen-main-app-wrapper-animation {
from {
transform: translate(0, 0);
opacity: 1;
}
to {
transform: translate(50%, 100%);
}
}
@keyframes zen-jello-out-animation {
0% {
transform: scale3d(1, 1, 1);

View File

@@ -41,6 +41,18 @@
#zen-main-app-wrapper {
background: var(--zen-main-browser-background);
&[animating='true']::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--zen-main-browser-background-old);
backdrop-filter: blur(5px);
animation: zen-main-app-wrapper-animation 1s ease-in-out forwards;
}
}
#tabbrowser-tabbox {