Each time I am changing a something in the styles (e.g. inside less/variables.less) I get the known error in the front end saying:
Undefined variable: css in /ImpressPages/Ip/Internal/Design/LessCompiler.php:69
I can't find any error inside the files or in the linking nor are the rights set wrong.
My theme.less looks like this:
//
// ImpressPages theme: One Pager Crystal
//
// Main theme's LESS file. Contains only imports of required components.
// Integrated with fluid and responsive grid system
//
// @package ImpressPages
//
@import "ipContent.less";// import system ipContent.less file (widget styles)
@import "less/variables.less";
@import "less/layout.less";
@import "widgetOverride.css";
The less/variables.less looks like this:
// Variables Grayscale Theme
@primary: #0033ff;
@dark: #000;
@light: #fff;
What could be the problem? Isn't it possible to add own less files in a theme? PHPStorm shows the right colors inside my layout.less so the values from variables.less are matching correctly.
The user rights on my local system are all set to 775/775 for all groups, so thsi can't be my problem.
I am using today's build from github.
Does anybody have an idea?