function seven_preprocess_html

Implements hook_preprocess_HOOK() for html.tpl.php.

1 call to seven_preprocess_html()

File

drupal/core/themes/seven/template.php, line 23
Functions to support theming in the Seven theme.

Code

function seven_preprocess_html(&$vars) {
  drupal_add_library('system', 'normalize');

  // 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,
  ));
}