I got a LESS file from this a Date-picker plugin and want to convert it to SASS.
But in the LESS, it concates a class name like this:
//LESS
.dropdown{
&-inline{
}
}
Result:
.dropdown-inline ...
I tried many things in SASS like #{-inline}
or #{"-inline"}
but it doesn't work.
I tried googling and found a year-old article saying it's impossible in SASS. I can't found recent post about this issue. Is it possible now? How?
Thanks