From 94b9ed53c2320be788e2f6ef28b104c66d956b18 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 30 Dec 2020 23:10:22 -0500 Subject: [PATCH] [frio] Vary Back to Top element depending on the theme accent/colors - Add specific support for dark/black schemes --- view/theme/frio/css/style.css | 4 ++-- view/theme/frio/php/default.php | 2 +- view/theme/frio/php/standard.php | 2 +- view/theme/frio/scheme/black.css | 8 +++++++- view/theme/frio/scheme/dark.css | 4 ++++ 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 927d557b4..80183b7d8 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -119,7 +119,7 @@ blockquote { #back-to-top { display: none; cursor: pointer; - color: white; + color: $nav_icon_color; position: fixed; z-index: 49; right: 20px; @@ -128,7 +128,7 @@ blockquote { font-size: 2.9em; padding: 0 12px 0 12px; border-radius: 10px; - background-color: #aaa; + background-color: $nav_bg; line-height: 1.5; } diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index cdac7d91f..c6b8f96e8 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -149,7 +149,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser"; -
+