0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00

Fixed #24968 -- Removed bad horizontal scrollbar appearing on admin changelist page.

Appeared in Opera with ModelAdmin.actions=None.
This commit is contained in:
Fabrizio Ettore Messina 2015-06-11 10:17:29 +02:00 committed by Tim Graham
parent 5d42890821
commit 64033fd085

View File

@ -74,6 +74,10 @@
border-right: 1px solid #ddd;
}
#changelist table tbody th:first-child:last-child {
border-right: 0;
}
#changelist table tbody td.action-checkbox {
text-align:center;
}