function at can't build a right value
missyliu opened this issue · 2 comments
missyliu commented
example url: less-plugin-lists/docs/ref.examples/at.less
input:
@color:
a #000,
b #111,
c #222;
#header {
color: at(@color, a);
}
output:
#header {
color: at(a "#000", b "#111", c "#222", a);
}
seven-phases-max commented
seven-phases-max commented
So I've tested this and it works as expected, resulting in:
#header {
color: #000;
}
I guess this is why the issue is closed (w/o the plugin enabled, Less compiler will leave unknown function statements as-is assuming it some new CSS function, hence most likely the result you had).