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:
parent
f6d4e5b08a
commit
9ae2a94776
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue