﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35375	Original line of tabular inline admin is always shown on the left, even in RTL	Eyal Cherevatsky	nobody	"When using a tabular inline admin model, the ""original"" line (containing the string representation and, optionally, a view/change link) is always show on the left. This is fine in most cases, expect for cases where the language is RTL (right-to-left).

The following CSS, if put in `django/contrib/admin/static/admin/css/rtl.css`, should resolve the issue:

{{{#!css
.inline-group .tabular td.original p {
    right: 0;
}
}}}

Alternatively, instead of having specific styling for RTL, we can use `inset-inline-start` instead of `left`, which will work correctly for both LTR and RTL. I believe this should be changed here:
https://github.com/django/django/blob/dd238212082f6547d5b03c5af6ec53368c39568e/django/contrib/admin/static/admin/css/forms.css#L458"	Bug	closed	contrib.admin	5.0	Normal	fixed	admin, inline, rtl, accessibility	Eyal Cherevatsky	Ready for checkin	1	0	0	0	1	1
