You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Describe the issue]
When we use text-algin:right, the ordered-list counters should move to the right.
The bullets in unordered list also need to be fixed.
Is there a reason why the style of ol and ul is different?
Do you think the following changes are ok for ol?
/* add this */
.ql-editorolli.ql-align-right::before {
left:100%;
margin-right:-16px;
text-align: left;
direction: rtl; /* so we get '.1' instead of '1.'}/* remove this? */
.ql-editorol {
padding-left:20px;
}
/* add this instead? */
.ql-editorolli {
padding-left:20px;
}
.ql-editorolli.ql-align-right {
padding-left:0
padding-left: 20px;
}
[Describe the issue]
When we use text-algin:right, the ordered-list counters should move to the right.
The bullets in unordered list also need to be fixed.
Is there a reason why the style of ol and ul is different?
Do you think the following changes are ok for ol?
https://github.com/quilljs/quill/blob/d8edb9363edcd5f577168b6c8d3fa34a7f58fc6d/assets/core.styl#L59
Steps for Reproduction
Expected behavior: [expected]
'.1' aligned to the right. Notice the order of the dot and number.
Actual behavior: [actual]
'1.' is aligned to the left.
Platforms: [ex. Chrome 48 on Mac 10.11]
Version: [version]
1.0-beta.6
The text was updated successfully, but these errors were encountered: