Opened 20 months ago
Closed 9 months ago
#19060 closed defect (bug) (duplicate)
admin CSS: .code, code should have direction:ltr (for rtl installations)
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | RTL | Version: | 3.2.1 |
| Severity: | normal | Keywords: | has-patch |
| Cc: |
Description
selectors .code, code indicate code, which is 100% of the times english text that must be aligned to the left, and have left-to-right directionality.
if the administration panel is in RTL mode, the code textboxes are reversed, and it is nearly impossible to edit them.
the suggested code will not affect LTR installations.
suggested fix at wp-admin-rtl.dev.css file:
.code, code {
direction: ltr;
(...)
}
Attachments (1)
Change History (10)
Note: See
TracTickets for help on using
tickets.
I agree, this is a very good idea. <code> tag has no rtl text, so it has to have left-to-right direction.