Could someone help me with changing opacity of disabled inputText?
<div class="ui-grid-col ui-grid-col-8">
<p:inputText disabled="true" value="#{someValue}"/>
</div>
In my css file I tried
.ui-state-disabled {
opacity: 0.95;
filter: Alpha(Opacity=95);
cursor: default !important;
}
for example, but it has no effect at all, how can I make it work?