From a9a81b8560414e4be8974e57d79d74c8e1d77906 Mon Sep 17 00:00:00 2001 From: Federico Zivolo Date: Sun, 10 Dec 2017 17:49:47 +0100 Subject: [PATCH] fix: form-control contrast on navbar-dark (fix #1227) --- scss/_navbar.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 0587013a..1651cc9b 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -13,3 +13,11 @@ flex: 1; } } + +// Needed to properly style inputs on dark background +.navbar-dark .form-control { + color: $white; + &::placeholder { + color: $navbar-dark-color; + } +}