diff options
| author | Johann-S <[email protected]> | 2017-04-19 10:59:10 +0200 |
|---|---|---|
| committer | Johann-S <[email protected]> | 2017-05-14 11:41:19 +0200 |
| commit | fc8b85b62670b8396cac7fb821c025c58fa77a78 (patch) | |
| tree | 0d21ed48546813920a28f97d7c6216106f8189e7 /docs | |
| parent | 18e4e851e2829aedc6d1ff2b703ba5cae2c0a288 (diff) | |
| download | bootstrap-fc8b85b62670b8396cac7fb821c025c58fa77a78.tar.xz bootstrap-fc8b85b62670b8396cac7fb821c025c58fa77a78.zip | |
Fix some css for the arrow of Popover/Tooltip + update documentation
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/components/popovers.md | 4 | ||||
| -rw-r--r-- | docs/components/tooltips.md | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/components/popovers.md b/docs/components/popovers.md index 71d488fd4..9366ac1a1 100644 --- a/docs/components/popovers.md +++ b/docs/components/popovers.md @@ -231,12 +231,12 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap <tr> <td>template</td> <td>string</td> - <td><code>'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'</code></td> + <td><code>'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'</code></td> <td> <p>Base HTML to use when creating the popover.</p> <p>The popover's <code>title</code> will be injected into the <code>.popover-title</code>.</p> <p>The popover's <code>content</code> will be injected into the <code>.popover-content</code>.</p> - <p><code>.popover-arrow</code> will become the popover's arrow.</p> + <p><code>.arrow</code> will become the popover's arrow.</p> <p>The outermost wrapper element should have the <code>.popover</code> class.</p> </td> </tr> diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md index e8a7ce96f..54f3c448f 100644 --- a/docs/components/tooltips.md +++ b/docs/components/tooltips.md @@ -136,7 +136,7 @@ You should only add tooltips to HTML elements that are traditionally keyboard-fo <!-- Generated markup by the plugin --> <div class="tooltip tooltip-top" role="tooltip"> - <div class="tooltip-arrow"></div> + <div class="arrow"></div> <div class="tooltip-inner"> Some tooltip text! </div> @@ -209,11 +209,11 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap <tr> <td>template</td> <td>string</td> - <td><code>'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'</code></td> + <td><code>'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>'</code></td> <td> <p>Base HTML to use when creating the tooltip.</p> <p>The tooltip's <code>title</code> will be injected into the <code>.tooltip-inner</code>.</p> - <p><code>.tooltip-arrow</code> will become the tooltip's arrow.</p> + <p><code>.arrow</code> will become the tooltip's arrow.</p> <p>The outermost wrapper element should have the <code>.tooltip</code> class.</p> </td> </tr> |
