From: Chris Rebert Date: Thu, 8 Oct 2015 04:22:59 +0000 (-0700) Subject: Tooltips on s should use container: body ; fixes #17809 X-Git-Tag: v3.3.6~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d39f938bb4e4e30035aac3db5ce7397e1d955a1;p=thirdparty%2Fbootstrap.git Tooltips on
s should use container: body ; fixes #17809 --- diff --git a/docs/_includes/js/popovers.html b/docs/_includes/js/popovers.html index 78369ea057..b539bfe165 100644 --- a/docs/_includes/js/popovers.html +++ b/docs/_includes/js/popovers.html @@ -19,8 +19,8 @@ $(function () { {% endhighlight %}
-

Popovers in button groups and input groups require special setting

-

When using popovers on elements within a .btn-group or an .input-group, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the popover is triggered).

+

Popovers in button groups, input groups, and tables require special setting

+

When using popovers on elements within a .btn-group, .input-group, or <table>, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the popover is triggered).

Don't try to show popovers on hidden elements

diff --git a/docs/_includes/js/tooltips.html b/docs/_includes/js/tooltips.html index 991c0c9c94..fd85256b2d 100644 --- a/docs/_includes/js/tooltips.html +++ b/docs/_includes/js/tooltips.html @@ -97,8 +97,8 @@ $('#example').tooltip(options)

Sometimes you want to add a tooltip to a hyperlink that wraps multiple lines. The default behavior of the tooltip plugin is to center it horizontally and vertically. Add white-space: nowrap; to your anchors to avoid this.

-

Tooltips in button groups and input groups require special setting

-

When using tooltips on elements within a .btn-group or an .input-group, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip is triggered).

+

Tooltips in button groups, input groups, and tables require special setting

+

When using tooltips on elements within a .btn-group, .input-group, or <table>, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip is triggered).

Don't try to show tooltips on hidden elements