From 3a3d0e95daa0a2caff1388e0371499d13962c79c Mon Sep 17 00:00:00 2001 From: Geoff Montel Date: Tue, 9 Jul 2019 22:54:01 +0200 Subject: [PATCH] Adding black form styling. --- .../assets/themes/unsplash/custom_portal.css | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/portal/assets/themes/unsplash/custom_portal.css b/portal/assets/themes/unsplash/custom_portal.css index 3a02d9d..00d82a8 100644 --- a/portal/assets/themes/unsplash/custom_portal.css +++ b/portal/assets/themes/unsplash/custom_portal.css @@ -1,9 +1,7 @@ /* =============================================================================== - Unsplash themes for SSOWat's backgrounds - - WARNING: external images are queried from Unsplash API every time, which - makes this theme not suitable for off-the-internet clients... + This file contain extra CSS rules to customize the YunoHost user portal and + can be used to customize app tiles, buttons, etc... =============================================================================== */ @@ -24,7 +22,6 @@ body { } .ynh-user-portal { - /* If image is not yielded, fall back on traditional grey 'normal' background*/ background-image: url('https://source.unsplash.com/random/featured/?nature') !important; background-repeat: no-repeat; background-size: cover; @@ -60,6 +57,22 @@ body { border-radius: 5em; } +/* Make form black */ + +.login-form label::before { + background: #000; + color: #FFF; +} + +.login-form .form-group * { + background: #000; + color: #FFF; +} + +.icon { + background: #000; +} + .messages { border-radius: .5em; }