@dialpad/dialtone-css 8.80.0-next.3 → 8.80.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -41,10 +41,34 @@
|
|
|
41
41
|
list-style-type: disc;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
+
ul ul > li {
|
|
45
|
+
list-style-type: circle;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
ul ul ul > li {
|
|
49
|
+
list-style-type: square;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
ul ul ul ul > li {
|
|
53
|
+
list-style-type: disc;
|
|
54
|
+
}
|
|
55
|
+
|
|
44
56
|
ol > li {
|
|
45
57
|
list-style-type: decimal;
|
|
46
58
|
}
|
|
47
59
|
|
|
60
|
+
ol ol > li {
|
|
61
|
+
list-style-type: lower-alpha;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
ol ol ol > li {
|
|
65
|
+
list-style-type: lower-roman;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
ol ol ol ol > li {
|
|
69
|
+
list-style-type: decimal;
|
|
70
|
+
}
|
|
71
|
+
|
|
48
72
|
blockquote {
|
|
49
73
|
margin-inline-start: 0;
|
|
50
74
|
padding-inline-start: var(--dt-spacing-100);
|
|
@@ -8133,9 +8133,27 @@
|
|
|
8133
8133
|
.d-rich-text-editor > .ProseMirror ul > li {
|
|
8134
8134
|
list-style-type: disc;
|
|
8135
8135
|
}
|
|
8136
|
+
.d-rich-text-editor > .ProseMirror ul ul > li {
|
|
8137
|
+
list-style-type: circle;
|
|
8138
|
+
}
|
|
8139
|
+
.d-rich-text-editor > .ProseMirror ul ul ul > li {
|
|
8140
|
+
list-style-type: square;
|
|
8141
|
+
}
|
|
8142
|
+
.d-rich-text-editor > .ProseMirror ul ul ul ul > li {
|
|
8143
|
+
list-style-type: disc;
|
|
8144
|
+
}
|
|
8136
8145
|
.d-rich-text-editor > .ProseMirror ol > li {
|
|
8137
8146
|
list-style-type: decimal;
|
|
8138
8147
|
}
|
|
8148
|
+
.d-rich-text-editor > .ProseMirror ol ol > li {
|
|
8149
|
+
list-style-type: lower-alpha;
|
|
8150
|
+
}
|
|
8151
|
+
.d-rich-text-editor > .ProseMirror ol ol ol > li {
|
|
8152
|
+
list-style-type: lower-roman;
|
|
8153
|
+
}
|
|
8154
|
+
.d-rich-text-editor > .ProseMirror ol ol ol ol > li {
|
|
8155
|
+
list-style-type: decimal;
|
|
8156
|
+
}
|
|
8139
8157
|
.d-rich-text-editor > .ProseMirror blockquote {
|
|
8140
8158
|
-webkit-margin-start: 0;
|
|
8141
8159
|
margin-inline-start: 0;
|