Changes between Initial Version and Version 2 of Ticket #49447
- Timestamp:
- 02/16/2020 05:41:11 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #49447
-
Property
Component
changed from
Formatting
toBundled Theme
-
Property
Summary
changed from
style of rtl paragraph for twenty twenty theme
toTwenty Twenty: style of rtl paragraph
-
Property
Component
changed from
-
Ticket #49447 – Description
initial v2 3 3 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. 4 4 so i changed the has-text-align-right to the following and now everything works great 5 5 {{{ 6 6 .has-text-align-right { 7 7 text-align: right; 8 8 } 9 }}}