Commit b0b977ba by Bound3R

missing change the url path to the sass variable

parent 03487073
...@@ -376,7 +376,7 @@ div.problem { ...@@ -376,7 +376,7 @@ div.problem {
display: inline-block; display: inline-block;
width: 25px; width: 25px;
height: 20px; 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 { input {
...@@ -1201,7 +1201,7 @@ div.problem { ...@@ -1201,7 +1201,7 @@ div.problem {
} }
.result-partially-correct { .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 { .result-actual-output {
color: #090; color: #090;
...@@ -1461,7 +1461,7 @@ div.problem .imageinput.capa_inputtype { ...@@ -1461,7 +1461,7 @@ div.problem .imageinput.capa_inputtype {
} }
.partially-correct { .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 { ...@@ -1480,15 +1480,15 @@ div.problem .annotation-input {
} }
.correct { .correct {
background: url('../images/correct-icon.png') center center no-repeat; background: url('#{$static-path}/images/correct-icon.png') center center no-repeat;
} }
.incorrect { .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 { .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;
} }
} }
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
width: ($baseline*0.75); width: ($baseline*0.75);
&:hover, &:focus { &: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 { &.closed {
......
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