1input:focus{
2 border-color: inherit;
3 -webkit-box-shadow: none;
4 box-shadow: none;
5}
1//SCSS format
2
3input{
4 &:focus {
5 outline: none !important;
6 }
7}
8textarea{
9 &:focus {
10 outline: none !important;
11 }
12}
13
14
1input:focus, textarea:focus {
2 background-color: #FFFF66;
3 border: 1px solid #F47E58;
4}
5
1.input:focus {
2 outline: none !important;
3 border:1px solid red;
4 box-shadow: 0 0 10px #719ECE;
5}