diff options
| author | Julien Déramond <[email protected]> | 2024-08-02 10:18:29 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-08-02 10:18:29 +0200 |
| commit | ac831aa4df8e817883c1510f74604ea67e26f179 (patch) | |
| tree | 558b05d823d6bf40dcd8f38ecbea40ece9bcf25c /site/content/docs/5.3/examples/dropdowns | |
| parent | 163f1f732c269c4493c72f44f920c4322700b2d5 (diff) | |
| download | bootstrap-ac831aa4df8e817883c1510f74604ea67e26f179.tar.xz bootstrap-ac831aa4df8e817883c1510f74604ea67e26f179.zip | |
Docs: add `aria-hidden="true"` to decorative SVGs (#40686)
Diffstat (limited to 'site/content/docs/5.3/examples/dropdowns')
| -rw-r--r-- | site/content/docs/5.3/examples/dropdowns/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.3/examples/dropdowns/index.html b/site/content/docs/5.3/examples/dropdowns/index.html index 6dc038316..099b412ca 100644 --- a/site/content/docs/5.3/examples/dropdowns/index.html +++ b/site/content/docs/5.3/examples/dropdowns/index.html @@ -227,7 +227,7 @@ body_class: "" <option value="December">December</option> </select> <button class="btn cal-btn" type="button" aria-label="next month"> - <svg class="bi" width="16" height="16"><use xlink:href="#arrow-right-short"/></svg> + <svg class="bi" width="16" height="16" aria-hidden="true"><use xlink:href="#arrow-right-short"/></svg> </button> </div> <div class="cal-weekdays text-body-secondary"> @@ -306,7 +306,7 @@ body_class: "" <option value="December">December</option> </select> <button class="btn cal-btn" type="button" aria-label="next month"> - <svg class="bi" width="16" height="16"><use xlink:href="#arrow-right-short"/></svg> + <svg class="bi" width="16" height="16" aria-hidden="true"><use xlink:href="#arrow-right-short"/></svg> </button> </div> <div class="cal-weekdays text-body-secondary"> |
