Skip to content

Commit

Permalink
Merge pull request #12458 from ckeditor/ck/12179-list-styles
Browse files Browse the repository at this point in the history
Fix (list): Improved styles for indented lists. Closes #12179.
  • Loading branch information
scofalik authored Sep 13, 2022
2 parents e84ddef + 119eade commit f167b5c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions packages/ckeditor5-list/theme/liststyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,39 @@
.ck.ck-list-styles-list {
display: grid;
}

.ck-content ol {
list-style-type: decimal;

& ol {
list-style-type: lower-latin;

& ol {
list-style-type: lower-roman;

& ol {
list-style-type: upper-latin;

& ol {
list-style-type: upper-roman;
}
}
}
}
}

.ck-content ul {
list-style-type: circle;

& ul {
list-style-type: disc;

& ul {
list-style-type: square;

& ul {
list-style-type: square;
}
}
}
}

0 comments on commit f167b5c

Please sign in to comment.