zydx-plus 1.32.314 → 1.32.315
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/package.json
CHANGED
|
@@ -356,7 +356,7 @@ export default {
|
|
|
356
356
|
preventPaste(event) {
|
|
357
357
|
const text = event.clipboardData.getData('text/plain');
|
|
358
358
|
const text2 = text.replace(/[\r\n]/g, '').replace(/\s*/g, '')
|
|
359
|
-
this.editor.chain().focus().insertContentAt(this.selection(),
|
|
359
|
+
this.editor.chain().focus().insertContentAt(this.selection(), text2).run()
|
|
360
360
|
},
|
|
361
361
|
// 上传word
|
|
362
362
|
uploadDoc(e) {
|
|
@@ -1089,7 +1089,7 @@ export default {
|
|
|
1089
1089
|
}
|
|
1090
1090
|
|
|
1091
1091
|
:deep(p[data-signid="subject"]) {
|
|
1092
|
-
padding-bottom:
|
|
1092
|
+
padding-bottom: 20px;
|
|
1093
1093
|
}
|
|
1094
1094
|
|
|
1095
1095
|
:deep(.author) {
|
|
@@ -1099,7 +1099,9 @@ export default {
|
|
|
1099
1099
|
:deep(.text) {
|
|
1100
1100
|
text-indent: 2em;
|
|
1101
1101
|
}
|
|
1102
|
-
|
|
1102
|
+
:deep(.title) {
|
|
1103
|
+
padding: 10px 0 2px 0;
|
|
1104
|
+
}
|
|
1103
1105
|
.read-only-a {
|
|
1104
1106
|
position: absolute;
|
|
1105
1107
|
bottom: 36px;
|
|
@@ -863,7 +863,7 @@ export default {
|
|
|
863
863
|
}
|
|
864
864
|
|
|
865
865
|
.enclosure-list {
|
|
866
|
-
margin: 5px 0 0
|
|
866
|
+
margin: 5px 0 0 2em;
|
|
867
867
|
height: 22px;
|
|
868
868
|
line-height: 22px;
|
|
869
869
|
}
|
|
@@ -939,6 +939,10 @@ export default {
|
|
|
939
939
|
line-height: 16px;
|
|
940
940
|
box-sizing: border-box;
|
|
941
941
|
font-family: Arial;
|
|
942
|
+
-moz-text-align-last: justify;
|
|
943
|
+
text-align-last: justify;
|
|
944
|
+
word-break: break-all;
|
|
945
|
+
text-justify: distribute;
|
|
942
946
|
}
|
|
943
947
|
|
|
944
948
|
.but-f {
|