Merge pull request #12825 from edx/clrux/tnl-4853

TNL-4853
This commit is contained in:
Chris
2016-06-24 14:27:36 -04:00
committed by GitHub
3 changed files with 12 additions and 2 deletions

View File

@@ -36,8 +36,8 @@ body, input, button {
font-family: 'Open Sans', sans-serif;
}
// we want to hide the outline on the focusable <main> element
main {
// removing the outline on any element that we make programmatically focusable
[tabindex="-1"] {
outline: none;
}

View File

@@ -20,6 +20,11 @@ body {
background: $body-bg;
}
// removing the outline on any element that we make programmatically focusable
[tabindex="-1"] {
outline: none;
}
h1, h2, h3, h4, h5, h6 {
color: $base-font-color;
font: normal 1.2em/1.2em $serif;

View File

@@ -1,5 +1,10 @@
// LMS base styles
// removing the outline on any element that we make programmatically focusable
[tabindex="-1"] {
outline: none;
}
.window-wrap {
background-color: $lms-background-color;
}