From e847cafdbadafdf62f349d430c01ba512abbdab4 Mon Sep 17 00:00:00 2001 From: AlexandreBonneau Date: Tue, 18 Oct 2016 09:35:36 -1000 Subject: [PATCH 1/2] Set the default color for the search input Since the search input text color is not set, if a user has changed its default color (ie. when using a dark theme), then the search input text can be unreadable. --- themes/vue/source/css/_header.styl | 1 + 1 file changed, 1 insertion(+) diff --git a/themes/vue/source/css/_header.styl b/themes/vue/source/css/_header.styl index 7442af5c81..0340fad080 100644 --- a/themes/vue/source/css/_header.styl +++ b/themes/vue/source/css/_header.styl @@ -42,6 +42,7 @@ body.docs box-sizing border-box padding 0 15px 0 30px border 1px solid #e3e3e3 + color $light outline none border-radius 15px margin-right 10px From cd16f9113b88a7ae03aaba4d9914440a7133fb19 Mon Sep 17 00:00:00 2001 From: Chris Fritz Date: Tue, 18 Oct 2016 15:58:22 -0400 Subject: [PATCH 2/2] Update search color to $dark --- themes/vue/source/css/_header.styl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/vue/source/css/_header.styl b/themes/vue/source/css/_header.styl index 0340fad080..0584e57272 100644 --- a/themes/vue/source/css/_header.styl +++ b/themes/vue/source/css/_header.styl @@ -42,7 +42,7 @@ body.docs box-sizing border-box padding 0 15px 0 30px border 1px solid #e3e3e3 - color $light + color $dark outline none border-radius 15px margin-right 10px