Im dealing here with Less CSS. Everythings was going fine, but im getting a little bug now. I have two less files. The first is called "colors.less" where i declared the colors vars, and the second is the css structure.
Its something like this:
color.less
@black: #000;
styles.less
@import "color";
body {
background: @black;
}
In my head tag, im writing it:
<link rel="stylesheet/less" type="text/css" href="less/styles.less"/>
And of course, importing the less js.
Whats happening is when i change the black color to White (#fff), it dont change to white. Stills black. When i reverse the logic, import the styles inside of color, it changes, but my styles dont change.
What im doing wrong?
Thanks guys!