Hi,
I 'm using crispy forms to generate Bootstrap forms and I would like to change the border color when selecting form fields. I found this CSS code snipped:
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
....
input[type="email"]:focus,
.uneditable-input:focus {
border-color: rgba(239, 64, 53, 0.8);
box-shadow: 0 1px 1px rgba(239, 64, 53, 0.075) inset, 0 0 8px rgba(239, 64, 53, 0.6);
outline: 0 none;
}
The problem is all input[type="..."] works very well but the textarea and the select fields won't change color
What am I missing?