Enabled backdrop filter for other browsers

This commit is contained in:
Jelle Z 2018-10-07 20:52:44 +01:00 committed by GitHub
parent 7012c5f512
commit 3520aee921
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -196,8 +196,8 @@ a {
display: none
}
/* Webkit specific features */
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* Backdrop filter support for Webkit browsers */
@supports (-webkit-backdrop-filter: blur(0px)) {
.nav-wrapper { background-color: rgba(255,255,255,0.7); }
.nav-wrapper { -webkit-backdrop-filter: blur(10px); }
#footer { background-color: rgba(255,255,255,0.7); }
@ -208,8 +208,8 @@ a {
#guild-nav { -webkit-backdrop-filter: blur(10px); }
}
/* Microsoft Edge specific features */
@supports (-ms-ime-align: auto) {
/* Backdrop filter support for other browsers */
@supports (backdrop-filter: blur(0px)) {
.nav-wrapper { background-color: rgba(255,255,255,0.7); }
.nav-wrapper { backdrop-filter: blur(10px); }
#footer { background-color: rgba(255,255,255,0.7); }