Skip to content

Instantly share code, notes, and snippets.

@wylkon
Created July 14, 2011 20:02
Show Gist options
  • Select an option

  • Save wylkon/1083309 to your computer and use it in GitHub Desktop.

Select an option

Save wylkon/1083309 to your computer and use it in GitHub Desktop.
Pseudo Classes
/* Custom Inputs Disabled */
/* Select */
select.disabled,
select[disabled],
select[disabled="disabled"],
select[disabled=""],
select[disabled="true"],
/* Input Disabled */
input.disabled,
input[disabled],
input[disabled="disabled"],
input[disabled=""],
input[disabled="true"]
{
color: #555 !important;
}
/* Input ReadOnly */
input.readonly,
input[readonly],
input[readonly="readonly"],
input[readonly=""],
input[readonly="true"]
{
color: #fff !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment