Ticket #9181: better_changelist_css.diff

File better_changelist_css.diff, 1.6 KB (added by Chris Beaven, 16 years ago)
  • django/contrib/admin/media/css/changelists.css

     
    33/* CHANGELISTS */
    44#changelist { position:relative; width:100%; }
    55#changelist table { width:100%; }
    6 .change-list .filtered table { border-right:1px solid #ddd;  }
    7 .change-list .filtered { min-height:400px; }
    8 .change-list .filtered { background:white url(../img/admin/changelist-bg.gif) top right repeat-y !important; }
    9 .change-list .filtered table, .change-list .filtered .paginator, .filtered #toolbar, .filtered div.xfull { margin-right:160px !important; width:auto !important; }
    10 .change-list .filtered table tbody th { padding-right:1em; }
    116#changelist .toplinks { border-bottom:1px solid #ccc !important; }
    127#changelist .paginator { color:#666; border-top:1px solid #eee; border-bottom:1px solid #eee; background:white url(../img/admin/nav-bg.gif) 0 180% repeat-x; overflow:hidden; }
    13 .change-list .filtered .paginator { border-right:1px solid #ddd; }
    148
     9#changelist.filtered { min-height:400px; background:white url(../img/admin/changelist-bg.gif) top right repeat-y !important; padding-right:160px; width:auto; }
     10#changelist.filtered table { border-right:1px solid #ddd;  }
     11#changelist.filtered table tbody th { padding-right:1em; }
     12#changelist.filtered .paginator { border-right:1px solid #ddd; }
     13
    1514/*  CHANGELIST TABLES  */
    1615#changelist table thead th { white-space:nowrap; }
    1716#changelist table tbody td { border-left: 1px solid #ddd; }
Back to Top