From a9cf7cd4f02b712fff85afc4c54c30597c8a1370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 1 Aug 2016 11:58:12 +0200 Subject: [PATCH] fix(light theme): fixes issue with hidden queries in light theme, fixes #5697 --- public/sass/_variables.light.scss | 4 ++-- public/sass/components/_switch.scss | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/sass/_variables.light.scss b/public/sass/_variables.light.scss index 90262a3134c..6392586f88e 100644 --- a/public/sass/_variables.light.scss +++ b/public/sass/_variables.light.scss @@ -60,8 +60,8 @@ $page-bg: $white; $body-color: $gray-1; $text-color: $gray-1; $text-color-strong: $white; -$text-color-weak: $gray-1; -$text-color-faint: $gray-3; +$text-color-weak: $gray-3; +$text-color-faint: $gray-4; $text-color-emphasis: $dark-5; $text-shadow-strong: none; diff --git a/public/sass/components/_switch.scss b/public/sass/components/_switch.scss index 72b980a772f..131a971fb2f 100644 --- a/public/sass/components/_switch.scss +++ b/public/sass/components/_switch.scss @@ -64,7 +64,7 @@ $switch-height: 1.5rem; input + label::before { font-family: 'FontAwesome'; content: "\f096"; // square-o - color: $text-color-faint; + color: $text-color-weak; transition: transform 0.4s; backface-visibility: hidden; text-shadow: $text-shadow-faint;