diff --git a/django/contrib/admin/media/css/changelists.css b/django/contrib/admin/media/css/changelists.css
index 282833c..4e3402f 100644
a
|
b
|
|
67 | 67 | #changelist table tbody td:first-child { |
68 | 68 | border-left: 0; |
69 | 69 | border-right: 1px solid #ddd; |
70 | | text-align: center; |
| 70 | } |
| 71 | |
| 72 | #changelist table tbody td.action-checkbox { |
| 73 | text-align:center; |
71 | 74 | } |
72 | 75 | |
73 | 76 | #changelist table tfoot { |
diff --git a/django/contrib/admin/templatetags/admin_list.py b/django/contrib/admin/templatetags/admin_list.py
index 806be24..57e8ab7 100644
a
|
b
|
def items_for_result(cl, result, form):
|
139 | 139 | result_repr = EMPTY_CHANGELIST_VALUE |
140 | 140 | else: |
141 | 141 | if f is None: |
| 142 | if field_name == u'action_checkbox': |
| 143 | row_class = ' class="action-checkbox"' |
142 | 144 | allow_tags = getattr(attr, 'allow_tags', False) |
143 | 145 | boolean = getattr(attr, 'boolean', False) |
144 | 146 | if boolean: |