Commit c775f95a authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

[1.2.X] Fixed #13948 -- Corrected the direction of arrows on the admin...

[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
parent f8ff9fee
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 */