Tooltip rendering broken in lead paragraph as it inherits line height from .lead
Created by: martinburger
I use the Tooltip plugin in a lead paragraph (CSS class "lead"). Unfortunately, the shown tooltip seems to inherit the line-height property of that CSS class. This causes the tooltip to appear odd as it has a very small font but a line height of 30 pixels. I think this broken rendering was introduced in Bootstrap 2.2.0.
Adding
.tooltip-inner {
line-height: 15px;
}
to my custom CSS provides a workaround.