- Patch #1217788 by droplet: drop IE7 support from Drupal 8.x.
[project/drupal.git] / core / themes / seven / template.php
index 9804d4d..145ad22 100644 (file)
@@ -18,8 +18,6 @@ function seven_preprocess_maintenance_page(&$vars) {
 function seven_preprocess_html(&$vars) {
   // Add conditional CSS for IE8 and below.
   drupal_add_css(path_to_theme() . '/ie.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 8', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE));
-  // Add conditional CSS for IE7 and below.
-  drupal_add_css(path_to_theme() . '/ie7.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE));
 }
 
 /**