Commit 65675d5772a334442ed5da9adb47410ca7e5ad58
1 parent
66faa11c
Exists in
master
and in
12 other branches
Fix list ul and ol.
Showing
1 changed file
with
9 additions
and
0 deletions
Show diff stats
style.css
... | ... | @@ -2786,5 +2786,14 @@ body.action-embed-index { |
2786 | 2786 | |
2787 | 2787 | .article-body ul { |
2788 | 2788 | list-style-position: inside; |
2789 | + list-style-type: disc; | |
2790 | +} | |
2791 | + | |
2792 | +.article-body ol { | |
2793 | + list-style-position: inside; | |
2794 | + list-style-type: decimal; | |
2795 | +} | |
2796 | + | |
2797 | +.article-body li { | |
2789 | 2798 | list-style: inherit; |
2790 | 2799 | } | ... | ... |