From 9ae2a9477642e3e868d9981a68472b3c250e1a9d Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 12 Feb 2011 13:12:01 +0000 Subject: [PATCH] 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 --- django/contrib/admin/media/css/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/contrib/admin/media/css/base.css b/django/contrib/admin/media/css/base.css index efae1acfc0..c5e385d508 100644 --- a/django/contrib/admin/media/css/base.css +++ b/django/contrib/admin/media/css/base.css @@ -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 */