mce 0.15.15 → 0.15.17
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/index.css +13 -0
- package/dist/index.js +838 -61
- package/dist/locale/en.d.ts +2 -0
- package/dist/locale/zh-Hans.d.ts +2 -0
- package/dist/web-components/TextEditor.d.ts +81 -0
- package/dist/web-components/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -41,6 +41,9 @@
|
|
|
41
41
|
.mce-frame--outline {
|
|
42
42
|
outline: 1px solid rgba(0, 0, 0, 0.168627451);
|
|
43
43
|
}
|
|
44
|
+
.mce-frame--lock {
|
|
45
|
+
pointer-events: none;
|
|
46
|
+
}
|
|
44
47
|
.mce-frame--hover .mce-frame__name > div, .mce-frame--selected .mce-frame__name > div {
|
|
45
48
|
opacity: 1;
|
|
46
49
|
}
|
|
@@ -900,6 +903,16 @@
|
|
|
900
903
|
white-space: nowrap;
|
|
901
904
|
overflow: hidden;
|
|
902
905
|
text-overflow: ellipsis;
|
|
906
|
+
}
|
|
907
|
+
.mce-segment__block {
|
|
908
|
+
position: absolute;
|
|
909
|
+
left: 0;
|
|
910
|
+
top: 0;
|
|
911
|
+
font-size: 12px;
|
|
912
|
+
padding: 0 8px;
|
|
913
|
+
text-wrap: nowrap;
|
|
914
|
+
overflow: visible;
|
|
915
|
+
border-bottom: 1px solid rgb(var(--mce-theme-surface));
|
|
903
916
|
}.mce-track {
|
|
904
917
|
position: relative;
|
|
905
918
|
display: flex;
|