1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

[1.2.X] Fixed #15290 -- Fixed a CSS styling issue with borders when the link item in a changelist isn't the first item in the list_display. Thanks to Julien Phalip for the report and patch.

Backport of r15572 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15576 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2011-02-19 08:15:01 +00:00
parent 10a12cd6f2
commit c94804b14f

View File

@ -60,11 +60,11 @@
text-align: center;
}
#changelist table tbody td {
#changelist table tbody td, #changelist table tbody th {
border-left: 1px solid #ddd;
}
#changelist table tbody td:first-child {
#changelist table tbody td:first-child, #changelist table tbody th:first-child {
border-left: 0;
border-right: 1px solid #ddd;
text-align: center;