LMS: correcting poorly scoped font-family rule for footer links inside of p, ul, ol elements.

Fix link stylings in LMS and CMS footers
This commit is contained in:
Sarina Canelake
2015-02-02 15:23:01 -05:00
parent 4b6c62a85b
commit 4fc4b2f3de
3 changed files with 24 additions and 14 deletions

View File

@@ -20,6 +20,11 @@
p, ol, ul {
font-family: $sans-serif;
// override needed for poorly scoped font-family styling on p a:link {}
a {
font-family: $sans-serif;
}
}
a {
@@ -27,7 +32,6 @@
border-bottom: none;
color: $link-color;
text-decoration: none !important;
font-family: $sans-serif;
&:hover, &:focus, &:active {
border-bottom: 1px dotted $link-color;
@@ -327,6 +331,12 @@ $edx-footer-bg-color: rgb(252,252,252);
// NOTE: needed for poor LMS span styling
color: inherit;
}
a {
@extend %edx-footer-link;
display: inline-block;
margin-bottom: ($edx-footer-spacing/2);
}
}
.footer-about-links {