I'm using zen as my base theme. I've created a subtheme and implemented the color module. When I generate a custom color scheme using the color tool GUI my conditional IE.css is no longer included. Why?

Comments

ryan.nauman’s picture

_color_page_alter was the culprit and the fix is:

  if (module_exists('color')) {
    _color_page_alter($vars);
    
    // _color_page_alter disregards conditional stylesheets. add them back in
    $vars['styles'] .= $vars['conditional_styles'];
  }

Briefly noted on http://drupal.org/project/conditional_styles #Technical details..