I need to add a dynamic name to a CSS class to create a more specific decendent selector.
Here is my Less code:
@scope: name; //line1
.@scope .ui-widget{ color: #fff} //line2
But I am getting a parser error at line2.
Is there any way to set the CSS class name dynamically in LessCSS?