Skip to content

Commit

Permalink
fix: only apply bullet style to ul > li
Browse files Browse the repository at this point in the history
* Make list items in ordered lists still show numbers.
* Use the same bullets on second and third level when first level is ol.

Signed-off-by: Max <max@nextcloud.com>
  • Loading branch information
max-nextcloud authored and backportbot[bot] committed Feb 21, 2022
1 parent 5dd3bcd commit b271808
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions css/prosemirror.scss
Original file line number Diff line number Diff line change
Expand Up @@ -168,17 +168,17 @@ div.ProseMirror {
margin-bottom: 1em;
}

ul li {
ul > li {
list-style-type: disc;
}

// Second-level list entries
ul > li > ul > li {
li ul > li {
list-style-type: circle;
}

// Third-level and further down list entries
ul > li > ul > li ul li {
li li ul > li {
list-style-type: square;
}

Expand Down

0 comments on commit b271808

Please sign in to comment.