We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46967fb commit 97be411Copy full SHA for 97be411
GitHubA11yFixes.user.js
@@ -104,9 +104,9 @@ function onNodeAdded(target) {
104
onSelectMenuItemChanged(elem);
105
}
106
// Table lists; e.g. in issue and commit listings.
107
- for (elem of target.querySelectorAll(".table-list,.Box-body"))
+ for (elem of target.querySelectorAll(".table-list,.Box-body,ul.js-navigation-container"))
108
elem.setAttribute("role", "table");
109
- for (elem of target.querySelectorAll(".table-list-item,.Box-body-row"))
+ for (elem of target.querySelectorAll(".table-list-item,.Box-body-row,.Box-row"))
110
elem.setAttribute("role", "row");
111
for (elem of target.querySelectorAll(".d-table")) {
112
// There's one of these inside every .Box-body-row.
0 commit comments