summaryrefslogtreecommitdiff
path: root/django/contrib/admin/media/css/base.css
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2011-02-12 13:12:01 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2011-02-12 13:12:01 +0000
commit9ae2a9477642e3e868d9981a68472b3c250e1a9d (patch)
tree0359f67ceaf2f4a47cb86152a421b277ff13e7dd /django/contrib/admin/media/css/base.css
parentf6d4e5b08a27dd6be4c4cbf0da79dfe2c2bdebac (diff)
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
Diffstat (limited to 'django/contrib/admin/media/css/base.css')
-rw-r--r--django/contrib/admin/media/css/base.css4
1 files 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 */