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

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15495 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2011-02-12 13:12:01 +00:00
parent f6d4e5b08a
commit 9ae2a94776
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 */