I was about to switch from SCSS to Less.js, but I can't find one functionality which I was used to use with SCSS.
#nav {
li a {
color: maroon;
body.admin & {background-color: #eee;}
}
}
Here it says that defines that #nav li a
in context of body.admin
will have a gray background.
#nav {
&>li {
...
}
}
Correspond to #nav>li {...}
.
These are not possible with less.js?