This commit adds the support of the & selector. This selector is useful to join a subrule with a parent selector. example: button { &:hover { background-color: red; } } will give button:hover { background-color: red; }
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