diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-04-05 12:38:30 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-04-05 12:38:30 +0000 |
| commit | 985c764a77413208de528dded08732c505e841aa (patch) | |
| tree | 6f4b24ed8a6b9a7c5a43d2b31bd75de5353fc756 | |
| parent | c01735dee7dd590963c0305a2f2c904cd6cdefc2 (diff) | |
[1.1.X] Fixed #12260 -- Corrected CSS when using checkbox widgets on a ModelMultipleChoiceField in admin. Thanks to tiliv for the report and fix.
Backport of r12918 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12919 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/media/css/forms.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/django/contrib/admin/media/css/forms.css b/django/contrib/admin/media/css/forms.css index fbe4b753af..085a282528 100644 --- a/django/contrib/admin/media/css/forms.css +++ b/django/contrib/admin/media/css/forms.css @@ -67,6 +67,12 @@ form ul.inline li { width: 8em; } +.aligned ul label { + display: inline; + float: none; + width: auto; +} + .colMS .aligned .vLargeTextField, .colMS .aligned .vXMLLargeTextField { width: 350px; } |
