Let input.search inherit color for its placeholder

refs #5543
This commit is contained in:
Eric Lippmann 2015-11-04 10:31:11 +01:00
parent e005e0b666
commit 72f6817b00

View File

@ -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;
}
}