joshuagatcke / HTML-KickStart

Ultra–Lean HTML Building Blocks for Rapid Website Production
http://www.99lime.com
MIT License
1.22k stars 244 forks source link

Correct typo in disabled selector for input and select #73

Open JohanGovers opened 9 years ago

JohanGovers commented 9 years ago

The selectors for input and select worked for disabled="disabled" but not when only using disabled. This commit changes the selector from input.disabled to input:disabled.

groteworld commented 9 years ago

This should keep the selector input.disabled. It allows the use of that styling with the disabled class. I would suggest adding the input:disabled selector in addition to the others.

JohanGovers commented 9 years ago

I agree. The fork is updated with input:disabled added in addition to the previous selectors.