#8812 closed (fixed)
Delete link should be right-aligned when admin interface is RTL
Reported by: | okhayat | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The class of the P tag that contains the 'deletelink' should be float-right rather than float-left for it to be displayed correctly.
Currently it is:
<p class="float-left"><a href="delete/" class="deletelink">delete</a></p>
and should be
<p class="float-right"><a href="delete/" class="deletelink">delete</a></p>
Attachments (2)
Change History (5)
by , 16 years ago
Attachment: | delete.jpg added |
---|
comment:1 by , 16 years ago
Has patch: | set |
---|---|
Triage Stage: | Unreviewed → Accepted |
Note:
See TracTickets
for help on using tickets.
Screenshot showing the problem