Commit 61c417f7 by polesye Committed by cahrens

STUD-2021: Fix Multiple Choice Options in Studio.

parent 121922a3
......@@ -60,17 +60,23 @@ div.problem {
width: auto !important;
width: 100px;
label.choicegroup_correct {
&:after {
margin-left: 15px;
content: url('../images/correct-icon.png');
label {
float: left;
clear: both;
margin-bottom: 5px;
&.choicegroup_correct {
&:after {
margin-left: 15px;
content: url('../images/correct-icon.png');
}
}
}
label.choicegroup_incorrect {
&:after {
margin-left: 15px;
content: url('../images/incorrect-icon.png');
&.choicegroup_incorrect {
&:after {
margin-left: 15px;
content: url('../images/incorrect-icon.png');
}
}
}
......
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