You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following mark-up does not show the content in the popover:
<divclass="btn-group"><ahref="#" class="btn" rel="popover" data-placement="bottom" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-original-title="Popover on bottom">Popover on bottom</a><ahref="#" class="btn" rel="popover" data-placement="bottom" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-original-title="Popover on bottom">Popover on bottom</a></div>
Here is why. It inherits the font-size: 0; from the btn-group:
line: 3600
.btn-group {
font-size:0;
white-space: nowrap;
}
Need to define font size? Or not intended for it to work?
line: 5346
.popover-contentp, .popover-contentul, .popover-contentol {
margin-bottom:0;
/* Need to define font-size?? */
}
Also needs
line: 5289
.popover {
white-space: normal;
...
The text was updated successfully, but these errors were encountered:
The font-size has been fixed in 2.2.2-wip, but I don't think we need to reset white-space. Let me know if you run into issues though and we can revisit. Thanks!
The following mark-up does not show the content in the popover:
Here is why. It inherits the font-size: 0; from the btn-group:
line: 3600
Need to define font size? Or not intended for it to work?
line: 5346
Also needs
line: 5289
The text was updated successfully, but these errors were encountered: