Actions
Task #92644
closedEpic #89595: Improve accessibility of backend
Insufficient labeling for search input
Start date:
2020-10-21
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
accessibility, tas2020
Complexity:
easy
Sprint Focus:
Description
The search input has no associated label which can be determined programmatically.
<input type="text" class="form-control toolbar-item-search-field t3js-topbar-navigation-search-field" placeholder="Search" id="live-search-box" autocomplete="off">
To fix this problem, the best way is to add a label aria-label attribute to the inputs:
<input type="text" class="form-control toolbar-item-search-field t3js-topbar-navigation-search-field" placeholder="Search" aria-label="Search" id="live-search-box" autocomplete="off">
Actions