Merge pull request #655 from dod-ccpo/disabled-link-outline

Don't show outline on an anchor tag that doesn't have a href
This commit is contained in:
George Drummond 2019-02-19 10:58:56 -05:00 committed by GitHub
commit a2b0a91228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,3 +50,11 @@
@import 'sections/member_edit'; @import 'sections/member_edit';
@import 'sections/reports'; @import 'sections/reports';
@import 'sections/task_order'; @import 'sections/task_order';
//
// IE likes to display an outline when focusing on an element. This
// fix removes that unwanted outline on focus.
//
*:focus {
outline: 0;
}