diff --git a/phpgwapi/inc/class.egw_framework.inc.php b/phpgwapi/inc/class.egw_framework.inc.php index 730450f89e..c01886263d 100644 --- a/phpgwapi/inc/class.egw_framework.inc.php +++ b/phpgwapi/inc/class.egw_framework.inc.php @@ -1397,7 +1397,8 @@ abstract class egw_framework self::includeCSS($theme_css); // search for app specific css file, so it can customize the theme - self::includeCSS($GLOBALS['egw_info']['flags']['currentapp'], 'app'); + self::includeCSS($GLOBALS['egw_info']['flags']['currentapp'], 'app-'.$GLOBALS['egw_info']['user']['preferences']['common']['theme']) || + self::includeCSS($GLOBALS['egw_info']['flags']['currentapp'], 'app'); // sending print css last, so it can overwrite anything $print_css = $this->template_dir.'/print.css';