outside_in_css_alter

outside_in_css_alter(&$css, AttachedAssetsInterface $assets)

Implements hook_css_alter().

File

core/modules/outside_in/outside_in.module, line 148
Allows configuring blocks and other configuration from the site front-end.

Code

1
2
3
4
5
6
7
8
9
function outside_in_css_alter(&$css, AttachedAssetsInterface $assets) {
  // @todo Remove once conditional ordering is introduced in
  $path = drupal_get_path('module', 'outside_in') . '/css/outside_in.theme.css';
  if (isset($css[$path])) {
    // Use 200 to come after CSS_AGGREGATE_THEME.
    $css[$path]['group'] = 200;
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.