Skip to content

Commit a9cf7cd

Browse files
committed
fix(light theme): fixes issue with hidden queries in light theme, fixes grafana#5697
1 parent 44d1393 commit a9cf7cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

public/sass/_variables.light.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ $page-bg: $white;
6060
$body-color: $gray-1;
6161
$text-color: $gray-1;
6262
$text-color-strong: $white;
63-
$text-color-weak: $gray-1;
64-
$text-color-faint: $gray-3;
63+
$text-color-weak: $gray-3;
64+
$text-color-faint: $gray-4;
6565
$text-color-emphasis: $dark-5;
6666

6767
$text-shadow-strong: none;

public/sass/components/_switch.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $switch-height: 1.5rem;
6464
input + label::before {
6565
font-family: 'FontAwesome';
6666
content: "\f096"; // square-o
67-
color: $text-color-faint;
67+
color: $text-color-weak;
6868
transition: transform 0.4s;
6969
backface-visibility: hidden;
7070
text-shadow: $text-shadow-faint;

0 commit comments

Comments
 (0)