﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
12260	bug -- CSS class messes up ModelMultipleChoiceField in contrib.admin	Tim Valenta	Tim Valenta	"The admin CSS file at `trunk/django/contrib/admin/media/css/forms.css` has a rule definition for any HTML `label` element under an `.aligned` class element.

This really messes up the `ModelMultipleChoiceField` on admin pages, because the checkboxes use `label` elements too.  The result is a goofy 'step' effect, with a big waterfall of checkboxes leading across the page.

This patch puts adds an extra CSS 2.0-compliant rule which 'undoes' the effect on labels which are nested in a `ul` tag.

Simple addition:
{{{
.aligned ul label {
    float: none;
    width: auto;
}
}}}

"		closed	contrib.admin	dev		fixed	css, admin, ModelMultipleChoiceField		Ready for checkin	1	0	0	0	0	0
