docx-diff-editor 1.0.15 → 1.0.16
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/styles.css +13 -17
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
DocxDiffEditor Styles
|
|
3
3
|
|
|
4
|
-
This CSS
|
|
5
|
-
|
|
4
|
+
This CSS bundles SuperDoc editor styles with DocxDiffEditor customizations.
|
|
5
|
+
|
|
6
|
+
IMPORTANT: Import this CSS AFTER your Tailwind/global styles to ensure
|
|
7
|
+
proper cascade order. For example:
|
|
8
|
+
|
|
9
|
+
@import "tailwindcss";
|
|
10
|
+
@import "docx-diff-editor/styles.css";
|
|
11
|
+
|
|
12
|
+
Or in your component:
|
|
13
|
+
|
|
14
|
+
import 'docx-diff-editor/styles.css'; // After Tailwind is loaded
|
|
6
15
|
|
|
7
|
-
Layer order (lowest to highest priority):
|
|
8
|
-
1. base - CSS framework base/reset styles
|
|
9
|
-
2. superdoc - SuperDoc editor styles
|
|
10
|
-
3. dde - DocxDiffEditor custom styles
|
|
11
16
|
========================================================================== */
|
|
12
17
|
|
|
13
|
-
/*
|
|
14
|
-
@layer base, superdoc, dde;
|
|
15
|
-
|
|
16
|
-
/* SuperDoc styles in their own layer */
|
|
17
|
-
@layer superdoc {
|
|
18
|
+
/* ========================= SuperDoc Editor Styles ========================= */
|
|
18
19
|
:root {
|
|
19
20
|
/* CSS variables */
|
|
20
21
|
}
|
|
@@ -5435,10 +5436,8 @@ img[data-v-7dd69850] {
|
|
|
5435
5436
|
mix-blend-mode: difference;
|
|
5436
5437
|
}
|
|
5437
5438
|
|
|
5438
|
-
}
|
|
5439
5439
|
|
|
5440
|
-
/* DocxDiffEditor
|
|
5441
|
-
@layer dde {
|
|
5440
|
+
/* ========================= DocxDiffEditor Custom Styles ========================= */
|
|
5442
5441
|
/**
|
|
5443
5442
|
* DocxDiffEditor Styles
|
|
5444
5443
|
*
|
|
@@ -5826,7 +5825,4 @@ img[data-v-7dd69850] {
|
|
|
5826
5825
|
.dde-container .ProseMirror-selectednode [data-track-format] {
|
|
5827
5826
|
outline: 2px solid var(--dde-primary-color);
|
|
5828
5827
|
outline-offset: 1px;
|
|
5829
|
-
}
|
|
5830
|
-
|
|
5831
|
-
|
|
5832
5828
|
}
|