Hi Guys,
I am working on ADF and JDev12.2.1.1 version.
Here I want to change the placeholder text color on focus. I override the default property and it is changing the color Placeholder Text fine.
But not working when component get focused. I also referred the following URL but it did not help me.
Selectors for Skinning ADF Faces Components
// This is working fine and change the color of PlaceHolder Text
.AFTextTertiaryColor:alias{
color:Green;
}
// Its not working, Is it some wrong with this syntax.
.AFTextTertiaryColor:alias:focus{
color: Green;
}
I am using alta-v1.desktop theme for my project.
Could someone help me to find out the correct solution for this.
Thanks in advance.