additional background for acrylic popups if unsupported

This commit is contained in:
Andreas Nedbal 2022-05-14 15:00:30 +02:00 committed by Johann150
parent a253b5a386
commit 10d401afc2
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

@ -371,6 +371,20 @@ hr {
background: var(--acrylicPanel);
-webkit-backdrop-filter: var(--blur, blur(15px));
backdrop-filter: var(--blur, blur(15px));
@supports not (backdrop-filter: var(--blur, blur(15px))) {
&:after {
content: "";
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
z-index: -1;
background: var(--bg);
opacity: .75;
}
}
}
._formBlock {