@jvs-milkdown/crepe 1.2.37 → 1.2.39
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.
- package/lib/cjs/index.js +2 -2
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.js +7 -7
- package/lib/esm/index.js.map +1 -1
- package/lib/theme/common/list-item.css +8 -8
- package/lib/theme/common/table.css +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/feature/fixed-toolbar/component.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/feature/fixed-toolbar/component.tsx +2 -1
- package/src/theme/common/list-item.css +8 -8
- package/src/theme/common/table.css +1 -0
|
@@ -121,25 +121,25 @@
|
|
|
121
121
|
counter-increment: crepe-ol-level-4;
|
|
122
122
|
}
|
|
123
123
|
.milkdown ol > .milkdown-list-item-block li .label-wrapper .label.ordered {
|
|
124
|
-
font-size: inherit;
|
|
124
|
+
font-size: var(--list-item-font-size, inherit);
|
|
125
125
|
visibility: hidden;
|
|
126
126
|
}
|
|
127
127
|
.milkdown ol > .milkdown-list-item-block li .label-wrapper .label.ordered::before {
|
|
128
128
|
content: counter(crepe-ol-level, decimal) '.';
|
|
129
|
-
font-size: inherit;
|
|
129
|
+
font-size: var(--list-item-font-size, inherit);
|
|
130
130
|
visibility: visible;
|
|
131
131
|
}
|
|
132
132
|
.milkdown ol ol > .milkdown-list-item-block li .label-wrapper .label.ordered {
|
|
133
|
-
font-size: inherit;
|
|
133
|
+
font-size: var(--list-item-font-size, inherit);
|
|
134
134
|
visibility: hidden;
|
|
135
135
|
}
|
|
136
136
|
.milkdown ol ol > .milkdown-list-item-block li .label-wrapper .label.ordered::before {
|
|
137
137
|
content: counter(crepe-ol-level-2, lower-latin) '.';
|
|
138
|
-
font-size: inherit;
|
|
138
|
+
font-size: var(--list-item-font-size, inherit);
|
|
139
139
|
visibility: visible;
|
|
140
140
|
}
|
|
141
141
|
.milkdown ol ol ol > .milkdown-list-item-block li .label-wrapper .label.ordered {
|
|
142
|
-
font-size: inherit;
|
|
142
|
+
font-size: var(--list-item-font-size, inherit);
|
|
143
143
|
visibility: hidden;
|
|
144
144
|
}
|
|
145
145
|
.milkdown ol
|
|
@@ -150,11 +150,11 @@
|
|
|
150
150
|
.label-wrapper
|
|
151
151
|
.label.ordered::before {
|
|
152
152
|
content: counter(crepe-ol-level-3, lower-roman) '.';
|
|
153
|
-
font-size: inherit;
|
|
153
|
+
font-size: var(--list-item-font-size, inherit);
|
|
154
154
|
visibility: visible;
|
|
155
155
|
}
|
|
156
156
|
.milkdown ol ol ol ol > .milkdown-list-item-block li .label-wrapper .label.ordered {
|
|
157
|
-
font-size: inherit;
|
|
157
|
+
font-size: var(--list-item-font-size, inherit);
|
|
158
158
|
visibility: hidden;
|
|
159
159
|
}
|
|
160
160
|
.milkdown ol
|
|
@@ -166,6 +166,6 @@
|
|
|
166
166
|
.label-wrapper
|
|
167
167
|
.label.ordered::before {
|
|
168
168
|
content: counter(crepe-ol-level-4, decimal) '.';
|
|
169
|
-
font-size: inherit;
|
|
169
|
+
font-size: var(--list-item-font-size, inherit);
|
|
170
170
|
visibility: visible;
|
|
171
171
|
}
|