Commit 2eefa494 by Jason Bau

Width of labels for multiple-choice capa problems = width of text

Stanford got some feedback from our students/faculty that students
were making accidental clicks on radio-button capa questions.
They would click way to the right of the label text, but it would
still select the corresponding input, which caused some students
to make unintentional changes to their answers.  This was because
labels for these inputs were display:block and width:100%

Changing these labels to float:left clear:both should fix it.
parent 88060c05
......@@ -46,6 +46,13 @@ form {
}
}
form.choicegroup {
label {
clear: both;
float: left;
}
}
textarea,
input[type="text"],
input[type="email"],
......
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