mirror of https://github.com/django/django.git
Fixed a padding issue in admin tabular inline headers.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16968 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
4da7c772ad
commit
1f1b16722e
|
@ -310,7 +310,7 @@ tr.alt {
|
|||
/* SORTABLE TABLES */
|
||||
|
||||
thead th {
|
||||
padding: 0;
|
||||
padding: 2px 5px;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
/* CHANGELIST TABLES */
|
||||
|
||||
#changelist table thead th {
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue