aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/css/tables.html
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-11-11 20:23:49 -0800
committerChris Rebert <[email protected]>2014-11-13 12:16:03 -0800
commitea407666ce3c5d708b4a830fb2d00bdcb0d2d53e (patch)
tree9eeca9971c60a66573b318299e47a933fa0a6886 /docs/_includes/css/tables.html
parent5660be42faef7fecdd9121e052265da55202ae3c (diff)
downloadbootstrap-ea407666ce3c5d708b4a830fb2d00bdcb0d2d53e.tar.xz
bootstrap-ea407666ce3c5d708b4a830fb2d00bdcb0d2d53e.zip
give all docs callouts IDs
[skip sauce]
Diffstat (limited to 'docs/_includes/css/tables.html')
-rw-r--r--docs/_includes/css/tables.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/_includes/css/tables.html b/docs/_includes/css/tables.html
index ab7049611..aba4a3af8 100644
--- a/docs/_includes/css/tables.html
+++ b/docs/_includes/css/tables.html
@@ -45,7 +45,7 @@
<h2 id="tables-striped">Striped rows</h2>
<p>Use <code>.table-striped</code> to add zebra-striping to any table row within the <code>&lt;tbody&gt;</code>.</p>
- <div class="bs-callout bs-callout-danger">
+ <div class="bs-callout bs-callout-danger" id="callout-tables-striped-ie8">
<h4>Cross-browser compatibility</h4>
<p>Striped tables are styled via the <code>:nth-child</code> CSS selector, which is not available in Internet Explorer 8.</p>
</div>
@@ -346,7 +346,7 @@
<td class="info">...</td>
</tr>
{% endhighlight %}
- <div class="bs-callout bs-callout-warning">
+ <div class="bs-callout bs-callout-warning" id="callout-tables-context-accessibility">
<h4>Conveying meaning to assistive technologies</h4>
<p>Using color to add meaning to a table row or individual cell only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (the visible text in the relevant table row/cell), or is included through alternative means, such as additional text hidden with the <code>.sr-only</code> class.</p>
</div>
@@ -354,7 +354,7 @@
<h2 id="tables-responsive">Responsive tables</h2>
<p>Create responsive tables by wrapping any <code>.table</code> in <code>.table-responsive</code> to make them scroll horizontally on small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.</p>
- <div class="bs-callout bs-callout-warning">
+ <div class="bs-callout bs-callout-warning" id="callout-tables-responsive-ff-fieldset">
<h4>Firefox and fieldsets</h4>
<p>Firefox has some awkward fieldset styling involving <code>width</code> that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack that we <strong>don't</strong> provide in Bootstrap:</p>
{% highlight css %}