From: Alexander Ebert Date: Fri, 9 Apr 2021 10:14:42 +0000 (+0200) Subject: Avoid the use of gradients involving the `transparent` keyboard X-Git-Tag: 5.3.6~25 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8f75a32572205a16d25de30042b337683748b57b;p=GitHub%2FWoltLab%2FWCF.git Avoid the use of gradients involving the `transparent` keyboard --- diff --git a/wcfsetup/install/files/style/ui/embeddedContent.scss b/wcfsetup/install/files/style/ui/embeddedContent.scss index 999292530c..15175ff8a4 100644 --- a/wcfsetup/install/files/style/ui/embeddedContent.scss +++ b/wcfsetup/install/files/style/ui/embeddedContent.scss @@ -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;