Opened 14 years ago

Closed 14 years ago

Last modified 14 years ago

#13168 closed (fixed)

inline-group css class in admin should have text-align:right when in rtl

Reported by: benc Owned by:
Component: User Experience Version: 1.2-beta
Severity: Keywords: rtl, bidi, css
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The h2 header of an inline block in the admin should have text-align:right when viewing in rtl mode.

The following should be added to rtl.css in the contrib/admin/media/css:

.inline-group h2 {
	text-align:right;
}

Change History (3)

comment:1 by Russell Keith-Magee, 14 years ago

Component: django.contrib.adminUser Experience
Owner: nobody removed
Triage Stage: UnreviewedAccepted

comment:2 by Jannis Leidel, 14 years ago

Resolution: fixed
Status: newclosed

(In [13191]) Fixed #13168 - Corrected the alignment of the admin inline headers for rtl languages. Thanks for the report and patch, benc.

comment:3 by Jannis Leidel, 14 years ago

(In [13193]) [1.1.X] Fixed #13168 - Corrected the alignment of the admin inline headers for rtl languages. Thanks for the report and patch, benc.

Backport from trunk, r13191

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