I am attempting to add "tab-highlights" similar to the ones shown above the form in the screenshot to my "input" elements. This will help users know which field they are currently focused on or have clicked.
I have tried using "focus" and "::selection" to change the left side border of the input field to turn blue when selected, but it did not work as expected. I am now stuck and need new ideas to achieve this effect.
https://codepen.io/anon/pen/QRybBr
.section1 .uk-input:focus{
background:#EAEEF2;
border: 1px, solid, black !important;
}
The image above is basically what I am aiming for (please excuse the PHP content).
While I can successfully change the background color of the input when focused on, I am having trouble changing the border color - it remains blue despite my attempts.