From 72f6817b009b88570566d15d8bd0c2607bc15fc0 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 4 Nov 2015 10:31:11 +0100 Subject: [PATCH] Let input.search inherit color for its placeholder refs #5543 --- public/css/icinga/forms.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/css/icinga/forms.less b/public/css/icinga/forms.less index d3d26afb9..42cccfec5 100644 --- a/public/css/icinga/forms.less +++ b/public/css/icinga/forms.less @@ -25,19 +25,19 @@ input.search { } &::-webkit-input-placeholder { - color: @text-color; + color: inherit; } &:-moz-placeholder { - color: @text-color; + color: inherit; } &::-moz-placeholder { - color: @text-color; + color: inherit; } &:-ms-input-placeholder { - color: @text-color; + color: inherit; } }