1 | | `.inline-related fieldset.module h3` has a background color of `#bcd` and text color of `#fff` |
2 | | This is hard to read and fails WCAG AA and WCAG AAA (this can be tested here [https://webaim.org/resources/contrastchecker/]) |
3 | | |
4 | | Under Child: #1 and above Fields, see "Name" with the poor contrast |
5 | | [[Image(Color.png)]] |
| 1 | Currently, the CSS definition in `forms.css` for `.inline-related fieldset.module h3` (which is at least 16 years old) is not being used in the Django code base. The only templates using the `inline-related` CSS class are contrib/admin/templates/admin/edit_inline/tabular.html and contrib/admin/templates/admin/edit_inline/stacked.html, and the former only uses `h3` elements inside a `div` element which does not fulfill the CSS rule, and in the latter there is no usage of `h3` at all. |