From b0b977ba7fff5c125be931fec6e5104597fd1e0e Mon Sep 17 00:00:00 2001 From: Bound3R Date: Mon, 22 Feb 2016 15:30:53 -0500 Subject: [PATCH] missing change the url path to the sass variable --- common/lib/xmodule/xmodule/css/capa/display.scss | 12 ++++++------ lms/static/sass/course/modules/_calculator.scss | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/common/lib/xmodule/xmodule/css/capa/display.scss b/common/lib/xmodule/xmodule/css/capa/display.scss index c991ffb31e..1cffdb2540 100644 --- a/common/lib/xmodule/xmodule/css/capa/display.scss +++ b/common/lib/xmodule/xmodule/css/capa/display.scss @@ -376,7 +376,7 @@ div.problem { display: inline-block; width: 25px; height: 20px; - background: url('../images/partially-correct-icon.png') center center no-repeat; + background: url('#{$static-path}/images/partially-correct-icon.png') center center no-repeat; } input { @@ -1201,7 +1201,7 @@ div.problem { } .result-partially-correct { - background: url('../images/partially-correct-icon.png') left 20px no-repeat; + background: url('#{$static-path}/images/partially-correct-icon.png') left 20px no-repeat; .result-actual-output { color: #090; @@ -1461,7 +1461,7 @@ div.problem .imageinput.capa_inputtype { } .partially-correct { - background: url('../images/partially-correct-icon.png') center center no-repeat; + background: url('#{$static-path}/images/partially-correct-icon.png') center center no-repeat; } } @@ -1480,15 +1480,15 @@ div.problem .annotation-input { } .correct { - background: url('../images/correct-icon.png') center center no-repeat; + background: url('#{$static-path}/images/correct-icon.png') center center no-repeat; } .incorrect { - background: url('../images/incorrect-icon.png') center center no-repeat; + background: url('#{$static-path}/images/incorrect-icon.png') center center no-repeat; } .partially-correct { - background: url('../images/partially-correct-icon.png') center center no-repeat; + background: url('#{$static-path}/images/partially-correct-icon.png') center center no-repeat; } } diff --git a/lms/static/sass/course/modules/_calculator.scss b/lms/static/sass/course/modules/_calculator.scss index 311d2d3d54..6dc086e28f 100644 --- a/lms/static/sass/course/modules/_calculator.scss +++ b/lms/static/sass/course/modules/_calculator.scss @@ -29,7 +29,7 @@ width: ($baseline*0.75); &:hover, &:focus { - background: url("../images/calc-icon.png") $gray-d1 no-repeat center; + background: url("#{$static-path}/images/calc-icon.png") $gray-d1 no-repeat center; } &.closed {