[15-min-fix] Set opacity-0 CSS utility class to 0.00001 for ChromeVox (#13666)
* Set opacity-0 CSS utility class to 0.00001 for ChromeVox. * Update app/assets/stylesheets/config/_generator.scss Co-authored-by: Vaidehi Joshi <vaidehi.sj@gmail.com> * Added a SASS variable as it's being used in #13435. * Revert "Added a SASS variable as it's being used in #13435." This reverts commit ec1eaa17387b8e050ca6dae73b083823bc44f6e9. Co-authored-by: Vaidehi Joshi <vaidehi.sj@gmail.com>
This commit is contained in:
parent
38214380dd
commit
d59b8ba0ee
1 changed files with 2 additions and 1 deletions
|
|
@ -34,7 +34,8 @@
|
|||
(
|
||||
'opacity',
|
||||
'opacity',
|
||||
('100': 1, '75': 0.75, '50': 0.5, '25': 0.25, '0': 0),
|
||||
// Explicitly set opacity-0 to 0.00001 to ensure accessibility on ChromeVox. See https://github.com/forem/forem/issues/12939
|
||||
('100': 1, '75': 0.75, '50': 0.5, '25': 0.25, '0': 0.00001),
|
||||
(),
|
||||
true
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue