I'm considering integrating LESS in my Bootstrap editor (Bootply.com) to conform to Bootstrap customization best practices, and support for mixins.
However, I've yet to determine the specific advantages (performance and otherwise) of using LESS over simple CSS overrides. It seems that in the end LESS is compiled to CSS. It seems like LESS will just introduce more maintainence/recompiling tasks as new versions of Bootstrap are introduced.
I know that Bootstrap customization can be done using a custom 'theme.css' after the 'bootstrap.css'. So if you want to change the .navbar color I would just add a few lines to 'theme.css' like..
.navbar-custom .navbar-inner {
background-color:#444444;
}
And then the markup looks like:
<div class="navbar navbar-custom navbar-fixed-top">..
If this is not a best practice for customization, how does LESS improve on it?