Merge pull request #8678 from colinux/fix-explication-read-more-button

fix(a11y): improve Explication "lire plus"  accessibility
This commit is contained in:
Colin Darie 2023-03-07 15:37:02 +00:00 committed by GitHub
commit 126819939b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,8 +4,7 @@
= render SimpleFormatComponent.new(@champ.description, allow_a: true)
- if @champ.collapsible_explanation_enabled? && @champ.collapsible_explanation_text.present?
%div
%p.fr-my-2w
%button{ type: "button", "aria-controls": dom_id(@champ, :explanation), "aria-expanded": "false", href: dom_id(@champ, :explanation) } Lire plus
%p.fr-collapse{ id: dom_id(@champ, :explanation) }
= @champ.collapsible_explanation_text
%p.fr-my-2w
%button{ type: "button", "aria-controls": dom_id(@champ, :explanation), "aria-expanded": "false", href: dom_id(@champ, :explanation), class: "fr-btn ft-btn--sm fr-btn--secondary" } Lire plus
%p.fr-collapse{ id: dom_id(@champ, :explanation) }
= @champ.collapsible_explanation_text