Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#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)

delete.jpg (43.7 KB ) - added by okhayat 16 years ago.
Screenshot showing the problem
ticket8812-r8869.diff (2.6 KB ) - added by Jannis Leidel 16 years ago.
Small fix

Download all attachments as: .zip

Change History (5)

by okhayat, 16 years ago

Attachment: delete.jpg added

Screenshot showing the problem

by Jannis Leidel, 16 years ago

Attachment: ticket8812-r8869.diff added

Small fix

comment:1 by Alex Gaynor, 16 years ago

Has patch: set
Triage Stage: UnreviewedAccepted

comment:2 by Malcolm Tredinnick, 16 years ago

Resolution: fixed
Status: newclosed

Fixed in [8903]

comment:3 by Jacob, 13 years ago

milestone: 1.0

Milestone 1.0 deleted

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