use label tab for checkboxes

darcs-hash:20081128223646-099f7-79b7c961b4494ff7430bd3c0a0f4742888098ede.gz
This commit is contained in:
millette 2008-11-28 17:36:46 -05:00
parent ce08833303
commit 5878647c55
2 changed files with 8 additions and 3 deletions

View File

@ -401,9 +401,8 @@ function common_checkbox($id, $label, $checked=false, $instructions=NULL, $value
$attrs['disabled'] = 'true';
}
common_element('input', $attrs);
# XXX: use a <label>
common_text(' ');
common_element('span', 'checkbox_label', $label);
common_element('label', array('class' => 'checkbox_label', 'for' => $id), $label);
common_text(' ');
if ($instructions) {
common_element('span', 'input_instructions', $instructions);

View File

@ -145,6 +145,12 @@ textarea:focus, input:focus {
color: #91AA9D;
}
label.checkbox_label {
display: inline;
font-weight: normal;
}
#status_textarea {
color: #193441;
}
@ -186,4 +192,4 @@ textarea:focus, input:focus {
.message_single:hover {
background-color: #F3F8EA;
}
}