From b215632a17945342f55a0a7a0beed749fe71456e Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 28 Oct 2015 14:11:36 +0100 Subject: [PATCH] CSS: Fix placeholder color on input.search refs #5543 --- public/css/icinga/forms.less | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/public/css/icinga/forms.less b/public/css/icinga/forms.less index 345db88d7..70e9ee9d0 100644 --- a/public/css/icinga/forms.less +++ b/public/css/icinga/forms.less @@ -21,6 +21,22 @@ input.search { &:focus { background-color: @body-bg-color; } + + &::-webkit-input-placeholder { + color: @text-color; + } + + &:-moz-placeholder { + color: @text-color; + } + + &::-moz-placeholder { + color: @text-color; + } + + &:-ms-input-placeholder { + color: @text-color; + } } input, select, textarea {