Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions common/lib/xmodule/xmodule/css/capa/display.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
}

Expand All @@ -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;
}
}

2 changes: 1 addition & 1 deletion lms/static/sass/course/modules/_calculator.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down