diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2011-02-12 13:12:01 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2011-02-12 13:12:01 +0000 |
| commit | 9ae2a9477642e3e868d9981a68472b3c250e1a9d (patch) | |
| tree | 0359f67ceaf2f4a47cb86152a421b277ff13e7dd /django/contrib/admin/media/css/base.css | |
| parent | f6d4e5b08a27dd6be4c4cbf0da79dfe2c2bdebac (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.css | 4 |
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 */ |
