Popover content inherits font-size, but title doesn't
Created by: gregtyler
The popover content element inherits its font-size from the parent, but the title has a fixed font-size. This can lead to weird looking popovers when used in conjunction with, e.g., header elements.
Example on bootply: http://www.bootply.com/r7KlVkSppU
Example code:
<h1>
Title
<button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
</h1>
$('button').popover();