UNPKG

579 BCSSView Raw
1/*
2 * Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5
6.ck-content ol {
7 list-style-type: decimal;
8
9 & ol {
10 list-style-type: lower-latin;
11
12 & ol {
13 list-style-type: lower-roman;
14
15 & ol {
16 list-style-type: upper-latin;
17
18 & ol {
19 list-style-type: upper-roman;
20 }
21 }
22 }
23 }
24}
25
26.ck-content ul {
27 list-style-type: disc;
28
29 & ul {
30 list-style-type: circle;
31
32 & ul {
33 list-style-type: square;
34
35 & ul {
36 list-style-type: square;
37 }
38 }
39 }
40}