Commit 61c417f7 by polesye Committed by cahrens

STUD-2021: Fix Multiple Choice Options in Studio.

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