chore: release 0.0.1

This commit is contained in:
liaibo
2025-11-29 05:16:23 +08:00
parent 5d0e4c4cb6
commit d350b02fba
92 changed files with 78929 additions and 39164 deletions
+106
View File
@@ -407,4 +407,110 @@
.wolai-media__resize-handle.is-dragging {
background: rgba(37, 99, 235, 0.85);
}
.online-table-block {
position: relative;
}
.online-table-block:hover .wolai-table-resize-handle,
.online-table-block:focus-within .wolai-table-resize-handle {
opacity: 1;
}
.wolai-table-resize-handle {
position: absolute;
background: rgba(15, 23, 42, 0.45);
border-radius: 999px;
transition: opacity 0.15s ease, background 0.2s ease;
opacity: 0;
z-index: 40;
}
.wolai-table-resize-handle.is-dragging {
background: rgba(37, 99, 235, 0.9);
}
.wolai-table-resize-handle--left,
.wolai-table-resize-handle--right {
top: 50%;
width: 12px;
height: 48px;
transform: translateY(-50%);
cursor: ew-resize;
}
.wolai-table-resize-handle--left {
left: -6px;
}
.wolai-table-resize-handle--right {
right: -6px;
}
.wolai-table-resize-handle--top,
.wolai-table-resize-handle--bottom {
left: 50%;
width: 48px;
height: 12px;
transform: translateX(-50%);
cursor: ns-resize;
}
.wolai-table-resize-handle--top {
top: -6px;
}
.wolai-table-resize-handle--bottom {
bottom: -6px;
}
.wolai-table-resize-handle--top-left,
.wolai-table-resize-handle--top-right,
.wolai-table-resize-handle--bottom-left,
.wolai-table-resize-handle--bottom-right {
width: 16px;
height: 16px;
border-radius: 4px;
}
.wolai-table-resize-handle--top-left {
top: -8px;
left: -8px;
cursor: nwse-resize;
}
.wolai-table-resize-handle--bottom-right {
bottom: -8px;
right: -8px;
cursor: nwse-resize;
}
.wolai-table-resize-handle--top-right {
top: -8px;
right: -8px;
cursor: nesw-resize;
}
.wolai-table-resize-handle--bottom-left {
bottom: -8px;
left: -8px;
cursor: nesw-resize;
}
.luckysheet-input-box {
opacity: 1 !important;
pointer-events: auto !important;
}
#luckysheet-rich-text-editor {
min-height: 24px;
font-size: 16px;
caret-color: #2563eb;
color: #111827;
}
#luckysheet-rich-text-editor:focus {
outline: 2px solid rgba(37, 99, 235, 0.2);
outline-offset: 2px;
}
}