Opened 6 years ago
Closed 4 years ago
#49447 closed defect (bug) (fixed)
Twenty Twenty: style of rtl paragraph
| Reported by: | amirkamizi | Owned by: | audrasjb |
|---|---|---|---|
| Priority: | normal | Milestone: | 6.1 |
| Component: | Bundled Theme | Version: | 5.3 |
| Severity: | normal | Keywords: | has-patch commit |
| Cc: | Focuses: | css, rtl |
Description (last modified by )
when changing the language of the website with polylang plugin i noticed everything works perfectly except the alighnment of paragraphs which were still left to right although in the editor i set them to be right to left and it also got the class has-text-align-right
after checking many things I realzed in the style-rtl.css file the mentioned class (has-text-align-right) has text align as left and (has-text-align-left) had text alight to left as well.
so i changed the has-text-align-right to the following and now everything works great
.has-text-align-right {
text-align: right;
}
Attachments (2)
Change History (13)
#1
@
6 years ago
- Component Formatting → Bundled Theme
- Summary style of rtl paragraph for twenty twenty theme → Twenty Twenty: style of rtl paragraph
#3
@
6 years ago
- Keywords needs-patch added
- Milestone Awaiting Review → 5.5
- Severity major → normal
- Version 5.3.2 → 5.3
#5
@
6 years ago
- Keywords 2nd-opinion added
- Milestone 5.5 → Future Release
Looking for a second opinion on this one. It seems like if a paragraph is set to align right in LTR, then it should be aligned to the left when using RTL?
#6
@
4 years ago
- Keywords needs-patch added; has-patch 2nd-opinion removed
- Milestone Future Release → 6.1
Twenty Twenty's style.css has /*rtl:ignore*/ for the .has-text-align-left, but that is missing for .has-text-align-right. As a result, the theme overrides block library styles on the front end (and not in the editor).
The patch will need to update both style.css and style-rtl.css.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
has-text-align-right class alignment corrected