I have not tried in production, but there may be some interesting options for using LESS variables. For example, you can change below less variables, which, in turn, will change a bunch of CSS dependent rules (relative width / height, for example).
See https://stackoverflow.com/a/166268/ for more details on this interesting patch, which makes it easy to change them using the simple modifyVars() function.
With it, you can resize the Bootstrap grid and everything that depends on it with a single local JS call:
less.modifyVars({ '@gridColumnWidth': 50px });
studgeek Feb 28 '12 at 22:52 2012-02-28 22:52
source share