I have the following stack:
- Symfony2
- Twig with lessphp filter installed.
- Twitter Boostrap
In base.css i have:
// base.less
@import '/path/to/bootstrap.less'
@linkColor: 13px;
Variable name is not important at all. It can be any other variable used in bootstrap. It just doesn't get overridden. But if i put the variable into separate .less file and import it in base.less everything works as expected:
// base.less
@import '/path/to/bootstrap.less'
@import '/path/to/variables.less'
and
// variables.less
@linkColor: 13px;
Why does this work and the other not? Looked up for the docs (less/lessphp) but couldn't find anything related to this. (or i didn't know where to look).
Can someone explain why is this happening?