入力タイプにはこのscss設定があります(フレームワークから)
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));
}
私はすべてをオーバーライド/リセットするのが好きです。
textarea,
input[type="*"],
{
@include box-shadow(none);
}
上記は機能しません。また、
textarea,
input,
{
@include box-shadow(none);
}
十分に具体的ではありません。可能なすべてのタイプをリストするよりもこれを行う方法はありますか。
ありがとう。