aboutsummaryrefslogtreecommitdiff
path: root/docs/components/tooltips.md
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2017-04-19 10:59:10 +0200
committerJohann-S <[email protected]>2017-05-14 11:41:19 +0200
commitfc8b85b62670b8396cac7fb821c025c58fa77a78 (patch)
tree0d21ed48546813920a28f97d7c6216106f8189e7 /docs/components/tooltips.md
parent18e4e851e2829aedc6d1ff2b703ba5cae2c0a288 (diff)
downloadbootstrap-fc8b85b62670b8396cac7fb821c025c58fa77a78.tar.xz
bootstrap-fc8b85b62670b8396cac7fb821c025c58fa77a78.zip
Fix some css for the arrow of Popover/Tooltip + update documentation
Diffstat (limited to 'docs/components/tooltips.md')
-rw-r--r--docs/components/tooltips.md6
1 files changed, 3 insertions, 3 deletions
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>'&lt;div class="tooltip" role="tooltip"&gt;&lt;div class="tooltip-arrow"&gt;&lt;/div&gt;&lt;div class="tooltip-inner"&gt;&lt;/div&gt;&lt;/div&gt;'</code></td>
+ <td><code>'&lt;div class="tooltip" role="tooltip"&gt;&lt;div class="arrow"&gt;&lt;/div&gt;&lt;div class="tooltip-inner"&gt;&lt;/div&gt;&lt;/div&gt;'</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>