@ctzhian/tiptap 2.4.0 → 2.4.1
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/dist/asset/css/index.css +46 -46
- package/package.json +1 -1
package/dist/asset/css/index.css
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
--mui-transitions-easing-easeInOut: cubic-bezier(0.4, 0, 0.2, 1);
|
|
12
12
|
|
|
13
13
|
--dark-gray: #232323;
|
|
14
|
-
--light-gray:
|
|
14
|
+
--light-gray: #f8f8f7;
|
|
15
15
|
--dark-brown: #382b26;
|
|
16
16
|
--light-brown: #f9f2f2;
|
|
17
17
|
--dark-orange: #3f3122;
|
|
@@ -220,6 +220,51 @@
|
|
|
220
220
|
background-color: transparent;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
+
.tiptap.ProseMirror th[data-background-color="gray"],
|
|
224
|
+
.tiptap.ProseMirror td[data-background-color="gray"] {
|
|
225
|
+
background-color: var(--light-gray);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.tiptap.ProseMirror th[data-background-color="brown"],
|
|
229
|
+
.tiptap.ProseMirror td[data-background-color="brown"] {
|
|
230
|
+
background-color: var(--light-brown);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.tiptap.ProseMirror th[data-background-color="orange"],
|
|
234
|
+
.tiptap.ProseMirror td[data-background-color="orange"] {
|
|
235
|
+
background-color: var(--light-orange);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.tiptap.ProseMirror th[data-background-color="yellow"],
|
|
239
|
+
.tiptap.ProseMirror td[data-background-color="yellow"] {
|
|
240
|
+
background-color: var(--light-yellow);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.tiptap.ProseMirror th[data-background-color="green"],
|
|
244
|
+
.tiptap.ProseMirror td[data-background-color="green"] {
|
|
245
|
+
background-color: var(--light-green);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.tiptap.ProseMirror th[data-background-color="blue"],
|
|
249
|
+
.tiptap.ProseMirror td[data-background-color="blue"] {
|
|
250
|
+
background-color: var(--light-blue);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.tiptap.ProseMirror th[data-background-color="purple"],
|
|
254
|
+
.tiptap.ProseMirror td[data-background-color="purple"] {
|
|
255
|
+
background-color: var(--light-purple);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.tiptap.ProseMirror th[data-background-color="pink"],
|
|
259
|
+
.tiptap.ProseMirror td[data-background-color="pink"] {
|
|
260
|
+
background-color: var(--light-pink);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.tiptap.ProseMirror th[data-background-color="red"],
|
|
264
|
+
.tiptap.ProseMirror td[data-background-color="red"] {
|
|
265
|
+
background-color: var(--light-red);
|
|
266
|
+
}
|
|
267
|
+
|
|
223
268
|
body.dark .tiptap.ProseMirror th[data-background-color="gray"],
|
|
224
269
|
body.dark .tiptap.ProseMirror td[data-background-color="gray"] {
|
|
225
270
|
background-color: var(--dark-gray);
|
|
@@ -263,49 +308,4 @@ body.dark .tiptap.ProseMirror td[data-background-color="pink"] {
|
|
|
263
308
|
body.dark .tiptap.ProseMirror th[data-background-color="red"],
|
|
264
309
|
body.dark .tiptap.ProseMirror td[data-background-color="red"] {
|
|
265
310
|
background-color: var(--dark-red);
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
body.light .tiptap.ProseMirror th[data-background-color="gray"],
|
|
269
|
-
body.light .tiptap.ProseMirror td[data-background-color="gray"] {
|
|
270
|
-
background-color: var(--light-gray);
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
body.light .tiptap.ProseMirror th[data-background-color="brown"],
|
|
274
|
-
body.light .tiptap.ProseMirror td[data-background-color="brown"] {
|
|
275
|
-
background-color: var(--light-brown);
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
body.light .tiptap.ProseMirror th[data-background-color="orange"],
|
|
279
|
-
body.light .tiptap.ProseMirror td[data-background-color="orange"] {
|
|
280
|
-
background-color: var(--light-orange);
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
body.light .tiptap.ProseMirror th[data-background-color="yellow"],
|
|
284
|
-
body.light .tiptap.ProseMirror td[data-background-color="yellow"] {
|
|
285
|
-
background-color: var(--light-yellow);
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
body.light .tiptap.ProseMirror th[data-background-color="green"],
|
|
289
|
-
body.light .tiptap.ProseMirror td[data-background-color="green"] {
|
|
290
|
-
background-color: var(--light-green);
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
body.light .tiptap.ProseMirror th[data-background-color="blue"],
|
|
294
|
-
body.light .tiptap.ProseMirror td[data-background-color="blue"] {
|
|
295
|
-
background-color: var(--light-blue);
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
body.light .tiptap.ProseMirror th[data-background-color="purple"],
|
|
299
|
-
body.light .tiptap.ProseMirror td[data-background-color="purple"] {
|
|
300
|
-
background-color: var(--light-purple);
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
body.light .tiptap.ProseMirror th[data-background-color="pink"],
|
|
304
|
-
body.light .tiptap.ProseMirror td[data-background-color="pink"] {
|
|
305
|
-
background-color: var(--light-pink);
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
body.light .tiptap.ProseMirror th[data-background-color="red"],
|
|
309
|
-
body.light .tiptap.ProseMirror td[data-background-color="red"] {
|
|
310
|
-
background-color: var(--light-red);
|
|
311
311
|
}
|