### Eclipse Workspace Patch 1.0
#P drupal7
Index: themes/garland/template.php
===================================================================
RCS file: /cvs/drupal/themes/garland/template.php,v
retrieving revision 1.41
diff -u -r1.41 template.php
--- themes/garland/template.php	30 Jul 2010 02:47:28 -0000	1.41
+++ themes/garland/template.php	24 Sep 2010 06:46:36 -0000
@@ -42,7 +42,9 @@
     $vars['classes_array'][] = 'fluid-width';
   }
   // Add conditional CSS for IE6.
-  drupal_add_css(path_to_theme() . '/fix-ie.css', array('weight' => CSS_THEME, 'browsers' => array('IE' => 'lt IE 7', '!IE' => FALSE)));
+  drupal_add_css(path_to_theme() . '/ie6.css', array('weight' => CSS_THEME, 'browsers' => array('IE' => 'lt IE 7', '!IE' => FALSE)));
+  // Add conditional CSS for all IE.  
+  drupal_add_css(path_to_theme() . '/ie.css', array('weight' => CSS_THEME, 'browsers' => array('!IE' => FALSE)));
 }
 
 /**
Index: themes/garland/fix-ie.css
===================================================================
RCS file: themes/garland/fix-ie.css
diff -N themes/garland/fix-ie.css
--- themes/garland/fix-ie.css	28 Apr 2010 20:08:39 -0000	1.13
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,66 +0,0 @@
-/* $Id: fix-ie.css,v 1.13 2010/04/28 20:08:39 dries Exp $ */
-
-body {
-  /* Center layout */
-  text-align: center;
-}
-
-#header-region,
-#wrapper #container {
-  /* Reset text alignment */
-  text-align: left; /* LTR */
-}
-
-#wrapper #container #center {
-  /* Reduce amount of damage done by extremely wide content */
-  overflow: hidden;
-}
-
-#wrapper #container #center .right-corner .left-corner {
-  /* Because of the lack of min-height, we use height as an alternative */
-  height: 400px;
-}
-
-fieldset {
-  /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
-  background: none;
-}
-
-div.vertical-tabs ul.vertical-tabs-list li.first {
-  background-image: none;
-}
-
-ul.primary {
-  /* Fix missing top margin */
-  position: relative; /* LTR */
-/*  top: 0.5em; */
-}
-
-/* Prevent fieldsets from shifting when changing collapsed state. */
-html.js fieldset.collapsible {
-  top: -1em;
-}
-html.js fieldset.collapsed {
-  top: 0;
-  margin-bottom: 1em;
-}
-
-tr.menu-disabled {
-  /* Use filter to emulate CSS3 opacity */
-  filter: alpha(opacity=50);
-}
-
-#header-region {
-  /* Because of the lack of min-height, we use height as an alternative */
-  height: 1em;
-}
-
-tr.taxonomy-term-preview {
-  filter: alpha(opacity=50);
-}
-
-#attach-hide label,
-#uploadprogress div.message {
-  /* Fading elements in IE causes the text to bleed unless they have a background. */
-  background-color: #ffffff;
-}
Index: themes/garland/ie.css
===================================================================
RCS file: themes/garland/ie.css
diff -N themes/garland/ie.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ themes/garland/ie.css	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,6 @@
+/* $Id: */
+
+fieldset {
+  /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
+  background: none;
+}
Index: themes/garland/ie6.css
===================================================================
RCS file: themes/garland/ie6.css
diff -N themes/garland/ie6.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ themes/garland/ie6.css	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,61 @@
+/* $Id: */
+
+body {
+  /* Center layout */
+  text-align: center;
+}
+
+#header-region,
+#wrapper #container {
+  /* Reset text alignment */
+  text-align: left; /* LTR */
+}
+
+#wrapper #container #center {
+  /* Reduce amount of damage done by extremely wide content */
+  overflow: hidden;
+}
+
+#wrapper #container #center .right-corner .left-corner {
+  /* Because of the lack of min-height, we use height as an alternative */
+  height: 400px;
+}
+
+div.vertical-tabs ul.vertical-tabs-list li.first {
+  background-image: none;
+}
+
+ul.primary {
+  /* Fix missing top margin */
+  position: relative; /* LTR */
+/*  top: 0.5em; */
+}
+
+/* Prevent fieldsets from shifting when changing collapsed state. */
+html.js fieldset.collapsible {
+  top: -1em;
+}
+html.js fieldset.collapsed {
+  top: 0;
+  margin-bottom: 1em;
+}
+
+tr.menu-disabled {
+  /* Use filter to emulate CSS3 opacity */
+  filter: alpha(opacity=50);
+}
+
+#header-region {
+  /* Because of the lack of min-height, we use height as an alternative */
+  height: 1em;
+}
+
+tr.taxonomy-term-preview {
+  filter: alpha(opacity=50);
+}
+
+#attach-hide label,
+#uploadprogress div.message {
+  /* Fading elements in IE causes the text to bleed unless they have a background. */
+  background-color: #ffffff;
+}
