From 65bb4b2751196ed50f1b86da0594de37cf442735 Mon Sep 17 00:00:00 2001 From: "Marcus F." Date: Wed, 11 Feb 2026 23:01:37 +0100 Subject: [PATCH] Frio: Make login form background color respect dark theme --- view/theme/frio/css/style.css | 2 +- view/theme/frio/scheme/light.css | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 view/theme/frio/scheme/light.css diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 5165bc075b..b01becfee5 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -4093,7 +4093,7 @@ div.login-form, .login-content-wrapper, .mod-home.is-not-singleuser .login-form, .mod-login #content .login-form { - background-color: #fff; + background-color: $background_color; padding: 1.5em; position: relative; } diff --git a/view/theme/frio/scheme/light.css b/view/theme/frio/scheme/light.css new file mode 100644 index 0000000000..126c5a4281 --- /dev/null +++ b/view/theme/frio/scheme/light.css @@ -0,0 +1,15 @@ +/* + * SPDX-FileCopyrightText: 2010-2024 the Friendica project + * + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +/* + Licence : AGPL + Created on : 12.02.2026 + Author : Marcus Funch +*/ + +.mod-home.is-not-singleuser .login-form { + background: #fcfcfc; +}