Basically I want a CSS selector that grabs all input[type=\"text\"] but that also has a class \"some-class\".
Both of the following don\'t seem to be working for me:
input[type="text"].some-class { .... }
with no space between "input[type="text"]" and ".some-class" will work..
input[type="text"]-space in between is the problem-.some-class {}