Skip to content

Commit

Permalink
Fixed #15290 -- Fixed a CSS styling issue with borders when the link …
Browse files Browse the repository at this point in the history
…item in a changelist isn't the first item in the list_display. Thanks to Julien Phalip for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15572 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Feb 19, 2011
1 parent 563a164 commit d3cc5db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/contrib/admin/media/css/changelists.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d3cc5db

Please sign in to comment.