I've found this little bug. LESS input: <pre> .color { color: rgb(0, 0, 0); } </pre> CSS output: <pre> .color { color:rgb(0,0,0); } </pre> expected output: <pre> .color { color:#000000; } </pre> I'm not sure where is the right place to call <code>$this->funcToColor($func);</code>...
I've found this little bug.
LESS input:
.color { color: rgb(0, 0, 0); }CSS output:
.color { color:rgb(0,0,0); }expected output:
.color { color:#000000; }I'm not sure where is the right place to call
$this->funcToColor($func);...