aboutsummaryrefslogtreecommitdiff
path: root/docs/components/alerts.md
diff options
context:
space:
mode:
authorPatrick H. Lauke <[email protected]>2015-10-16 09:50:18 +0100
committerPatrick H. Lauke <[email protected]>2015-10-16 09:50:18 +0100
commitdf33a43bbd53cd51912632df7707404ff511bc21 (patch)
treee52027d8d82b058cbb23410c36ebd9363489c7eb /docs/components/alerts.md
parent724bf862885f57383f3a19ed46a6deab0f2322a6 (diff)
parent68189e226921d0cfaec4922b723d030baa11a25c (diff)
downloadbootstrap-df33a43bbd53cd51912632df7707404ff511bc21.tar.xz
bootstrap-df33a43bbd53cd51912632df7707404ff511bc21.zip
Merge pull request #17945 from patrickhlauke/docs-redundant-sr
Remove redundant `<span class="sr-only">...</span>` for close buttons
Diffstat (limited to 'docs/components/alerts.md')
-rw-r--r--docs/components/alerts.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/components/alerts.md b/docs/components/alerts.md
index fd01bdd52..e27109768 100644
--- a/docs/components/alerts.md
+++ b/docs/components/alerts.md
@@ -64,7 +64,6 @@ You can see this in action with a live demo:
<div class="alert alert-warning alert-dismissible fade in" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
- <span class="sr-only">Close</span>
</button>
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
</div>
@@ -85,7 +84,6 @@ Or with `data` attributes on a button **within the alert**, as demonstrated abov
{% highlight html %}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
- <span class="sr-only">Close</span>
</button>
{% endhighlight %}