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:
David Taylor 2025-01-21 23:48:14 +00:00 committed by GitHub
parent c266e4acb8
commit 83737aab5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
}
}