CSS: Fix placeholder color on input.search

refs #5543
This commit is contained in:
Eric Lippmann 2015-10-28 14:11:36 +01:00
parent fb961fefd2
commit b215632a17
1 changed files with 16 additions and 0 deletions

View File

@ -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 {