Pagination > Remove "disabled" attributes
Problem
The use of disabled and aria-disabled="true" are incorrect, and not necessary at all for both individual items and the set in general. Disabled should only apply to some interactive elements. <li class="page-item disabled"><span size="md" aria-disabled="true" class="page-link">…</span></li>.
Solution
This should be formatted as a normal list item with child text content. See https://www.w3schools.com/tags/att_disabled.asp for usage notes on the disabled attribute.
For example:
<!-- Not this -->
<li class="page-item disabled"><span size="md" aria-disabled="true" class="page-link">…</span></li>
<!-- Do this -->
<li><span>…</span></li>
Remove this control from GitLab UI because the entire pagination navigation should never be disabled and this applies the method above to all list items which also shouldn't be used.
Edited by Jeremy Elder
