Avoid the use of gradients involving the `transparent` keyboard
authorAlexander Ebert <ebert@woltlab.com>
Fri, 9 Apr 2021 10:14:42 +0000 (12:14 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 9 Apr 2021 10:14:42 +0000 (12:14 +0200)
wcfsetup/install/files/style/ui/embeddedContent.scss

index 999292530ca70b91fe55e26a062cfe9716d9eeb8..15175ff8a41a6ef7818f5d8916d83fa7d281efe8 100644 (file)
@@ -42,7 +42,8 @@
        position: relative;
 }
 .embeddedContentDescription::after {
-       background-image: linear-gradient(to top, $wcfContentBackground, transparent);
+       /* Do not use `transparent` here, because of an ancient iOS rendering bug. */
+       background-image: linear-gradient(to top, $wcfContentBackground, transparentize($wcfContentBackground, 1));
        bottom: 0;
        content: "";
        left: 0;