I have an issue where the Bootstrap tooltip causes spacing on my input fields to collapse. The markup is:
<form>
<div class="controls controls-row">
<input class="span4" data-original-title="Default tooltip" rel="tooltip" type="text" placeholder=".span4">
<input class="span1" data-original-title="Default tooltip" rel="tooltip" type="text" placeholder=".span1">
</div>
</form>
and I'm just using the default for the wireup:
$('[rel="tooltip"]').tooltip();
I've created a jsFiddle here to show the problem: http://jsfiddle.net/bAaQP/2/
Note that when an input receives focus, it collapses the whitespace to the right of the control.
I'm just using the example grid form from Bootstrap 2.2.2. The form elements have relative span sizing set and are contained within a div decorated with the controls-row class.
I've tried with the latest version of Bootstrap-tooltip.js as well but it still shows the same behavior.