From 8c65c0ccf90eed28c112835a6409a9db2821ec75 Mon Sep 17 00:00:00 2001 From: Vinzenz Vietzke Date: Mon, 12 Oct 2020 23:18:53 +0200 Subject: [PATCH 1/3] move checkbox settings to schemes --- view/theme/frio/scheme/black.css | 5 +++++ view/theme/frio/scheme/dark.css | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/view/theme/frio/scheme/black.css b/view/theme/frio/scheme/black.css index 3d4c67fa3..263322db2 100644 --- a/view/theme/frio/scheme/black.css +++ b/view/theme/frio/scheme/black.css @@ -82,6 +82,11 @@ input[type=range] { color: $font_color_darker; } +.radio label::before, +.checkbox label::before { + background-color: $background_color; +} + .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover, diff --git a/view/theme/frio/scheme/dark.css b/view/theme/frio/scheme/dark.css index 411a5811c..bf5a347d1 100644 --- a/view/theme/frio/scheme/dark.css +++ b/view/theme/frio/scheme/dark.css @@ -83,6 +83,11 @@ input[type=range] { color: $font_color_darker; } +.radio label::before, +.checkbox label::before { + background-color: $background_color; +} + .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover, From bfa85c25558436d27925616ada993d7f16d0c717 Mon Sep 17 00:00:00 2001 From: Vinzenz Vietzke Date: Mon, 12 Oct 2020 23:19:09 +0200 Subject: [PATCH 2/3] replace default checkbox color --- view/theme/frio/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 1fa2d6179..d361b6360 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -2044,7 +2044,7 @@ p.wall-item-announce, .radio label::before, .checkbox label::before { - background-color: $background_color; + background-color: $nav_bg; } .radio label::after { background-color: $link_color; From 5e3670c2d03021bb30ebe3ff8839b1ce13e0e283 Mon Sep 17 00:00:00 2001 From: vinzv Date: Mon, 12 Oct 2020 23:24:27 +0200 Subject: [PATCH 3/3] move from nav_bg color to static background color --- view/theme/frio/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index d361b6360..88397fb6c 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -2044,7 +2044,7 @@ p.wall-item-announce, .radio label::before, .checkbox label::before { - background-color: $nav_bg; + background-color: rgba(255,255,255,$contentbg_transp); } .radio label::after { background-color: $link_color;