Skip to content
Snippets Groups Projects
Verified Commit 6e1e0c29 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #2990588 by Utkarsh_33, andrewmacpherson, oriol_e9g, smustgrave, shaal:...

Issue #2990588 by Utkarsh_33, andrewmacpherson, oriol_e9g, smustgrave, shaal: Visually-hidden refresh button in Field UI fails WCAG Focus Visible

(cherry picked from commit b97be27a)
parent bd6f3290
No related branches found
No related tags found
1 merge request!9944Issue #3483353: Consider making the createCopy config action optionally fail...
Pipeline #206922 passed
+1
......@@ -268,7 +268,11 @@ public function form(array $form, FormStateInterface $form_state) {
// spinners will be added manually by the client-side script.
'progress' => 'none',
],
'#attributes' => ['class' => ['visually-hidden']],
'#attributes' => [
'class' => ['visually-hidden'],
// Ensure the button is not focusable via keyboard navigation.
'tabindex' => '-1',
],
];
$form['actions'] = ['#type' => 'actions'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment