When compiling Twitter\'s Bootstrap 2.3.2. with Less 2 i found to following error:
NameError: #grid > .core > .span is undefined in /home/bootstrap-2.3
In the less/navbar.less file:
Replace:
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
#grid > .core > .span(@gridColumns);
}
With:
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: (@gridColumnWidth * @gridColumns) + (@gridGutterWidth * (@gridColumns - 1));
}
See also: Overriding class definitions with Less