From 5d371c62b2a05617ec3fafe3356a7cff8bd1d589 Mon Sep 17 00:00:00 2001 From: George Drummond Date: Fri, 15 Feb 2019 15:46:18 -0500 Subject: [PATCH] Don't show outline on an anchor tag that doesn't have a href --- styles/atat.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles/atat.scss b/styles/atat.scss index 2d18992e..421e50b5 100644 --- a/styles/atat.scss +++ b/styles/atat.scss @@ -50,3 +50,7 @@ @import 'sections/member_edit'; @import 'sections/reports'; @import 'sections/task_order'; + +a:focus:not([href]) { + outline: none; +}