Skip to content

Instantly share code, notes, and snippets.

@mavimo
Last active December 30, 2017 18:15
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 mavimo/e3bc02fc6cd79351bfe60f0977a7f4f8 to your computer and use it in GitHub Desktop.
Save mavimo/e3bc02fc6cd79351bfe60f0977a7f4f8 to your computer and use it in GitHub Desktop.
/**
 * Implements hook_css_alter().
 */
function THEME_NAME_css_alter(&$css) {
  foreach ($css as &$style) {
  $style[‘weight’] += $style[‘group’];
 $style[‘group’] = CSS_DEFAULT;
 $style[‘every_page’] = TRUE;
 }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment