Just check out the rendered css files for html-reset.less, layout-fixed.less, and pages.less. The 3 places where you imported the base.less file cause the duplicated CSS...

I have the same problem with my theme and am looking for a solution... It sucks that we can't add the base.less file to the theme.info file and still have the less variables & mixins available in other less files :)

Check out this issue: http://drupal.org/node/1145440

Comments

szantog’s picture

Status: Active » Postponed

This happends, because of less cs.. Unfortantly the less css is "one way" code.

.one {
 .three; //It won't work.
}

.two {
 .one; //It's ok.
}

.three {
}

It means, before every css must import the base.less. It presents some difficulty on debug, but it could solved by well organized code.
Performance: I think, after enabling css aggregation, this will not be the "battleneck".
But I'm watching your previous issue, and I will apply, if some cleverness will figured out.

szantog’s picture

Status: Postponed » Closed (won't fix)

no more development on this project.