Commit f8bbbc87 by clrux

Merge pull request #9698 from edx/clrux/lms-global-sr-contrast

LMS: setting fore/background colors for all sr elements
parents 0a01a35b e2bffc79
......@@ -329,6 +329,7 @@ mark {
// UI - semantically hide text
.sr {
@extend %text-sr;
@extend %a11y-ensure-contrast;
}
// UI - skipnav
......
......@@ -135,6 +135,12 @@
width: 1px;
}
// extends - ensures proper contrast for automated checkers
%a11y-ensure-contrast {
background: $white;
color: $black;
}
// extends - UI - removes list styling/spacing when using uls, ols for navigation and less content-centric cases
%ui-no-list {
list-style: none;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment