diff options
author | mkanat%bugzilla.org <> | 2009-04-28 20:18:43 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-04-28 20:18:43 +0000 |
commit | 6472799e56c39613c2cb87c994e6c3332b50ba0b (patch) | |
tree | 612f9620dfcd629388b85c4117564684cc173c2c | |
parent | Bug 486206: Quoted-printable bugmail had a =0D at the end of every line, because (diff) | |
download | bugzilla-6472799e56c39613c2cb87c994e6c3332b50ba0b.tar.gz bugzilla-6472799e56c39613c2cb87c994e6c3332b50ba0b.tar.bz2 bugzilla-6472799e56c39613c2cb87c994e6c3332b50ba0b.zip |
Bug 483150: Fix Bugzilla JS/CSS for IE8
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=glob, a=mkanat
-rw-r--r-- | template/en/default/global/header.html.tmpl | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index a25cf70dc..fea1ad036 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -91,9 +91,10 @@ rel="stylesheet" type="text/css"> [% END %] - <!--[if IE]> + <!--[if lte IE 7]> [%# Internet Explorer treats [if IE] HTML comments as uncommented. - # Use it to import CSS fixes so that Bugzilla looks decent on IE, too. + # Use it to import CSS fixes so that Bugzilla looks decent on IE 7 + # and below. #%] <link href="skins/standard/IE-fixes.css" rel="stylesheet" @@ -110,11 +111,11 @@ title="[% setting_descs.standard FILTER html %]" type="text/css"> [% END %] - <!--[if IE]> - [%# Internet Explorer treats [if IE] HTML comments as uncommented. - # Use it to import CSS fixes so that Bugzilla looks decent on IE, - # too. - #%] + <!--[if lte IE 7]> + [%# Internet Explorer treats [if IE] HTML comments as uncommented. + # Use it to import CSS fixes so that Bugzilla looks decent on IE 7 + # and below. + #%] <link href="skins/standard/IE-fixes.css" rel="[% 'alternate ' IF user_skin %]stylesheet" title="[% setting_descs.standard FILTER html %]" @@ -148,10 +149,10 @@ type="text/css"> [% END %] [% END %] - <!--[if IE]> + <!--[if lte IE 7]> [%# Internet Explorer treats [if IE] HTML comments as uncommented. - # Use it to import CSS fixes so that Bugzilla looks decent on IE, - # too. + # Use it to import CSS fixes so that Bugzilla looks decent on IE 7 + # and below. #%] <link href="skins/contrib/[% contrib_skin FILTER html %]/IE-fixes.css" rel="[% 'alternate ' UNLESS contrib_skin == user_skin %]stylesheet" @@ -179,9 +180,10 @@ FILTER html %]" rel="stylesheet" type="text/css"> [% END %] [% END %] - <!--[if IE]> + <!--[if lte IE 7]> [%# Internet Explorer treats [if IE] HTML comments as uncommented. - # Use it to import CSS fixes so that Bugzilla looks decent on IE, too. + # Use it to import CSS fixes so that Bugzilla looks decent on IE 7 + # and below. #%] <link href="skins/custom/IE-fixes.css" rel="stylesheet" |