From 95884642a220345b1684b61429ecfcb33c89a86f Mon Sep 17 00:00:00 2001 From: Matjaz Gregoric Date: Mon, 11 Jan 2016 08:52:19 +0100 Subject: [PATCH] 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. --- common/lib/xmodule/xmodule/css/sequence/display.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/css/sequence/display.scss b/common/lib/xmodule/xmodule/css/sequence/display.scss index c86ff553f5..775dc38b50 100644 --- a/common/lib/xmodule/xmodule/css/sequence/display.scss +++ b/common/lib/xmodule/xmodule/css/sequence/display.scss @@ -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%);