[1.2.X] Fixed #13948 -- Corrected the direction of arrows on the admin changelist. Thanks to jsdalton for the report, and Julien Phalip for the patch.

Backport of r15495 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15497 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2011-02-12 13:25:16 +00:00
parent f8ff9fee2b
commit c775f95abb
1 changed files with 2 additions and 2 deletions

View File

@ -319,11 +319,11 @@ table thead th.sorted a {
}
table thead th.ascending a {
background: url(../img/admin/arrow-down.gif) right .4em no-repeat;
background: url(../img/admin/arrow-up.gif) right .4em no-repeat;
}
table thead th.descending a {
background: url(../img/admin/arrow-up.gif) right .4em no-repeat;
background: url(../img/admin/arrow-down.gif) right .4em no-repeat;
}
/* ORDERABLE TABLES */