@lingxiteam/lcdp-ueditor-react 1.0.0-alpha.8 → 1.0.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.
Files changed (117) hide show
  1. package/es/LcdpUeditor.js +64 -61
  2. package/es/const.js +4 -4
  3. package/es/defaultConfig.json +76 -76
  4. package/es/tools/UeditorResourceLoader.js +11 -16
  5. package/es/tools/filterHtmlNode.d.ts +5 -0
  6. package/es/tools/filterHtmlNode.js +41 -0
  7. package/es/tools/loadScript.js +5 -7
  8. package/es/type.d.ts +6 -0
  9. package/lib/LcdpUeditor.js +18 -8
  10. package/lib/defaultConfig.json +76 -76
  11. package/lib/tools/filterHtmlNode.d.ts +5 -0
  12. package/lib/tools/filterHtmlNode.js +61 -0
  13. package/lib/type.d.ts +6 -0
  14. package/package.json +35 -34
  15. package/ueditor-resource/dialogs/anchor/anchor.html +62 -62
  16. package/ueditor-resource/dialogs/attachment/attachment.css +716 -716
  17. package/ueditor-resource/dialogs/attachment/attachment.html +61 -61
  18. package/ueditor-resource/dialogs/attachment/attachment.js +803 -803
  19. package/ueditor-resource/dialogs/audio/audio.css +879 -879
  20. package/ueditor-resource/dialogs/audio/audio.html +93 -93
  21. package/ueditor-resource/dialogs/audio/audio.js +815 -815
  22. package/ueditor-resource/dialogs/background/background.css +193 -193
  23. package/ueditor-resource/dialogs/background/background.html +59 -59
  24. package/ueditor-resource/dialogs/background/background.js +370 -370
  25. package/ueditor-resource/dialogs/contentimport/contentimport.html +176 -176
  26. package/ueditor-resource/dialogs/contentimport/contentimport.js +91 -91
  27. package/ueditor-resource/dialogs/emotion/emotion.css +129 -129
  28. package/ueditor-resource/dialogs/emotion/emotion.html +70 -70
  29. package/ueditor-resource/dialogs/emotion/emotion.js +186 -186
  30. package/ueditor-resource/dialogs/formula/formula.html +98 -98
  31. package/ueditor-resource/dialogs/formula/formula.js +147 -147
  32. package/ueditor-resource/dialogs/help/help.css +37 -37
  33. package/ueditor-resource/dialogs/help/help.html +82 -82
  34. package/ueditor-resource/dialogs/help/help.js +57 -57
  35. package/ueditor-resource/dialogs/image/image.css +768 -768
  36. package/ueditor-resource/dialogs/image/image.html +144 -144
  37. package/ueditor-resource/dialogs/image/image.js +1060 -1060
  38. package/ueditor-resource/dialogs/insertframe/insertframe.html +135 -135
  39. package/ueditor-resource/dialogs/internal.js +81 -81
  40. package/ueditor-resource/dialogs/link/link.html +148 -148
  41. package/ueditor-resource/dialogs/preview/preview.html +45 -45
  42. package/ueditor-resource/dialogs/scrawl/scrawl.css +324 -324
  43. package/ueditor-resource/dialogs/scrawl/scrawl.html +95 -95
  44. package/ueditor-resource/dialogs/scrawl/scrawl.js +682 -682
  45. package/ueditor-resource/dialogs/searchreplace/searchreplace.html +144 -144
  46. package/ueditor-resource/dialogs/searchreplace/searchreplace.js +174 -174
  47. package/ueditor-resource/dialogs/spechars/spechars.html +42 -42
  48. package/ueditor-resource/dialogs/spechars/spechars.js +86 -86
  49. package/ueditor-resource/dialogs/table/edittable.css +85 -85
  50. package/ueditor-resource/dialogs/table/edittable.html +69 -69
  51. package/ueditor-resource/dialogs/table/edittable.js +241 -241
  52. package/ueditor-resource/dialogs/table/edittd.html +62 -62
  53. package/ueditor-resource/dialogs/table/edittip.html +33 -33
  54. package/ueditor-resource/dialogs/template/config.js +42 -42
  55. package/ueditor-resource/dialogs/template/template.css +99 -99
  56. package/ueditor-resource/dialogs/template/template.html +26 -26
  57. package/ueditor-resource/dialogs/template/template.js +53 -53
  58. package/ueditor-resource/dialogs/video/video.css +909 -909
  59. package/ueditor-resource/dialogs/video/video.html +114 -114
  60. package/ueditor-resource/dialogs/video/video.js +867 -867
  61. package/ueditor-resource/dialogs/wordimage/wordimage.html +221 -221
  62. package/ueditor-resource/dialogs/wordimage/wordimage.js +93 -93
  63. package/ueditor-resource/lang/en/en.js +686 -686
  64. package/ueditor-resource/lang/zh-cn/zh-cn.js +748 -748
  65. package/ueditor-resource/lang/zh-tw/zh-tw.js +748 -748
  66. package/ueditor-resource/plugins/demo/demo.js +3 -3
  67. package/ueditor-resource/themes/default/css/ueditor.css +2148 -2148
  68. package/ueditor-resource/themes/default/dialog.css +17 -17
  69. package/ueditor-resource/themes/default/dialogbase.css +132 -132
  70. package/ueditor-resource/themes/default/exts/ai.svg +12 -12
  71. package/ueditor-resource/themes/default/exts/apk.svg +12 -12
  72. package/ueditor-resource/themes/default/exts/chm.svg +12 -12
  73. package/ueditor-resource/themes/default/exts/css.svg +12 -12
  74. package/ueditor-resource/themes/default/exts/doc.svg +22 -22
  75. package/ueditor-resource/themes/default/exts/docx.svg +22 -22
  76. package/ueditor-resource/themes/default/exts/dwg.svg +16 -16
  77. package/ueditor-resource/themes/default/exts/folder.svg +3 -3
  78. package/ueditor-resource/themes/default/exts/gif.svg +14 -14
  79. package/ueditor-resource/themes/default/exts/html.svg +12 -12
  80. package/ueditor-resource/themes/default/exts/jpeg.svg +14 -14
  81. package/ueditor-resource/themes/default/exts/jpg.svg +14 -14
  82. package/ueditor-resource/themes/default/exts/log.svg +12 -12
  83. package/ueditor-resource/themes/default/exts/mp3.svg +14 -14
  84. package/ueditor-resource/themes/default/exts/mp4.svg +12 -12
  85. package/ueditor-resource/themes/default/exts/pdf.svg +14 -14
  86. package/ueditor-resource/themes/default/exts/png.svg +14 -14
  87. package/ueditor-resource/themes/default/exts/ppt.svg +24 -24
  88. package/ueditor-resource/themes/default/exts/pptx.svg +24 -24
  89. package/ueditor-resource/themes/default/exts/psd.svg +12 -12
  90. package/ueditor-resource/themes/default/exts/rar.svg +12 -12
  91. package/ueditor-resource/themes/default/exts/svg.svg +12 -12
  92. package/ueditor-resource/themes/default/exts/torrent.svg +14 -14
  93. package/ueditor-resource/themes/default/exts/txt.svg +14 -14
  94. package/ueditor-resource/themes/default/exts/unknown.svg +12 -12
  95. package/ueditor-resource/themes/default/exts/xls.svg +25 -25
  96. package/ueditor-resource/themes/default/exts/xlsx.svg +25 -25
  97. package/ueditor-resource/themes/default/exts/zip.svg +12 -12
  98. package/ueditor-resource/themes/iframe.css +63 -63
  99. package/ueditor-resource/third-party/SyntaxHighlighter/shCore.js +3655 -3655
  100. package/ueditor-resource/third-party/clipboard/clipboard.js +752 -752
  101. package/ueditor-resource/third-party/codemirror/codemirror.css +106 -106
  102. package/ueditor-resource/third-party/codemirror/codemirror.js +3581 -3581
  103. package/ueditor-resource/third-party/jquery-3.5.1.js +1 -1
  104. package/ueditor-resource/third-party/jquery-3.5.1_1.js +4314 -4314
  105. package/ueditor-resource/third-party/webuploader/webuploader.css +88 -88
  106. package/ueditor-resource/third-party/webuploader/webuploader.js +3 -3
  107. package/ueditor-resource/third-party/zeroclipboard/ZeroClipboard.js +1255 -1255
  108. package/ueditor-resource/ueditor.all.js +5271 -5270
  109. package/ueditor-resource/ueditor.config.js +655 -656
  110. package/ueditor-resource/ueditor.parse.js +13 -13
  111. package/es/LcdpUeditor.d.ts.map +0 -1
  112. package/es/const.d.ts.map +0 -1
  113. package/es/index.d.ts.map +0 -1
  114. package/es/tools/UeditorResourceLoader.d.ts.map +0 -1
  115. package/es/tools/loadScript.d.ts.map +0 -1
  116. package/es/type.d.ts.map +0 -1
  117. package/ueditor-resource/index.html +0 -146
@@ -1,25 +1,25 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="85" height="100" viewBox="0 0 85 100">
2
- <defs>
3
- <linearGradient id="xls-a" x1="50%" x2="50%" y1="0%" y2="100%">
4
- <stop offset="0%" stop-color="#3BA065"/>
5
- <stop offset="100%" stop-color="#5AC486"/>
6
- </linearGradient>
7
- </defs>
8
- <g fill="none" fill-rule="evenodd">
9
- <path fill="url(#xls-a)"
10
- d="M6,0 L62.3333333,0 L62.3333333,0 L85,22.8571429 L85,94 C85,97.3137085 82.3137085,100 79,100 L6,100 C2.6862915,100 4.05812251e-16,97.3137085 0,94 L0,6 C-4.05812251e-16,2.6862915 2.6862915,6.08718376e-16 6,0 Z"/>
11
- <rect width="22.667" height="2.817" x="51" y="33.803" fill="#FFF" opacity=".5"/>
12
- <rect width="22.667" height="2.817" x="51" y="45.07" fill="#FFF" opacity=".5"/>
13
- <rect width="22.667" height="2.817" x="51" y="56.338" fill="#FFF" opacity=".5"/>
14
- <rect width="22.667" height="2.817" x="51" y="67.606" fill="#FFF" opacity=".5"/>
15
- <path fill="#FFF"
16
- d="M62.3333333,0 L85,22.5352113 L68.3333333,22.5352113 C65.0196248,22.5352113 62.3333333,19.8489198 62.3333333,16.5352113 L62.3333333,0 L62.3333333,0 Z"
17
- opacity=".5"/>
18
- <rect width="42.5" height="42.254" y="30.986" fill="#30955A" rx="2"/>
19
- <path fill="#FFF" fill-rule="nonzero"
20
- d="M27.3550388,39.0383716 L10.3550388,61.5735828 C9.35722656,62.8962834 9.62060058,64.7774307 10.9433011,65.7752429 C12.2660017,66.7730551 14.147149,66.5096811 15.1449612,65.1869806 L32.1449612,42.6517693 C33.1427734,41.3290687 32.8793994,39.4479214 31.5566989,38.4501092 C30.2339983,37.452297 28.352851,37.715671 27.3550388,39.0383716 Z"/>
21
- <path fill="#FFF" fill-rule="nonzero"
22
- d="M27.3550388,39.0383716 L10.3550388,61.5735828 C9.35722656,62.8962834 9.62060058,64.7774307 10.9433011,65.7752429 C12.2660017,66.7730551 14.147149,66.5096811 15.1449612,65.1869806 L32.1449612,42.6517693 C33.1427734,41.3290687 32.8793994,39.4479214 31.5566989,38.4501092 C30.2339983,37.452297 28.352851,37.715671 27.3550388,39.0383716 Z"
23
- transform="matrix(-1 0 0 1 42.5 0)"/>
24
- </g>
25
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="85" height="100" viewBox="0 0 85 100">
2
+ <defs>
3
+ <linearGradient id="xls-a" x1="50%" x2="50%" y1="0%" y2="100%">
4
+ <stop offset="0%" stop-color="#3BA065"/>
5
+ <stop offset="100%" stop-color="#5AC486"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <g fill="none" fill-rule="evenodd">
9
+ <path fill="url(#xls-a)"
10
+ d="M6,0 L62.3333333,0 L62.3333333,0 L85,22.8571429 L85,94 C85,97.3137085 82.3137085,100 79,100 L6,100 C2.6862915,100 4.05812251e-16,97.3137085 0,94 L0,6 C-4.05812251e-16,2.6862915 2.6862915,6.08718376e-16 6,0 Z"/>
11
+ <rect width="22.667" height="2.817" x="51" y="33.803" fill="#FFF" opacity=".5"/>
12
+ <rect width="22.667" height="2.817" x="51" y="45.07" fill="#FFF" opacity=".5"/>
13
+ <rect width="22.667" height="2.817" x="51" y="56.338" fill="#FFF" opacity=".5"/>
14
+ <rect width="22.667" height="2.817" x="51" y="67.606" fill="#FFF" opacity=".5"/>
15
+ <path fill="#FFF"
16
+ d="M62.3333333,0 L85,22.5352113 L68.3333333,22.5352113 C65.0196248,22.5352113 62.3333333,19.8489198 62.3333333,16.5352113 L62.3333333,0 L62.3333333,0 Z"
17
+ opacity=".5"/>
18
+ <rect width="42.5" height="42.254" y="30.986" fill="#30955A" rx="2"/>
19
+ <path fill="#FFF" fill-rule="nonzero"
20
+ d="M27.3550388,39.0383716 L10.3550388,61.5735828 C9.35722656,62.8962834 9.62060058,64.7774307 10.9433011,65.7752429 C12.2660017,66.7730551 14.147149,66.5096811 15.1449612,65.1869806 L32.1449612,42.6517693 C33.1427734,41.3290687 32.8793994,39.4479214 31.5566989,38.4501092 C30.2339983,37.452297 28.352851,37.715671 27.3550388,39.0383716 Z"/>
21
+ <path fill="#FFF" fill-rule="nonzero"
22
+ d="M27.3550388,39.0383716 L10.3550388,61.5735828 C9.35722656,62.8962834 9.62060058,64.7774307 10.9433011,65.7752429 C12.2660017,66.7730551 14.147149,66.5096811 15.1449612,65.1869806 L32.1449612,42.6517693 C33.1427734,41.3290687 32.8793994,39.4479214 31.5566989,38.4501092 C30.2339983,37.452297 28.352851,37.715671 27.3550388,39.0383716 Z"
23
+ transform="matrix(-1 0 0 1 42.5 0)"/>
24
+ </g>
25
+ </svg>
@@ -1,25 +1,25 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="85" height="100" viewBox="0 0 85 100">
2
- <defs>
3
- <linearGradient id="xls-a" x1="50%" x2="50%" y1="0%" y2="100%">
4
- <stop offset="0%" stop-color="#3BA065"/>
5
- <stop offset="100%" stop-color="#5AC486"/>
6
- </linearGradient>
7
- </defs>
8
- <g fill="none" fill-rule="evenodd">
9
- <path fill="url(#xls-a)"
10
- d="M6,0 L62.3333333,0 L62.3333333,0 L85,22.8571429 L85,94 C85,97.3137085 82.3137085,100 79,100 L6,100 C2.6862915,100 4.05812251e-16,97.3137085 0,94 L0,6 C-4.05812251e-16,2.6862915 2.6862915,6.08718376e-16 6,0 Z"/>
11
- <rect width="22.667" height="2.817" x="51" y="33.803" fill="#FFF" opacity=".5"/>
12
- <rect width="22.667" height="2.817" x="51" y="45.07" fill="#FFF" opacity=".5"/>
13
- <rect width="22.667" height="2.817" x="51" y="56.338" fill="#FFF" opacity=".5"/>
14
- <rect width="22.667" height="2.817" x="51" y="67.606" fill="#FFF" opacity=".5"/>
15
- <path fill="#FFF"
16
- d="M62.3333333,0 L85,22.5352113 L68.3333333,22.5352113 C65.0196248,22.5352113 62.3333333,19.8489198 62.3333333,16.5352113 L62.3333333,0 L62.3333333,0 Z"
17
- opacity=".5"/>
18
- <rect width="42.5" height="42.254" y="30.986" fill="#30955A" rx="2"/>
19
- <path fill="#FFF" fill-rule="nonzero"
20
- d="M27.3550388,39.0383716 L10.3550388,61.5735828 C9.35722656,62.8962834 9.62060058,64.7774307 10.9433011,65.7752429 C12.2660017,66.7730551 14.147149,66.5096811 15.1449612,65.1869806 L32.1449612,42.6517693 C33.1427734,41.3290687 32.8793994,39.4479214 31.5566989,38.4501092 C30.2339983,37.452297 28.352851,37.715671 27.3550388,39.0383716 Z"/>
21
- <path fill="#FFF" fill-rule="nonzero"
22
- d="M27.3550388,39.0383716 L10.3550388,61.5735828 C9.35722656,62.8962834 9.62060058,64.7774307 10.9433011,65.7752429 C12.2660017,66.7730551 14.147149,66.5096811 15.1449612,65.1869806 L32.1449612,42.6517693 C33.1427734,41.3290687 32.8793994,39.4479214 31.5566989,38.4501092 C30.2339983,37.452297 28.352851,37.715671 27.3550388,39.0383716 Z"
23
- transform="matrix(-1 0 0 1 42.5 0)"/>
24
- </g>
25
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="85" height="100" viewBox="0 0 85 100">
2
+ <defs>
3
+ <linearGradient id="xls-a" x1="50%" x2="50%" y1="0%" y2="100%">
4
+ <stop offset="0%" stop-color="#3BA065"/>
5
+ <stop offset="100%" stop-color="#5AC486"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <g fill="none" fill-rule="evenodd">
9
+ <path fill="url(#xls-a)"
10
+ d="M6,0 L62.3333333,0 L62.3333333,0 L85,22.8571429 L85,94 C85,97.3137085 82.3137085,100 79,100 L6,100 C2.6862915,100 4.05812251e-16,97.3137085 0,94 L0,6 C-4.05812251e-16,2.6862915 2.6862915,6.08718376e-16 6,0 Z"/>
11
+ <rect width="22.667" height="2.817" x="51" y="33.803" fill="#FFF" opacity=".5"/>
12
+ <rect width="22.667" height="2.817" x="51" y="45.07" fill="#FFF" opacity=".5"/>
13
+ <rect width="22.667" height="2.817" x="51" y="56.338" fill="#FFF" opacity=".5"/>
14
+ <rect width="22.667" height="2.817" x="51" y="67.606" fill="#FFF" opacity=".5"/>
15
+ <path fill="#FFF"
16
+ d="M62.3333333,0 L85,22.5352113 L68.3333333,22.5352113 C65.0196248,22.5352113 62.3333333,19.8489198 62.3333333,16.5352113 L62.3333333,0 L62.3333333,0 Z"
17
+ opacity=".5"/>
18
+ <rect width="42.5" height="42.254" y="30.986" fill="#30955A" rx="2"/>
19
+ <path fill="#FFF" fill-rule="nonzero"
20
+ d="M27.3550388,39.0383716 L10.3550388,61.5735828 C9.35722656,62.8962834 9.62060058,64.7774307 10.9433011,65.7752429 C12.2660017,66.7730551 14.147149,66.5096811 15.1449612,65.1869806 L32.1449612,42.6517693 C33.1427734,41.3290687 32.8793994,39.4479214 31.5566989,38.4501092 C30.2339983,37.452297 28.352851,37.715671 27.3550388,39.0383716 Z"/>
21
+ <path fill="#FFF" fill-rule="nonzero"
22
+ d="M27.3550388,39.0383716 L10.3550388,61.5735828 C9.35722656,62.8962834 9.62060058,64.7774307 10.9433011,65.7752429 C12.2660017,66.7730551 14.147149,66.5096811 15.1449612,65.1869806 L32.1449612,42.6517693 C33.1427734,41.3290687 32.8793994,39.4479214 31.5566989,38.4501092 C30.2339983,37.452297 28.352851,37.715671 27.3550388,39.0383716 Z"
23
+ transform="matrix(-1 0 0 1 42.5 0)"/>
24
+ </g>
25
+ </svg>
@@ -1,12 +1,12 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="99" height="100" viewBox="0 0 99 100">
2
- <g fill="none" fill-rule="evenodd">
3
- <path fill="#43BA73"
4
- d="M4,69.0140845 L95,69.0140845 C97.209139,69.0140845 99,70.8049455 99,73.0140845 L99,88 C99,94.627417 93.627417,100 87,100 L12,100 C5.372583,100 8.11624501e-16,94.627417 0,88 L0,73.0140845 C-2.705415e-16,70.8049455 1.790861,69.0140845 4,69.0140845 Z"/>
5
- <path fill="#4AB0F7"
6
- d="M12,0 L87,0 C93.627417,-5.32740867e-15 99,5.372583 99,12 L99,26.9859155 C99,29.1950545 97.209139,30.9859155 95,30.9859155 L4,30.9859155 C1.790861,30.9859155 2.705415e-16,29.1950545 0,26.9859155 L0,12 C9.64732338e-16,5.372583 5.372583,2.99379359e-15 12,0 Z"/>
7
- <rect width="99" height="30.986" y="35.211" fill="#F5582E" rx="4"/>
8
- <rect width="22.629" height="100" x="38.186" fill="#F9C93A"/>
9
- <path fill="#FFF" fill-rule="nonzero"
10
- d="M33.7,34.5070423 L65.3,34.5070423 C67.509139,34.5070423 69.3,36.2979033 69.3,38.5070423 L69.3,61.4929577 C69.3,63.7020967 67.509139,65.4929577 65.3,65.4929577 L33.7,65.4929577 C31.490861,65.4929577 29.7,63.7020967 29.7,61.4929577 L29.7,38.5070423 C29.7,36.2979033 31.490861,34.5070423 33.7,34.5070423 Z M41.7,53.4929577 L57.3,53.4929577 L57.3,46.5070423 L41.7,46.5070423 L41.7,53.4929577 Z"/>
11
- </g>
12
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="99" height="100" viewBox="0 0 99 100">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <path fill="#43BA73"
4
+ d="M4,69.0140845 L95,69.0140845 C97.209139,69.0140845 99,70.8049455 99,73.0140845 L99,88 C99,94.627417 93.627417,100 87,100 L12,100 C5.372583,100 8.11624501e-16,94.627417 0,88 L0,73.0140845 C-2.705415e-16,70.8049455 1.790861,69.0140845 4,69.0140845 Z"/>
5
+ <path fill="#4AB0F7"
6
+ d="M12,0 L87,0 C93.627417,-5.32740867e-15 99,5.372583 99,12 L99,26.9859155 C99,29.1950545 97.209139,30.9859155 95,30.9859155 L4,30.9859155 C1.790861,30.9859155 2.705415e-16,29.1950545 0,26.9859155 L0,12 C9.64732338e-16,5.372583 5.372583,2.99379359e-15 12,0 Z"/>
7
+ <rect width="99" height="30.986" y="35.211" fill="#F5582E" rx="4"/>
8
+ <rect width="22.629" height="100" x="38.186" fill="#F9C93A"/>
9
+ <path fill="#FFF" fill-rule="nonzero"
10
+ d="M33.7,34.5070423 L65.3,34.5070423 C67.509139,34.5070423 69.3,36.2979033 69.3,38.5070423 L69.3,61.4929577 C69.3,63.7020967 67.509139,65.4929577 65.3,65.4929577 L33.7,65.4929577 C31.490861,65.4929577 29.7,63.7020967 29.7,61.4929577 L29.7,38.5070423 C29.7,36.2979033 31.490861,34.5070423 33.7,34.5070423 Z M41.7,53.4929577 L57.3,53.4929577 L57.3,46.5070423 L41.7,46.5070423 L41.7,53.4929577 Z"/>
11
+ </g>
12
+ </svg>
@@ -1,63 +1,63 @@
1
- body {
2
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
3
- font-size: 14px;
4
- -webkit-box-sizing: border-box;
5
- -moz-box-sizing: border-box;
6
- box-sizing: border-box;
7
- }
8
-
9
- a {
10
- color: #09f;
11
- text-decoration: none;
12
- }
13
-
14
- a:hover,
15
- a:focus {
16
- color: #09f;
17
- text-decoration: none;
18
- }
19
-
20
- blockquote {
21
- padding: 0 0 0 15px;
22
- margin: 0 0 18px;
23
- border-left: 5px solid #EEE;
24
- }
25
-
26
- img + br {
27
- display: block;
28
- padding: 4px 0;
29
- content: ' ';
30
- }
31
-
32
- body p {
33
- margin-bottom: 1em;
34
- }
35
-
36
- iframe {
37
- border: none;
38
- }
39
-
40
- img {
41
- max-width: 100%;
42
- }
43
-
44
- img[data-word-image] {
45
- cursor: pointer;
46
- }
47
-
48
- pre {
49
- margin: .5em 0;
50
- padding: .4em .6em;
51
- border-radius: 8px;
52
- background: #f8f8f8;
53
- line-height: 1.5;
54
- }
55
-
56
- /*交互操作*/
57
- img {
58
- cursor: pointer;
59
- }
60
-
61
- .edui-quick-operate-active {
62
- background: #E6ECFF;
63
- }
1
+ body {
2
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
3
+ font-size: 14px;
4
+ -webkit-box-sizing: border-box;
5
+ -moz-box-sizing: border-box;
6
+ box-sizing: border-box;
7
+ }
8
+
9
+ a {
10
+ color: #09f;
11
+ text-decoration: none;
12
+ }
13
+
14
+ a:hover,
15
+ a:focus {
16
+ color: #09f;
17
+ text-decoration: none;
18
+ }
19
+
20
+ blockquote {
21
+ padding: 0 0 0 15px;
22
+ margin: 0 0 18px;
23
+ border-left: 5px solid #EEE;
24
+ }
25
+
26
+ img + br {
27
+ display: block;
28
+ padding: 4px 0;
29
+ content: ' ';
30
+ }
31
+
32
+ body p {
33
+ margin-bottom: 1em;
34
+ }
35
+
36
+ iframe {
37
+ border: none;
38
+ }
39
+
40
+ img {
41
+ max-width: 100%;
42
+ }
43
+
44
+ img[data-word-image] {
45
+ cursor: pointer;
46
+ }
47
+
48
+ pre {
49
+ margin: .5em 0;
50
+ padding: .4em .6em;
51
+ border-radius: 8px;
52
+ background: #f8f8f8;
53
+ line-height: 1.5;
54
+ }
55
+
56
+ /*交互操作*/
57
+ img {
58
+ cursor: pointer;
59
+ }
60
+
61
+ .edui-quick-operate-active {
62
+ background: #E6ECFF;
63
+ }