Moving no-outline use to be more global

This commit is contained in:
Chris Rodriguez
2015-05-14 10:46:56 -04:00
parent 269432ae34
commit d5d7fbf786
3 changed files with 13 additions and 6 deletions

View File

@@ -9,6 +9,7 @@
@import 'base/font_face';
@import 'base/extends';
@import 'base/animations';
@import 'base/utilities';
// base - starter
@import 'base/base';

View File

@@ -0,0 +1,12 @@
// ------------------------------
// LMS: Utilities
// About: Shared utility classes that extend or enhance the interface
// ------------------------------
// No focus outline on programmatic focus
.sr-is-focusable,
.sr-is-focusable:focus,
.sr-is-focusable:active {
@extend %no-outline;
}

View File

@@ -60,12 +60,6 @@ div.course-wrapper {
}
}
.sr-is-focusable,
.sr-is-focusable:focus,
.sr-is-focusable:active {
outline: none;
}
.sequential-status-message {
margin-bottom: $baseline;
background-color: $gray-l5;