Commit 8b54c13f by uzairr

Fix inconsistency in the active tab colors

The course header sass source is generating styles that eventually
are in conflict with some of the tabs.To avoid it, new style
properties are added that resolves it.

LEARNER-748
parent e62aa716
......@@ -48,6 +48,7 @@
&.active {
color: $uxpl-blue-hover-active;
border-bottom-color: $uxpl-blue-hover-active;
background-color: transparent;
}
}
}
......
......@@ -30,7 +30,7 @@
border-style: solid;
border-width: 0 0 4px 0;
border-bottom-color: transparent;
color: $lms-label-color;
color: $lms-inactive-color;
font-size: 14px;
&:hover,
......@@ -40,8 +40,8 @@
}
&.active {
color: $lms-active-color;
border-bottom-color: $lms-active-color;
color: $uxpl-blue-hover-active;
border-bottom-color: $uxpl-blue-hover-active;
background-color: transparent;
}
}
......
......@@ -26,6 +26,7 @@ $lms-border-color: palette(grayscale, back) !default;
$lms-label-color: palette(grayscale, black) !default;
$lms-active-color: palette(primary, base) !default;
$lms-preview-menu-color: #c8c8c8 !default;
$lms-inactive-color: rgb(94,94,94) !default;
$success-color: palette(success, accent) !default;
$success-color-hover: palette(success, text) !default;
......
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