Input border flicker in Chrome 26.0.1410.64
Created by: garoevans
I didn't test this anywhere else. But transition was causing a 0.2 second transition from the browser's default 2px border to the set 1px border.
I've fixed this by adding the following in my own css;
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
-webkit-transition: border linear 0s;
-moz-transition: border linear 0s;
-o-transition: border linear 0s;
transition: border linear 0s;
-webkit-transition: border-color linear 0.2s;
-moz-transition: border-color linear 0.2s;
-o-transition: border-color linear 0.2s;
transition: border-color linear 0.2s;
}
Hopefully this is something that can be pulled into the css itself?