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; }