MDL-61991 theme_boost: Question correctness displayed as label.

This commit is contained in:
Luca Bösch
2018-04-17 22:41:28 +02:00
parent 6d4bc5bd34
commit f0aef7abfe
+15
View File
@@ -344,6 +344,7 @@ body.path-question-type {
.que .specificfeedback,
.que .generalfeedback,
.que .numpartscorrect
.que .rightanswer,
.que .im-feedback,
.que .feedback,
@@ -351,6 +352,20 @@ body.path-question-type {
margin: 0 0 0.5em;
}
.que .correctness {
@extend .tag;
&.correct {
background-color: $state-success-text;
}
&.partiallycorrect {
background-color: $state-warning-text;
}
&.notanswered,
&.incorrect {
background-color: $state-danger-text;
}
}
.que .qtext {
margin-bottom: 1.5em;
}