Pattern:
:disabled
Definition:
The :disabled pseudo-class matches user interface elements that are in a disabled state (not able to accept user input).
Examples:
Style all <input> elements that are in a disabled state.
input:disabled { background-color: sienna; }