function hook_css_alter in Drupal 7
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Render/theme.api.php \hook_css_alter()
- 9 core/lib/Drupal/Core/Render/theme.api.php \hook_css_alter()
Alter CSS files before they are output on the page.
Parameters
$css: An array of all CSS items (files and inline CSS) being requested on the page.
See also
Related topics
2 functions implement hook_css_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- locale_css_alter in modules/locale/ locale.module 
- Implements hook_css_alter().
- seven_css_alter in themes/seven/ template.php 
- Implements hook_css_alter().
1 invocation of hook_css_alter()
- drupal_get_css in includes/common.inc 
- Returns a themed representation of all stylesheets to attach to the page.
File
- modules/system/ system.api.php, line 865 
- Hooks provided by Drupal core and the System module.
Code
function hook_css_alter(&$css) {
  // Remove defaults.css file.
  unset($css[drupal_get_path('module', 'system') . '/defaults.css']);
}