Fixed #16659 -- Made the admin's date drilldown links in the changelist have a variable width to play nicer with languages with long month names.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16854 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e5aeba018f
commit
212b048564
|
@ -165,11 +165,10 @@
|
|||
}
|
||||
|
||||
.change-list ul.toplinks li {
|
||||
float: left;
|
||||
width: 9em;
|
||||
padding: 3px 6px;
|
||||
font-weight: bold;
|
||||
list-style-type: none;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.change-list ul.toplinks .date-back a {
|
||||
|
|
|
@ -55,3 +55,9 @@
|
|||
.inline-deletelink {
|
||||
background: transparent url(../img/inline-delete-8bit.png) no-repeat;
|
||||
}
|
||||
|
||||
/* IE7 doesn't support inline-block */
|
||||
.change-list ul.toplinks li {
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
}
|
|
@ -108,10 +108,6 @@ table thead th.sorted a span.sortpos {
|
|||
|
||||
/* changelists styles */
|
||||
|
||||
.change-list ul.toplinks li {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.change-list .filtered {
|
||||
background: white url(../img/changelist-bg_rtl.gif) top left repeat-y !important;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue