Просмотр исходного кода

fix(light theme): fixes issue with hidden queries in light theme, fixes #5697

Torkel Ödegaard 9 лет назад
Родитель
Сommit
a9cf7cd4f0
2 измененных файлов с 3 добавлено и 3 удалено
  1. 2 2
      public/sass/_variables.light.scss
  2. 1 1
      public/sass/components/_switch.scss

+ 2 - 2
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;

+ 1 - 1
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;