Replaced a hard-wired color value, Safari fix
authorAlexander Ebert <ebert@woltlab.com>
Tue, 7 Sep 2021 21:00:29 +0000 (23:00 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Tue, 7 Sep 2021 21:00:29 +0000 (23:00 +0200)
wcfsetup/install/files/style/ui/contentItem.scss
wcfsetup/install/files/style/ui/embeddedContent.scss

index 872b8a78664eb516a79bd79c220e61e09f47c61a..e03709ac99e5b98d33b4ceddf57d62f840558579 100644 (file)
@@ -70,7 +70,7 @@
        position: relative;
 
        &::after {
-               background-image: linear-gradient(to top, $wcfContentBackground, transparent);
+               background-image: linear-gradient(to top, $wcfContentBackground, transparentize($wcfContentBackground, 100%));
                bottom: 0;
                content: "";
                height: 30px;
index c50e6f36c17f85fc90dcb3c3244947895d979ab8..9b4084c52c7c297238345bef3e2d97ca3fa0cb43 100644 (file)
@@ -76,7 +76,7 @@
        position: relative;
 
        &::after {
-               background-image: linear-gradient(to top, rgba(250, 250, 250, 1), rgba(250, 250, 250, 0));
+               background-image: linear-gradient(to top, $wcfContentBackground, transparentize($wcfContentBackground, 100%));
                content: "";
                left: 0;
                height: #{$wcfFontLineHeight}em;