Initial TrueGrowth source import

This commit is contained in:
2026-07-07 09:36:36 +08:00
commit 3b6781d695
2283 changed files with 691996 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
.plait-board-container {
.text {
foreignObject {
overflow: hidden;
&::-webkit-scrollbar {
display: none;
}
scrollbar-width: none;
}
}
}
.plait-text-container {
font-size: 14px;
line-height: 1.4;
display: inline-block;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Noto Sans', 'Noto Sans CJK SC', 'Microsoft Yahei', 'Hiragino Sans GB', Arial, sans-serif;
width: 100%;
max-width: 100%;
height: 100%;
overflow: hidden;
white-space: pre-wrap;
word-wrap: break-word;
overflow-wrap: break-word;
}
.slate-editable-container {
outline: none;
padding: 0;
cursor: default;
& [data-slate-node='element'] {
user-select: none;
}
&[contenteditable="true"] {
cursor: text;
& [data-slate-node='element'] {
user-select: text;
}
}
}