One issue I am encountering is the focus shadow that appears when the input text is focused. My goal is to have both the text input and the right button display a focus border.
To illustrate this problem, I have created a JSfiddle: http://jsfiddle.net/a5upvc82/3/
In the example, you can observe that the box shadow does not show between the text input and the right append button when the input is focused. How can this be resolved? It seems that the issue lies within this section of the code:
&:focus + .input-group-append .btn {
border-color: #20adc1;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #21dff3;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #21dff3;
}
What could be causing this error?