diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-04-05 12:36:36 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-04-05 12:36:36 +0000 |
| commit | 304e017a7f76cd35706c7e767ee3b82cc52d6bfd (patch) | |
| tree | a437491b43d7f37fdb66f061519d7d4e494a5d82 /django/contrib/admin | |
| parent | c421a4fd92990fa830f2f645df044b0f0f1fc32a (diff) | |
Fixed #12260 -- Corrected CSS when using checkbox widgets on a ModelMultipleChoiceField in admin. Thanks to tiliv for the report and fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12918 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/contrib/admin')
| -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 791c9b6b5c..35d0ed796d 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; } |
