Ticket #13948: 13948_changelist_arrows.diff

File 13948_changelist_arrows.diff, 649 bytes (added by Julien Phalip, 13 years ago)
  • django/contrib/admin/media/css/base.css

    diff --git a/django/contrib/admin/media/css/base.css b/django/contrib/admin/media/css/base.css
    index efae1ac..c5e385d 100644
    a b table thead th.sorted a {  
    319319}
    320320
    321321table thead th.ascending a {
    322     background: url(../img/admin/arrow-down.gif) right .4em no-repeat;
     322    background: url(../img/admin/arrow-up.gif) right .4em no-repeat;
    323323}
    324324
    325325table thead th.descending a {
    326     background: url(../img/admin/arrow-up.gif) right .4em no-repeat;
     326    background: url(../img/admin/arrow-down.gif) right .4em no-repeat;
    327327}
    328328
    329329/* ORDERABLE TABLES */
Back to Top