This commit fixes the css selector generation for nested rules Before this fix, a selector like: .parent { .child-a, .child-b { color: red; } } was generated as: .parent .child-a, .child-b { color: red; } Now it generates: .parent .child-a, .parent .child-b { color: red; }
This add an important feature: defining completely standalone owl components, with the template/style and javascript code together. closes #284