I have a verry simple style.less file in my project, and i'm using bootstrap for a clean, responsive design. So here we go:
@import "bootstrap/bootstrap.less";
@import "../css/jquery.vegas.css";
@import "../css/jquery.fancybox-1.3.4.css";
body {
padding-top: 60px;
padding-bottom: 40px;
}
@import "bootstrap/responsive.less";
Now, when i compile the file with less, the css-output looks strange:
.container {
width: 940px;
margin-left: auto;
margin-right: auto;
*zoom: 1;
*zoom: 1;
width: 940px;
margin-left: auto;
margin-right: auto;
*zoom: 1;
*zoom: 1;
}
He's just doubling everything! I can see this odd behavior even in the browser directly when im working on my devolper instance.
That's so strange and awful, has anyone an idea why this is happening? In the original less-files that are imported from bootstrap, everything is defined only once.
@imports one-by-one? – Wesley Murch Mar 26 '12 at 2:18