I need to change the style for a disabled input element in CSS.
You could use the following style with opacity
input[disabled="disabled"], select[disabled="disabled"], textarea[disabled="disabled"] { opacity: 0.85 !important; }
or a specific CSS class
.ui-state-disabled{ opacity: 0.85 !important; }