Commit 212b0485 authored by Julien Phalip's avatar Julien Phalip
Browse files

Fixed #16659 -- Made the admin's date drilldown links in the changelist have a...

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
parent e5aeba01
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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 {
+6 −0
Original line number Diff line number Diff line
@@ -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;
}
 No newline at end of file
+0 −4
Original line number Diff line number Diff line
@@ -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;
}