Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaussel Loïc <loic.laussel@orange.com>2021-06-13 08:12:22 +0300
committerGitHub <noreply@github.com>2021-06-13 08:12:22 +0300
commit9ac65855c4b9739859eda22ea930afd6a0341e8b (patch)
tree55201d6b89ed9ad48f627662b92865294ceb6122 /site/content/docs/5.0
parentb613c8dbb6c30e62adaefc669130549fd9c2e28b (diff)
fix accessibility issue on sidebars example (#34214)
Diffstat (limited to 'site/content/docs/5.0')
-rw-r--r--site/content/docs/5.0/examples/sidebars/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/site/content/docs/5.0/examples/sidebars/index.html b/site/content/docs/5.0/examples/sidebars/index.html
index c97812128f..4d628f1c06 100644
--- a/site/content/docs/5.0/examples/sidebars/index.html
+++ b/site/content/docs/5.0/examples/sidebars/index.html
@@ -195,22 +195,22 @@ body_class: ""
</li>
<li>
<a href="#" class="nav-link py-3 border-bottom" title="Dashboard" data-bs-toggle="tooltip" data-bs-placement="right">
- <svg class="bi" width="24" height="24"><use xlink:href="#speedometer2"/></svg>
+ <svg class="bi" width="24" height="24" role="img" aria-label="Dashboard"><use xlink:href="#speedometer2"/></svg>
</a>
</li>
<li>
<a href="#" class="nav-link py-3 border-bottom" title="Orders" data-bs-toggle="tooltip" data-bs-placement="right">
- <svg class="bi" width="24" height="24"><use xlink:href="#table"/></svg>
+ <svg class="bi" width="24" height="24" role="img" aria-label="Orders"><use xlink:href="#table"/></svg>
</a>
</li>
<li>
<a href="#" class="nav-link py-3 border-bottom" title="Products" data-bs-toggle="tooltip" data-bs-placement="right">
- <svg class="bi" width="24" height="24"><use xlink:href="#grid"/></svg>
+ <svg class="bi" width="24" height="24" role="img" aria-label="Products"><use xlink:href="#grid"/></svg>
</a>
</li>
<li>
<a href="#" class="nav-link py-3 border-bottom" title="Customers" data-bs-toggle="tooltip" data-bs-placement="right">
- <svg class="bi" width="24" height="24"><use xlink:href="#people-circle"/></svg>
+ <svg class="bi" width="24" height="24" role="img" aria-label="Customers"><use xlink:href="#people-circle"/></svg>
</a>
</li>
</ul>