Opened 6 months ago

Closed 6 months ago

#34913 closed New feature (fixed)

Django Admin high contrast mode no clear session

Reported by: Cheuk Ting Ho Owned by: Cheuk Ting Ho
Component: contrib.admin Version: dev
Severity: Normal Keywords: accessibility, forced-colors
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: yes

Description (last modified by Thibaud Colas)

When in high contrast mode, Django Admin does not have clear boundaries areas. Potential fix is to add:

@media (forced-colors: active) {
  #changelist-filter {
      border: 1px solid;
  }
}

to different areas.

Change History (3)

comment:1 by Thibaud Colas, 6 months ago

Description: modified (diff)
Keywords: accessibility forced-colors added
Owner: changed from nobody to Cheuk Ting Ho
Status: newassigned
Triage Stage: UnreviewedAccepted
Type: UncategorizedNew feature
Version: 4.2dev

Thank you @Cheuk Ting Ho! Yes in particular adding borders to help users of Windows high contrast mode distinguish between the different areas of the page for the following elements:

  • Header
  • Filters
  • Related content blocks

comment:2 by Mariusz Felisiak, 6 months ago

Has patch: set
Summary: [Accessibility] Django Admin high contrast mode no clear sessionDjango Admin high contrast mode no clear session

comment:3 by GitHub <noreply@…>, 6 months ago

Resolution: fixed
Status: assignedclosed

In eab6745:

Fixed #34913 -- Added borders on high contrast mode in the admin.

Note: See TracTickets for help on using tickets.
Back to Top