Mark sequence link-color scss variable default.

There's already a global $link-color variable defined in
lms/static/sass/base/_variables.scss. Mark the $link-color
variable in sequence scss file with !default, so that the
global $link-color variable gets used, if defined.
This commit is contained in:
Matjaz Gregoric
2016-01-11 08:52:19 +01:00
parent e8925972d9
commit 95884642a2

View File

@@ -1,5 +1,5 @@
$sequence--border-color: #C8C8C8;
$link-color: rgb(26, 161, 222);
$link-color: rgb(26, 161, 222) !default;
// repeated extends - needed since LMS styling was referenced
.block-link {
border-left: 1px solid lighten($sequence--border-color, 10%);