fix(client): additional background for acrylic popups if unsupported
This commit is contained in:
parent
9fc5e8688f
commit
0db2051480
|
@ -385,6 +385,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 {
|
||||
|
|
Loading…
Reference in New Issue