STUD-2021: Fix Multiple Choice Options in Studio.

This commit is contained in:
polesye
2014-07-30 12:24:22 +03:00
committed by cahrens
parent 121922a316
commit 61c417f7f4

View File

@@ -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;
label.choicegroup_incorrect {
&:after {
margin-left: 15px;
content: url('../images/incorrect-icon.png');
&.choicegroup_correct {
&:after {
margin-left: 15px;
content: url('../images/correct-icon.png');
}
}
&.choicegroup_incorrect {
&:after {
margin-left: 15px;
content: url('../images/incorrect-icon.png');
}
}
}