diff --git a/lms/static/sass/multicourse/_courses.scss b/lms/static/sass/multicourse/_courses.scss
index 736d0280d5..57f47da9e0 100644
--- a/lms/static/sass/multicourse/_courses.scss
+++ b/lms/static/sass/multicourse/_courses.scss
@@ -376,9 +376,14 @@ $facet-background-color: #007db8;
@extend %t-strong;
margin: ($baseline/2);
width: auto;
- color: $m-blue-d5;
+ color: $blue-d1; // WCAG 2.0 AA requirements
text-align: center;
text-transform: uppercase;
+
+ &:hover,
+ &:focus {
+ background: $gray-l4;
+ }
}
.flt-right {
@@ -509,7 +514,11 @@ $facet-background-color: #007db8;
color: $facet-text-color;
.count {
- color: $gray-l4;
+ color: $gray;
+
+ .count-number {
+ display: none;
+ }
}
.count:before {
diff --git a/lms/templates/courseware/courses.html b/lms/templates/courseware/courses.html
index ef7f1b55ac..9b8f4046ca 100644
--- a/lms/templates/courseware/courses.html
+++ b/lms/templates/courseware/courses.html
@@ -35,7 +35,8 @@