removing thin dotted styles for old IE; IE8+ can display the solid blue border just fine.

This commit is contained in:
James Alley 2015-01-20 14:43:22 -08:00
parent 40952f5a50
commit acd1fbb469

View File

@ -73,14 +73,13 @@ since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]):focus {
outline: 0;
outline: thin dotted \9; /* IE6-9 */
border-color: #129FEA;
}
.pure-form input[type="file"]:focus,
.pure-form input[type="radio"]:focus,
.pure-form input[type="checkbox"]:focus {
outline: thin dotted #333;
outline: thin solid #129FEA;
outline: 1px auto #129FEA;
}
.pure-form .pure-checkbox,