Skip to content
Snippets Groups Projects
Commit 2eefa494 authored by Jason Bau's avatar Jason Bau
Browse files

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
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,13 @@ form {
}
}
form.choicegroup {
label {
clear: both;
float: left;
}
}
textarea,
input[type="text"],
input[type="email"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment