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:
You want input.some-class[type="text"]
input.some-class[type="text"]
.some-class input looks for input tags that are descendants of .some-class.
.some-class input
.some-class
input.some-class does the reverse.
input.some-class