Hi All,
I am working on ADF and using Jdev12.2.1.1 and want to change the placeholer text color on focus. For which I wrote following piece of code.
@agent gecko and (min-version: 19) {
af|inputText.R3InputText::content::-moz-placeholder {
color: red;
}
af|inputText::content:focus::-moz-placeholder{
color: red;
}
}
@agent webkit {
af|inputText::content::-webkit-input-placeholder{
color: red;
}
af|inputText::content:focus::-webkit-input-placeholder{
color: green;
}
}
This code is working only placeholder text and changing its color.
Could someone help me to find out the write way to change the PlaceHolder text color on focus.
Thanks