I'm encountering an issue with the following less code:
.aa {
> {
li { color: red;}
}
}
After running this in Visual Studio 2012 with the latest web essentials, I am getting a compiler error on line 2. Is this really correct? As far as I know, this is valid less syntax. I find it strange that it's not compiling to CSS. Interestingly, I used the same syntax as the code generated by css2less.cc and just condensed it into fewer lines:
.favorites {
> {
li:hover {
...