Skip to content

Commit

Permalink
Applied contrib.admin IE CSS patches to IE6 and 7, and added simple h…
Browse files Browse the repository at this point in the history
…acks to filter some rules to both and some only to IE6.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9303 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
Wilson Miner committed Oct 31, 2008
1 parent 5053550 commit 6b82c38
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1,47 +1,51 @@
/* IE 6 & 7 */

/* Proper fixed width for dashboard in IE6 */

.dashboard #content {
*width: 768px;
}

.dashboard #content-main {
*width: 535px;
}

/* IE 6 ONLY */

/* Keep header from flowing off the page */

#container {
position: static;
_position: static;
}

/* Put the right sidebars back on the page */

.colMS #content-related {
margin-right: 0;
margin-left: 10px;
position: static;
_margin-right: 0;
_margin-left: 10px;
_position: static;
}

/* Put the left sidebars back on the page */

.colSM #content-related {
margin-right: 10px;
margin-left: -115px;
position: static;
_margin-right: 10px;
_margin-left: -115px;
_position: static;
}

.form-row {
height: 1%;
}

/* Proper fixed width for dashboard in IE6 */

.dashboard #content {
width: 768px;
}

.dashboard #content-main {
width: 535px;
_height: 1%;
}

/* Fix right margin for changelist filters in IE6 */

#changelist-filter ul {
margin-right: -10px;
_margin-right: -10px;
}

/* IE ignores min-height, but treats height as if it were min-height */

.change-list .filtered {
height: 400px;
_height: 400px;
}
2 changes: 1 addition & 1 deletion django/contrib/admin/templates/admin/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>{% block title %}{% endblock %}</title>
<![if gte IE 6]><link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/base.css{% endblock %}" /><![endif]>
<!--[if IE 6]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie6 %}{% load adminmedia %}{% admin_media_prefix %}css/ie6.css{% endblock %}" /><![endif]-->
<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% load adminmedia %}{% admin_media_prefix %}css/ie.css{% endblock %}" /><![endif]-->
{% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% admin_media_prefix %}css/rtl.css{% endblock %}" />{% endif %}
{% block extrastyle %}{% endblock %}
{% block extrahead %}{% endblock %}
Expand Down

0 comments on commit 6b82c38

Please sign in to comment.