diff --git a/django/contrib/admin/static/admin/css/ie.css b/django/contrib/admin/static/admin/css/ie.css
deleted file mode 100644
index 8199005..0000000
|
+
|
-
|
|
| 1 | | /* IE 6 & 7 */ |
| 2 | | |
| 3 | | /* Proper fixed width for dashboard in IE6 */ |
| 4 | | |
| 5 | | .dashboard #content { |
| 6 | | *width: 768px; |
| 7 | | } |
| 8 | | |
| 9 | | .dashboard #content-main { |
| 10 | | *width: 535px; |
| 11 | | } |
| 12 | | |
| 13 | | /* IE 6 ONLY */ |
| 14 | | |
| 15 | | /* Keep header from flowing off the page */ |
| 16 | | |
| 17 | | #container { |
| 18 | | _position: static; |
| 19 | | } |
| 20 | | |
| 21 | | /* Put the right sidebars back on the page */ |
| 22 | | |
| 23 | | .colMS #content-related { |
| 24 | | _margin-right: 0; |
| 25 | | _margin-left: 10px; |
| 26 | | _position: static; |
| 27 | | } |
| 28 | | |
| 29 | | /* Put the left sidebars back on the page */ |
| 30 | | |
| 31 | | .colSM #content-related { |
| 32 | | _margin-right: 10px; |
| 33 | | _margin-left: -115px; |
| 34 | | _position: static; |
| 35 | | } |
| 36 | | |
| 37 | | .form-row { |
| 38 | | _height: 1%; |
| 39 | | } |
| 40 | | |
| 41 | | /* Fix right margin for changelist filters in IE6 */ |
| 42 | | |
| 43 | | #changelist-filter ul { |
| 44 | | _margin-right: -10px; |
| 45 | | } |
| 46 | | |
| 47 | | /* IE ignores min-height, but treats height as if it were min-height */ |
| 48 | | |
| 49 | | .change-list .filtered { |
| 50 | | _height: 400px; |
| 51 | | } |
| 52 | | |
| 53 | | /* IE doesn't know alpha transparency in PNGs */ |
| 54 | | |
| 55 | | .inline-deletelink { |
| 56 | | background: transparent url(../img/inline-delete-8bit.png) no-repeat; |
| 57 | | } |
| 58 | | |
| 59 | | /* IE7 doesn't support inline-block */ |
| 60 | | .change-list ul.toplinks li { |
| 61 | | zoom: 1; |
| 62 | | *display: inline; |
| 63 | | } |
diff --git a/django/contrib/admin/static/admin/img/inline-delete-8bit.png b/django/contrib/admin/static/admin/img/inline-delete-8bit.png
deleted file mode 100644
index 01ade88..0000000
Binary files a/django/contrib/admin/static/admin/img/inline-delete-8bit.png and /dev/null differ
diff --git a/django/contrib/admin/templates/admin/base.html b/django/contrib/admin/templates/admin/base.html
index e76f15c..b4c29c5 100644
|
a
|
b
|
|
| 4 | 4 | <title>{% block title %}{% endblock %}</title> |
| 5 | 5 | <link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}" /> |
| 6 | 6 | {% block extrastyle %}{% endblock %} |
| 7 | | <!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% static "admin/css/ie.css" %}{% endblock %}" /><![endif]--> |
| 8 | 7 | {% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %} |
| 9 | 8 | <script type="text/javascript">window.__admin_media_prefix__ = "{% filter escapejs %}{% static "admin/" %}{% endfilter %}";</script> |
| 10 | 9 | <script type="text/javascript">window.__admin_utc_offset__ = "{% filter escapejs %}{% now "Z" %}{% endfilter %}";</script> |