mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Restore footer-nav backdrop-filter for iOS < 18 (#30914)
This was inadvertantly removed in
d88ee33eb6
See https://meta.discourse.org/t/348262/4
This commit is contained in:
parent
c266e4acb8
commit
83737aab5f
@ -78,6 +78,10 @@ html.footer-nav-visible {
|
||||
@supports (-webkit-backdrop-filter: blur(10px)) {
|
||||
html:not(.footer-nav-ipad) .footer-nav {
|
||||
background-color: rgba(var(--header_background-rgb), 0.7);
|
||||
|
||||
/* prefix needed for iOS < 18 */
|
||||
/* stylelint-disable-next-line property-no-vendor-prefix */
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
backdrop-filter: blur(20px);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user