diff --git a/appinfo/info.xml b/appinfo/info.xml index 3251bb6..bdf2c91 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -7,7 +7,7 @@ 📸🔀☁️ Zufällige Hintergrundbilder von Unsplash Show a new random featured nature photo in your nextcloud. Now with choosable motives! Zeigt ein zufällig ausgewähltes Naturfoto in ihrer Nextcloud. Jetzt auch mit selbstwählbaren Motiven! - 2.1.0 + 2.1.1 agpl Jan-Christoph Borchardt Marius Wieschollek diff --git a/lib/Controller/CssController.php b/lib/Controller/CssController.php index a30f1c8..73db657 100755 --- a/lib/Controller/CssController.php +++ b/lib/Controller/CssController.php @@ -155,6 +155,7 @@ private function getTintStyle(string $imagePath): string { $tintColor = $this->settings->getInstanceColor(); list($r, $g, $b) = sscanf($tintColor, "#%02x%02x%02x"); $colorStrenght = $this->settings->getColorStrength()/100; + $css .= "background-color: #fff !important;"; $css .= "background-image: "; $css .= "linear-gradient("; $css .= "rgba($r, $g, $b, $colorStrenght),";