Ticket #9181: better_changelist_css.css

File better_changelist_css.css, 1.6 KB (added by Chris Beaven, 16 years ago)
Line 
1Index: django/contrib/admin/media/css/changelists.css
2===================================================================
3--- django/contrib/admin/media/css/changelists.css (revision 9081)
4+++ django/contrib/admin/media/css/changelists.css (working copy)
5@@ -3,15 +3,14 @@
6 /* CHANGELISTS */
7 #changelist { position:relative; width:100%; }
8 #changelist table { width:100%; }
9-.change-list .filtered table { border-right:1px solid #ddd; }
10-.change-list .filtered { min-height:400px; }
11-.change-list .filtered { background:white url(../img/admin/changelist-bg.gif) top right repeat-y !important; }
12-.change-list .filtered table, .change-list .filtered .paginator, .filtered #toolbar, .filtered div.xfull { margin-right:160px !important; width:auto !important; }
13-.change-list .filtered table tbody th { padding-right:1em; }
14 #changelist .toplinks { border-bottom:1px solid #ccc !important; }
15 #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; }
16-.change-list .filtered .paginator { border-right:1px solid #ddd; }
17
18+#changelist.filtered { min-height:400px; background:white url(../img/admin/changelist-bg.gif) top right repeat-y !important; padding-right:160px; width:auto; }
19+#changelist.filtered table { border-right:1px solid #ddd; }
20+#changelist.filtered table tbody th { padding-right:1em; }
21+#changelist.filtered .paginator { border-right:1px solid #ddd; }
22+
23 /* CHANGELIST TABLES */
24 #changelist table thead th { white-space:nowrap; }
25 #changelist table tbody td { border-left: 1px solid #ddd; }
Back to Top