I added this class to my .css:
.ui-state-disabled .boldText {
font-weight: bold !important;
opacity: .65 !important;
}
And I added this class to my inputText:
<p:inputText id="myInput" styleClass="boldText" value="#{myController.myValue}" />
Sadly this isn't doing anything only if I remove the .ui-state-disabled class. But I want to use this to change only the disabled behavior...
What am I missing here? Thank you.