Fix IE outline on focus

This commit is contained in:
George Drummond 2019-02-18 13:31:59 -05:00
parent 5d371c62b2
commit 703900b906
No known key found for this signature in database
GPG Key ID: 296DD6077123BF17

View File

@ -51,6 +51,10 @@
@import 'sections/reports'; @import 'sections/reports';
@import 'sections/task_order'; @import 'sections/task_order';
a:focus:not([href]) { //
outline: none; // IE likes to display an outline when focusing on an element. This
// fix removes that unwanted outline on focus.
//
*:focus {
outline: 0;
} }