Created
July 14, 2011 20:02
-
-
Save wylkon/1083309 to your computer and use it in GitHub Desktop.
Pseudo Classes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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