Skip to content

Instantly share code, notes, and snippets.

@hkirsman
Last active December 24, 2015 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hkirsman/6827293 to your computer and use it in GitHub Desktop.
Save hkirsman/6827293 to your computer and use it in GitHub Desktop.
Drupal lte-ie-8.css
<?php
function THEME_preprocess_html(&$vars) {
drupal_add_css(drupal_get_path('theme', 'THEME') . '/css/lte-ie8.css', array(
'group' => 9999,
'weight' => 9999,
'browsers' => array(
'IE' => 'lte IE 8',
'!IE' => FALSE
),
'preprocess' => FALSE,
'every_page' => TRUE,
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment