mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-26 15:07:03 +01:00
Enabled backdrop filter support for other browsers
This commit is contained in:
parent
3520aee921
commit
f8e40fae3f
@ -163,8 +163,8 @@ display: none
|
||||
border: 2px solid #5a5a5a;
|
||||
}
|
||||
|
||||
/* 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(0,0,0,0.7); }
|
||||
.nav-wrapper { -webkit-backdrop-filter: blur(10px); }
|
||||
#footer { background-color: rgba(0,0,0,0.7); }
|
||||
@ -175,8 +175,8 @@ display: none
|
||||
#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(0,0,0,0.7); }
|
||||
.nav-wrapper { backdrop-filter: blur(10px); }
|
||||
#footer { background-color: rgba(0,0,0,0.7); }
|
||||
|
Loading…
Reference in New Issue
Block a user