diff --git a/src/wp-content/themes/twentytwentyone/assets/css/ie.css b/src/wp-content/themes/twentytwentyone/assets/css/ie.css
index 33946c7100..62a4a5263a 100644
a
|
b
|
ul { |
3831 | 3831 | list-style-type: disc; |
3832 | 3832 | } |
3833 | 3833 | |
| 3834 | ul ul { |
| 3835 | list-style-type: circle; |
| 3836 | } |
| 3837 | |
3834 | 3838 | ol { |
3835 | 3839 | list-style-type: decimal; |
3836 | 3840 | } |
3837 | 3841 | |
| 3842 | ol ul { |
| 3843 | list-style-type: circle; |
| 3844 | } |
| 3845 | |
3838 | 3846 | dt { |
3839 | 3847 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
3840 | 3848 | font-weight: bold; |
diff --git a/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss b/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss
index 01e8581cea..3b22604b53 100644
a
|
b
|
ol { |
19 | 19 | |
20 | 20 | ul { |
21 | 21 | list-style-type: disc; |
| 22 | ul { |
| 23 | list-style-type: circle; |
| 24 | } |
22 | 25 | } |
23 | 26 | |
24 | 27 | ol { |
25 | 28 | list-style-type: decimal; |
| 29 | ul { |
| 30 | list-style-type: circle; |
| 31 | } |
26 | 32 | } |
27 | 33 | |
28 | 34 | dt { |
diff --git a/src/wp-content/themes/twentytwentyone/style-rtl.css b/src/wp-content/themes/twentytwentyone/style-rtl.css
index 167391639d..30dcc0b76c 100644
a
|
b
|
ul { |
2683 | 2683 | list-style-type: disc; |
2684 | 2684 | } |
2685 | 2685 | |
| 2686 | ul ul { |
| 2687 | list-style-type: circle; |
| 2688 | } |
| 2689 | |
2686 | 2690 | ol { |
2687 | 2691 | list-style-type: decimal; |
2688 | 2692 | } |
2689 | 2693 | |
| 2694 | ol ul { |
| 2695 | list-style-type: circle; |
| 2696 | } |
| 2697 | |
2690 | 2698 | dt { |
2691 | 2699 | font-family: var(--definition-term--font-family); |
2692 | 2700 | font-weight: bold; |
diff --git a/src/wp-content/themes/twentytwentyone/style.css b/src/wp-content/themes/twentytwentyone/style.css
index 815fbf7226..5bd00d67b8 100644
a
|
b
|
ul { |
2693 | 2693 | list-style-type: disc; |
2694 | 2694 | } |
2695 | 2695 | |
| 2696 | ul ul { |
| 2697 | list-style-type: circle; |
| 2698 | } |
| 2699 | |
2696 | 2700 | ol { |
2697 | 2701 | list-style-type: decimal; |
2698 | 2702 | } |
2699 | 2703 | |
| 2704 | ol ul { |
| 2705 | list-style-type: circle; |
| 2706 | } |
| 2707 | |
2700 | 2708 | dt { |
2701 | 2709 | font-family: var(--definition-term--font-family); |
2702 | 2710 | font-weight: bold; |