Skip to content

Commit

Permalink
Another update to list styles - ugh
Browse files Browse the repository at this point in the history
  • Loading branch information
occupant committed Aug 27, 2024
1 parent ab26e12 commit 81fa78a
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 30 deletions.
16 changes: 8 additions & 8 deletions css/drupal.ckeditor.theme.styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/drupal.ckeditor.theme.styles.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/drupal.ckeditor.theme.styles.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/drupal.ckeditor.theme.styles.min.css.map

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/styles.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/styles.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/styles.min.css.map

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions src/css/base/list.base.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,36 @@
*/

/* default ol styles */
ol li {
.text-formatted ol li {
list-style-type: decimal;
}

ol li li {
.text-formatted ol li li {
list-style-type: lower-alpha;
}

ol li li li {
.text-formatted ol li li li {
list-style-type: lower-roman;
}

ol li li li li {
.text-formatted ol li li li li {
list-style-type: upper-alpha;
}

ol li li li li li {
.text-formatted ol li li li li li {
list-style-type: upper-roman;
}

/* default ul styles */
ul li {
.text-formatted ul li {
list-style-type: disc;
}

ul li li {
.text-formatted ul li li {
list-style-type: circle;
}

ul li li li {
.text-formatted ul li li li {
list-style-type: square;
}

Expand Down

0 comments on commit 81fa78a

Please sign in to comment.