CSS: make text of input.placeholder and input.value differentiable

refs #2767

Signed-off-by: Eric Lippmann <eric.lippmann@icinga.com>
This commit is contained in:
Alexander A. Klimov 2017-02-23 12:53:56 +01:00 committed by Eric Lippmann
parent 9a79b194dd
commit a0917148e8
1 changed files with 4 additions and 4 deletions

View File

@ -36,21 +36,21 @@ input[type="submit"] {
}
input:-moz-placeholder { // FF 18-
color: inherit;
color: @gray-light;
opacity: 1;
}
input::-moz-placeholder { // FF 19+
color: inherit;
color: @gray-light;
opacity: 1;
}
input:-ms-input-placeholder {
color: inherit;
color: @gray-light;
}
input::-webkit-input-placeholder {
color: inherit;
color: @gray-light;
}
input.search {