From 746cae2c9a95754c30beaf35989571ca1e6f5836 Mon Sep 17 00:00:00 2001 From: Chris Rodriguez Date: Wed, 27 Apr 2016 14:32:37 -0400 Subject: [PATCH] Removing the focus outline for the main container in LMS --- lms/static/sass/course/base/_base.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lms/static/sass/course/base/_base.scss b/lms/static/sass/course/base/_base.scss index 775a77995a..337844c4f8 100644 --- a/lms/static/sass/course/base/_base.scss +++ b/lms/static/sass/course/base/_base.scss @@ -47,6 +47,11 @@ body, h1, h2, h3, h4, h5, h6, p, label { font-family: $sans-serif; } +// we want to hide the outline on the focusable
element +main { + outline: none; +} + table { table-layout: fixed; }