I've downloaded the .less files from the download with docs link and I have added it to my project. I've alo downloaded less.js and added it to my project. If I include the following in the head of a page:
<link rel="stylesheet/less" href="@routes.Assets.at("less/bootstrap.less")">
<script src="@routes.Assets.at("less/less-1.3.0.min.js")"></script>
The bootstrap seems to work, minus the responsive part (i.e. the navbar won't collapse if the browser window becomes too narrow). I can fix this by manually adding bootstrap-responsive.css
<link rel="stylesheet" href="@routes.Assets.at("stylesheets/bootstrap-responsive.css")" />
The problem is that if I want to modify the color theme of my page, I need to edit the color values in bootstrap-responsive.css, which is a pain. It looks like some of the .less files were meant to generate bootstrap-responsive.css (for example responsive-navabar.less), but they aren't working.
Any advice on how I can get the bootstrap-responsive.css file from the .less files?