It doesn't appear that advanced help is removing the theme CSS from the help popup, Looking at the code in the .module file:

  // Remove theme css.
  foreach ($css as $media => $types) {
    if (isset($css[$media]['theme'])) {
      $css[$media]['theme'] = array();
    }
  }

Does not remove the theme CSS, printing out the $css array, it looks like the CSS is being stored in the array differently in in drupal7 than it was in drupal6, I am creating a patch for this to properly remove the theme CSS.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

undrgrnd’s picture

Status: Active » Needs review
FileSize
681 bytes

this patch checks the $css array properly for any css with the group = CSS_THEME (100), this now properly removes CSS themes from the help popup window.

  • gisle committed 2814a0f on 7.x-1.x authored by undrgrnd
    Issue #1803488 by undrgrnd: Ficed popup not removing theme CSS
    
gisle’s picture

Issue summary: View changes
Status: Needs review » Reviewed & tested by the community
gisle’s picture

Status: Reviewed & tested by the community » Fixed
gisle’s picture

Version: 7.x-1.x-dev » 7.x-1.2

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.