I have some input type has this scss setting (from the framework)
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
...
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
{
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
}
I like to override/reset all, something similar
textarea,
input[type="*"],
{
@include box-shadow(none);
}
above doesn't work, Also
textarea,
input,
{
@include box-shadow(none);
}
not specific enough. Is there a way to do this than listing all possible types.
Thanks.