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:
parent
9a79b194dd
commit
a0917148e8
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue