@leankylin-sheet/react 3.1.44 → 3.1.45
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/components/SheetOverlay/FormulaSearch/utils.d.ts +3 -0
- package/dist/index.css +3 -1
- package/dist/index.esm.css +3 -1
- package/dist/index.esm.js +313 -20
- package/dist/index.js +313 -20
- package/dist/index.umd.css +3 -1
- package/dist/index.umd.js +313 -20
- package/dist/index.umd.min.css +1 -1
- package/dist/index.umd.min.js +1 -1
- package/package.json +3 -3
package/dist/index.umd.js
CHANGED
|
@@ -163,6 +163,57 @@
|
|
|
163
163
|
function _nonIterableRest() {
|
|
164
164
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
165
165
|
}
|
|
166
|
+
function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
167
|
+
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
168
|
+
if (!it) {
|
|
169
|
+
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
|
|
170
|
+
if (it) o = it;
|
|
171
|
+
var i = 0;
|
|
172
|
+
var F = function () {};
|
|
173
|
+
return {
|
|
174
|
+
s: F,
|
|
175
|
+
n: function () {
|
|
176
|
+
if (i >= o.length) return {
|
|
177
|
+
done: true
|
|
178
|
+
};
|
|
179
|
+
return {
|
|
180
|
+
done: false,
|
|
181
|
+
value: o[i++]
|
|
182
|
+
};
|
|
183
|
+
},
|
|
184
|
+
e: function (e) {
|
|
185
|
+
throw e;
|
|
186
|
+
},
|
|
187
|
+
f: F
|
|
188
|
+
};
|
|
189
|
+
}
|
|
190
|
+
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
191
|
+
}
|
|
192
|
+
var normalCompletion = true,
|
|
193
|
+
didErr = false,
|
|
194
|
+
err;
|
|
195
|
+
return {
|
|
196
|
+
s: function () {
|
|
197
|
+
it = it.call(o);
|
|
198
|
+
},
|
|
199
|
+
n: function () {
|
|
200
|
+
var step = it.next();
|
|
201
|
+
normalCompletion = step.done;
|
|
202
|
+
return step;
|
|
203
|
+
},
|
|
204
|
+
e: function (e) {
|
|
205
|
+
didErr = true;
|
|
206
|
+
err = e;
|
|
207
|
+
},
|
|
208
|
+
f: function () {
|
|
209
|
+
try {
|
|
210
|
+
if (!normalCompletion && it.return != null) it.return();
|
|
211
|
+
} finally {
|
|
212
|
+
if (didErr) throw err;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
};
|
|
216
|
+
}
|
|
166
217
|
|
|
167
218
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
168
219
|
|
|
@@ -94010,39 +94061,277 @@
|
|
|
94010
94061
|
}));
|
|
94011
94062
|
};
|
|
94012
94063
|
|
|
94064
|
+
function getLastTextNode(element) {
|
|
94065
|
+
var lastText = null;
|
|
94066
|
+
function traverse(node) {
|
|
94067
|
+
if (node.nodeType === Node.TEXT_NODE) {
|
|
94068
|
+
lastText = node;
|
|
94069
|
+
} else if (node.nodeType === Node.ELEMENT_NODE) {
|
|
94070
|
+
for (var i = node.childNodes.length - 1; i >= 0; i -= 1) {
|
|
94071
|
+
traverse(node.childNodes[i]);
|
|
94072
|
+
if (lastText) break;
|
|
94073
|
+
}
|
|
94074
|
+
}
|
|
94075
|
+
}
|
|
94076
|
+
traverse(element);
|
|
94077
|
+
return lastText;
|
|
94078
|
+
}
|
|
94079
|
+
function getPlainTextCursorOffset(editableDiv) {
|
|
94080
|
+
var selection = window.getSelection();
|
|
94081
|
+
if (!selection || selection.rangeCount === 0) return -1;
|
|
94082
|
+
var range = selection.getRangeAt(0);
|
|
94083
|
+
if (!editableDiv.contains(range.commonAncestorContainer)) {
|
|
94084
|
+
return -1;
|
|
94085
|
+
}
|
|
94086
|
+
var textNodes = [];
|
|
94087
|
+
function collectTextNodes(node) {
|
|
94088
|
+
if (node.nodeType === Node.TEXT_NODE) {
|
|
94089
|
+
textNodes.push(node);
|
|
94090
|
+
} else if (node.nodeType === Node.ELEMENT_NODE) {
|
|
94091
|
+
for (var i = 0; i < node.childNodes.length; i += 1) {
|
|
94092
|
+
collectTextNodes(node.childNodes[i]);
|
|
94093
|
+
}
|
|
94094
|
+
}
|
|
94095
|
+
}
|
|
94096
|
+
collectTextNodes(editableDiv);
|
|
94097
|
+
var cursorTextNode = null;
|
|
94098
|
+
var offsetInNode = 0;
|
|
94099
|
+
var startContainer = range.startContainer;
|
|
94100
|
+
var startOffset = range.startOffset;
|
|
94101
|
+
if (startContainer.nodeType === Node.TEXT_NODE) {
|
|
94102
|
+
cursorTextNode = startContainer;
|
|
94103
|
+
offsetInNode = startOffset;
|
|
94104
|
+
} else if (startContainer.nodeType === Node.ELEMENT_NODE) {
|
|
94105
|
+
var childNodes = startContainer.childNodes;
|
|
94106
|
+
var prevTextNode = null;
|
|
94107
|
+
for (var i = 0; i < startOffset; i += 1) {
|
|
94108
|
+
var child = childNodes[i];
|
|
94109
|
+
if (child.nodeType === Node.TEXT_NODE) {
|
|
94110
|
+
prevTextNode = child;
|
|
94111
|
+
} else if (child.nodeType === Node.ELEMENT_NODE) {
|
|
94112
|
+
var lastText = getLastTextNode(child);
|
|
94113
|
+
if (lastText) prevTextNode = lastText;
|
|
94114
|
+
}
|
|
94115
|
+
}
|
|
94116
|
+
if (prevTextNode) {
|
|
94117
|
+
var _prevTextNode$textCon;
|
|
94118
|
+
cursorTextNode = prevTextNode;
|
|
94119
|
+
offsetInNode = ((_prevTextNode$textCon = prevTextNode.textContent) === null || _prevTextNode$textCon === void 0 ? void 0 : _prevTextNode$textCon.length) || 0;
|
|
94120
|
+
} else {
|
|
94121
|
+
return 0;
|
|
94122
|
+
}
|
|
94123
|
+
}
|
|
94124
|
+
var totalOffset = 0;
|
|
94125
|
+
for (var _i = 0, _textNodes = textNodes; _i < _textNodes.length; _i++) {
|
|
94126
|
+
var node = _textNodes[_i];
|
|
94127
|
+
if (node === cursorTextNode) {
|
|
94128
|
+
totalOffset += offsetInNode;
|
|
94129
|
+
break;
|
|
94130
|
+
} else {
|
|
94131
|
+
var _node$textContent;
|
|
94132
|
+
totalOffset += ((_node$textContent = node.textContent) === null || _node$textContent === void 0 ? void 0 : _node$textContent.length) || 0;
|
|
94133
|
+
}
|
|
94134
|
+
}
|
|
94135
|
+
return totalOffset;
|
|
94136
|
+
}
|
|
94137
|
+
function getrangeseleciton$1() {
|
|
94138
|
+
var _anchorNode$parentNod, _anchorNode$parentNod2, _anchorNode$parentEle, _anchorNode$parentEle2;
|
|
94139
|
+
var currSelection = window.getSelection();
|
|
94140
|
+
if (!currSelection) return null;
|
|
94141
|
+
var anchorNode = currSelection.anchorNode,
|
|
94142
|
+
anchorOffset = currSelection.anchorOffset;
|
|
94143
|
+
if (!anchorNode) return null;
|
|
94144
|
+
if (((_anchorNode$parentNod = anchorNode.parentNode) === null || _anchorNode$parentNod === void 0 ? void 0 : (_anchorNode$parentNod2 = _anchorNode$parentNod.nodeName) === null || _anchorNode$parentNod2 === void 0 ? void 0 : _anchorNode$parentNod2.toLowerCase()) === "span" && anchorOffset !== 0) {
|
|
94145
|
+
var txt = lodash.trim(anchorNode.textContent || "");
|
|
94146
|
+
if (txt.length === 0 && anchorNode.parentNode.previousSibling) {
|
|
94147
|
+
var ahr = anchorNode.parentNode.previousSibling;
|
|
94148
|
+
txt = lodash.trim(ahr.textContent || "");
|
|
94149
|
+
return ahr;
|
|
94150
|
+
}
|
|
94151
|
+
return anchorNode.parentNode;
|
|
94152
|
+
}
|
|
94153
|
+
var anchorElement = anchorNode;
|
|
94154
|
+
if (anchorElement.id === "luckysheet-rich-text-editor" || anchorElement.id === "luckysheet-functionbox-cell") {
|
|
94155
|
+
var _$last;
|
|
94156
|
+
var _txt = lodash.trim((_$last = lodash.last(anchorElement.querySelectorAll("span"))) === null || _$last === void 0 ? void 0 : _$last.innerText);
|
|
94157
|
+
if (_txt.length === 0 && anchorElement.querySelectorAll("span").length > 1) {
|
|
94158
|
+
var _ahr = anchorElement.querySelectorAll("span");
|
|
94159
|
+
_txt = lodash.trim(_ahr[_ahr.length - 2].innerText);
|
|
94160
|
+
return _ahr === null || _ahr === void 0 ? void 0 : _ahr[0];
|
|
94161
|
+
}
|
|
94162
|
+
return lodash.last(anchorElement.querySelectorAll("span"));
|
|
94163
|
+
}
|
|
94164
|
+
if ((anchorNode === null || anchorNode === void 0 ? void 0 : (_anchorNode$parentEle = anchorNode.parentElement) === null || _anchorNode$parentEle === void 0 ? void 0 : _anchorNode$parentEle.id) === "luckysheet-rich-text-editor" || (anchorNode === null || anchorNode === void 0 ? void 0 : (_anchorNode$parentEle2 = anchorNode.parentElement) === null || _anchorNode$parentEle2 === void 0 ? void 0 : _anchorNode$parentEle2.id) === "luckysheet-functionbox-cell" || anchorOffset === 0) {
|
|
94165
|
+
var newAnchorNode = anchorOffset === 0 ? anchorNode === null || anchorNode === void 0 ? void 0 : anchorNode.parentNode : anchorNode;
|
|
94166
|
+
if (newAnchorNode === null || newAnchorNode === void 0 ? void 0 : newAnchorNode.previousSibling) {
|
|
94167
|
+
return newAnchorNode === null || newAnchorNode === void 0 ? void 0 : newAnchorNode.previousSibling;
|
|
94168
|
+
}
|
|
94169
|
+
}
|
|
94170
|
+
return null;
|
|
94171
|
+
}
|
|
94172
|
+
function moveCursorToPosition(editableDiv, targetPosition) {
|
|
94173
|
+
if (!editableDiv || editableDiv.contentEditable !== "true") {
|
|
94174
|
+
console.warn('目标元素必须是可编辑的div(contenteditable="true")');
|
|
94175
|
+
return;
|
|
94176
|
+
}
|
|
94177
|
+
if (targetPosition < 0) {
|
|
94178
|
+
targetPosition = 0;
|
|
94179
|
+
}
|
|
94180
|
+
var textNodesInfo = [];
|
|
94181
|
+
var totalLength = 0;
|
|
94182
|
+
function traverseNodes(node) {
|
|
94183
|
+
if (!node) return;
|
|
94184
|
+
if (node.nodeType === Node.TEXT_NODE) {
|
|
94185
|
+
var textLength = node.textContent.length;
|
|
94186
|
+
totalLength += textLength;
|
|
94187
|
+
textNodesInfo.push({
|
|
94188
|
+
node: node,
|
|
94189
|
+
cumulativeLength: totalLength
|
|
94190
|
+
});
|
|
94191
|
+
} else if (node.nodeType === Node.ELEMENT_NODE) {
|
|
94192
|
+
Array.from(node.childNodes).forEach(function (child) {
|
|
94193
|
+
return traverseNodes(child);
|
|
94194
|
+
});
|
|
94195
|
+
}
|
|
94196
|
+
}
|
|
94197
|
+
traverseNodes(editableDiv);
|
|
94198
|
+
var targetNode = null;
|
|
94199
|
+
var offsetInNode = 0;
|
|
94200
|
+
if (totalLength <= targetPosition) {
|
|
94201
|
+
if (textNodesInfo.length > 0) {
|
|
94202
|
+
var lastNodeInfo = textNodesInfo[textNodesInfo.length - 1];
|
|
94203
|
+
targetNode = lastNodeInfo.node;
|
|
94204
|
+
offsetInNode = lastNodeInfo.node.textContent.length;
|
|
94205
|
+
}
|
|
94206
|
+
} else {
|
|
94207
|
+
var prevCumulativeLength = 0;
|
|
94208
|
+
var _iterator = _createForOfIteratorHelper(textNodesInfo),
|
|
94209
|
+
_step;
|
|
94210
|
+
try {
|
|
94211
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
94212
|
+
var info = _step.value;
|
|
94213
|
+
if (info.cumulativeLength > targetPosition) {
|
|
94214
|
+
targetNode = info.node;
|
|
94215
|
+
offsetInNode = targetPosition - prevCumulativeLength;
|
|
94216
|
+
break;
|
|
94217
|
+
}
|
|
94218
|
+
prevCumulativeLength = info.cumulativeLength;
|
|
94219
|
+
}
|
|
94220
|
+
} catch (err) {
|
|
94221
|
+
_iterator.e(err);
|
|
94222
|
+
} finally {
|
|
94223
|
+
_iterator.f();
|
|
94224
|
+
}
|
|
94225
|
+
}
|
|
94226
|
+
if (targetNode) {
|
|
94227
|
+
var selection = window.getSelection();
|
|
94228
|
+
selection.removeAllRanges();
|
|
94229
|
+
var range = document.createRange();
|
|
94230
|
+
range.setStart(targetNode, offsetInNode);
|
|
94231
|
+
range.setEnd(targetNode, offsetInNode);
|
|
94232
|
+
selection.addRange(range);
|
|
94233
|
+
}
|
|
94234
|
+
}
|
|
94235
|
+
|
|
94013
94236
|
var FormulaSearch = function FormulaSearch(props) {
|
|
94014
94237
|
var _useContext = React.useContext(WorkbookContext),
|
|
94015
94238
|
context = _useContext.context,
|
|
94016
94239
|
refs = _useContext.refs,
|
|
94017
94240
|
settings = _useContext.settings;
|
|
94241
|
+
var _useState = React.useState(""),
|
|
94242
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
94243
|
+
n = _useState2[0],
|
|
94244
|
+
setN = _useState2[1];
|
|
94245
|
+
var nRef = React.useRef(n);
|
|
94246
|
+
nRef.current = n;
|
|
94247
|
+
React.useEffect(function () {
|
|
94248
|
+
if (context.functionCandidates.length) {
|
|
94249
|
+
setN(context.functionCandidates[0].n);
|
|
94250
|
+
}
|
|
94251
|
+
}, [context.functionCandidates]);
|
|
94252
|
+
var fListRef = React.useRef([]);
|
|
94253
|
+
fListRef.current = context.functionCandidates;
|
|
94254
|
+
var inputN = function inputN(fnName) {
|
|
94255
|
+
var _refs$cellInput$curre, _editor$textContent;
|
|
94256
|
+
var offsetIndex = getPlainTextCursorOffset(refs.cellInput.current);
|
|
94257
|
+
var text = ((_refs$cellInput$curre = refs.cellInput.current) === null || _refs$cellInput$curre === void 0 ? void 0 : _refs$cellInput$curre.innerText) || "";
|
|
94258
|
+
var editor = getrangeseleciton$1();
|
|
94259
|
+
var replaceText = (_editor$textContent = editor.textContent) === null || _editor$textContent === void 0 ? void 0 : _editor$textContent.trim();
|
|
94260
|
+
var replaceTextLength = (replaceText === null || replaceText === void 0 ? void 0 : replaceText.length) || 0;
|
|
94261
|
+
var newText = (text === null || text === void 0 ? void 0 : text.slice(0, offsetIndex - replaceTextLength)) + fnName + (text === null || text === void 0 ? void 0 : text.slice(offsetIndex));
|
|
94262
|
+
refs.cellInput.current.innerHTML = functionHTMLGenerate(newText);
|
|
94263
|
+
moveCursorToPosition(refs.cellInput.current, offsetIndex - replaceTextLength + fnName.length);
|
|
94264
|
+
};
|
|
94265
|
+
React.useEffect(function () {
|
|
94266
|
+
var _refs$cellInput$curre2;
|
|
94267
|
+
var onChange = function onChange(e) {
|
|
94268
|
+
var _fListRef$current;
|
|
94269
|
+
if (((_fListRef$current = fListRef.current) === null || _fListRef$current === void 0 ? void 0 : _fListRef$current.length) <= 0) {
|
|
94270
|
+
return;
|
|
94271
|
+
}
|
|
94272
|
+
if (e.key === "ArrowDown") {
|
|
94273
|
+
e.preventDefault();
|
|
94274
|
+
setN(function (_n) {
|
|
94275
|
+
var _fListRef$current2, _fListRef$current3;
|
|
94276
|
+
var currentIndex = Math.max((_fListRef$current2 = fListRef.current) === null || _fListRef$current2 === void 0 ? void 0 : _fListRef$current2.findIndex(function (item) {
|
|
94277
|
+
return item.n === _n;
|
|
94278
|
+
}), 0);
|
|
94279
|
+
return (_fListRef$current3 = fListRef.current[(currentIndex + 1) % fListRef.current.length]) === null || _fListRef$current3 === void 0 ? void 0 : _fListRef$current3.n;
|
|
94280
|
+
});
|
|
94281
|
+
} else if (e.key === "ArrowUp") {
|
|
94282
|
+
e.preventDefault();
|
|
94283
|
+
setN(function (_n) {
|
|
94284
|
+
var _fListRef$current4, _fListRef$current5;
|
|
94285
|
+
var currentIndex = Math.max((_fListRef$current4 = fListRef.current) === null || _fListRef$current4 === void 0 ? void 0 : _fListRef$current4.findIndex(function (item) {
|
|
94286
|
+
return item.n === _n;
|
|
94287
|
+
}), 0);
|
|
94288
|
+
return (_fListRef$current5 = fListRef.current[(currentIndex - 1) % fListRef.current.length]) === null || _fListRef$current5 === void 0 ? void 0 : _fListRef$current5.n;
|
|
94289
|
+
});
|
|
94290
|
+
} else if (e.key === "Enter") {
|
|
94291
|
+
e.preventDefault();
|
|
94292
|
+
e.stopPropagation();
|
|
94293
|
+
if (nRef.current) {
|
|
94294
|
+
inputN("".concat(nRef.current, "("));
|
|
94295
|
+
}
|
|
94296
|
+
}
|
|
94297
|
+
};
|
|
94298
|
+
(_refs$cellInput$curre2 = refs.cellInput.current) === null || _refs$cellInput$curre2 === void 0 ? void 0 : _refs$cellInput$curre2.addEventListener("keydown", onChange);
|
|
94299
|
+
return function () {
|
|
94300
|
+
var _refs$cellInput$curre3;
|
|
94301
|
+
(_refs$cellInput$curre3 = refs.cellInput.current) === null || _refs$cellInput$curre3 === void 0 ? void 0 : _refs$cellInput$curre3.removeEventListener("keydown", onChange);
|
|
94302
|
+
};
|
|
94303
|
+
}, [refs.cellInput.current]);
|
|
94018
94304
|
if (lodash.isEmpty(context.functionCandidates)) return null;
|
|
94019
|
-
function moveCursorToEnd(editor) {
|
|
94020
|
-
var leftParen = editor.querySelector(".luckysheet-formula-text-lpar");
|
|
94021
|
-
var rightParen = editor.querySelector(".luckysheet-formula-text-rpar");
|
|
94022
|
-
var range = document.createRange();
|
|
94023
|
-
var selection = window.getSelection();
|
|
94024
|
-
range.setStartAfter(leftParen);
|
|
94025
|
-
range.setEndBefore(rightParen);
|
|
94026
|
-
selection.removeAllRanges();
|
|
94027
|
-
selection.addRange(range);
|
|
94028
|
-
}
|
|
94029
94305
|
if (settings.renderFormulaSearch) {
|
|
94030
94306
|
return settings.renderFormulaSearch(context.functionCandidates, functionHTMLGenerate, refs.cellInput.current);
|
|
94031
94307
|
}
|
|
94032
94308
|
return /*#__PURE__*/React__default['default'].createElement("div", _objectSpread2(_objectSpread2({}, props), {}, {
|
|
94033
94309
|
id: "luckysheet-formula-search-c",
|
|
94034
|
-
className: "luckysheet-formula-search-c"
|
|
94310
|
+
className: "luckysheet-formula-search-c",
|
|
94311
|
+
onWheel: function onWheel(e) {
|
|
94312
|
+
e.preventDefault();
|
|
94313
|
+
e.stopPropagation();
|
|
94314
|
+
},
|
|
94315
|
+
onWheelCapture: function onWheelCapture(e) {
|
|
94316
|
+
e.preventDefault();
|
|
94317
|
+
e.stopPropagation();
|
|
94318
|
+
}
|
|
94035
94319
|
}), context.functionCandidates.map(function (v) {
|
|
94036
94320
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
94037
|
-
onClick: function onClick() {
|
|
94038
|
-
|
|
94039
|
-
|
|
94040
|
-
(
|
|
94041
|
-
|
|
94321
|
+
onClick: function onClick(e) {
|
|
94322
|
+
e.preventDefault();
|
|
94323
|
+
e.stopPropagation();
|
|
94324
|
+
inputN("".concat(v.n, "("));
|
|
94325
|
+
},
|
|
94326
|
+
onMouseEnter: function onMouseEnter() {
|
|
94327
|
+
setN(v.n);
|
|
94328
|
+
},
|
|
94329
|
+
onMouseDown: function onMouseDown(e) {
|
|
94330
|
+
return e.preventDefault();
|
|
94042
94331
|
},
|
|
94043
94332
|
key: v.n,
|
|
94044
94333
|
"data-func": v.n,
|
|
94045
|
-
className: "luckysheet-formula-search-item"
|
|
94334
|
+
className: "luckysheet-formula-search-item ".concat(n === v.n && "luckysheet-formula-search-item-active")
|
|
94046
94335
|
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
94047
94336
|
className: "luckysheet-formula-search-func"
|
|
94048
94337
|
}, v.n), /*#__PURE__*/React__default['default'].createElement("div", {
|
|
@@ -94336,7 +94625,7 @@
|
|
|
94336
94625
|
onKeyDown: onKeyDown,
|
|
94337
94626
|
onPaste: onPaste,
|
|
94338
94627
|
allowEdit: edit ? !isHidenRC : edit
|
|
94339
|
-
})), document.activeElement === inputRef.current && ( /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, (_settings$renderEdito = settings.renderEditorSelector) === null || _settings$renderEdito === void 0 ? void 0 : _settings$renderEdito.call(settings, inputRef.current), /*#__PURE__*/React__default['default'].createElement(FormulaSearch, {
|
|
94628
|
+
})), document.activeElement === inputRef.current && ( /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, (_settings$renderEdito = settings.renderEditorSelector) === null || _settings$renderEdito === void 0 ? void 0 : _settings$renderEdito.call(settings, inputRef.current, context.functionCandidates, context.functionHint, context.formulaCache.functionlistMap), /*#__PURE__*/React__default['default'].createElement(FormulaSearch, {
|
|
94340
94629
|
style: {
|
|
94341
94630
|
top: ((firstSelection === null || firstSelection === void 0 ? void 0 : firstSelection.height_move) || 0) + 4
|
|
94342
94631
|
}
|
|
@@ -98854,8 +99143,10 @@
|
|
|
98854
99143
|
if (!container) return;
|
|
98855
99144
|
var moreButtonWidth = 50;
|
|
98856
99145
|
for (var i = itemLocations.length - 1; i >= 0; i -= 1) {
|
|
99146
|
+
var _container$querySelec;
|
|
98857
99147
|
var loc = itemLocations[i];
|
|
98858
|
-
|
|
99148
|
+
var wrapperWidth = container.clientWidth - (((_container$querySelec = container.querySelector(".leankylin-toolbar-right")) === null || _container$querySelec === void 0 ? void 0 : _container$querySelec.clientWidth) || 0);
|
|
99149
|
+
if (loc + moreButtonWidth < wrapperWidth) {
|
|
98859
99150
|
setToolbarWrapIndex(i - itemLocations.length + settings.toolbarItems.length);
|
|
98860
99151
|
if (i === itemLocations.length - 1) {
|
|
98861
99152
|
setMoreItems(null);
|
|
@@ -99873,7 +100164,9 @@
|
|
|
99873
100164
|
}));
|
|
99874
100165
|
}
|
|
99875
100166
|
}
|
|
99876
|
-
})) : null,
|
|
100167
|
+
})) : null, settings.toolbarRightRender ? ( /*#__PURE__*/React__default['default'].createElement("div", {
|
|
100168
|
+
className: "leankylin-toolbar-right"
|
|
100169
|
+
}, (_settings$toolbarRigh = settings.toolbarRightRender) === null || _settings$toolbarRigh === void 0 ? void 0 : _settings$toolbarRigh.call(settings))) : null);
|
|
99877
100170
|
};
|
|
99878
100171
|
|
|
99879
100172
|
var LocationBox = function LocationBox() {
|
package/dist/index.umd.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.leankylin-container{display:flex;width:100%;height:100%;margin:0;padding:0;flex-direction:column;font-family:Helvetica Neue,Helvetica,Arial,PingFang SC,Hiragino Sans GB,Heiti SC,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;background-color:#fff;position:relative}.leankylin-workarea{width:100%}.leankylin-popover-backdrop{position:absolute;top:0;left:0;z-index:1003;height:100%;width:100%}.leankylin-modal-container{background:hsla(0,0%,100%,.5);display:flex;align-items:center;justify-content:center}html::-webkit-scrollbar-button{display:none}.leankylin-stat-area{display:flex;justify-content:flex-end;align-items:center}.leankylin-sheet-container{display:flex;flex:1;flex-direction:column}.leankylin-col-body{display:flex;flex:1;flex-direction:row}.leankylin-sheet-area{flex:1;position:relative}.leankylin-sheet-canvas,.leankylin-sheet-canvas-placeholder{width:100%;height:100%;display:block}.leankylin-sheet-canvas{position:absolute}.leankylin-sheet-overlay{position:absolute;width:100%;height:100%;outline-style:none}.leankylin-cell-area{border-collapse:collapse;position:relative;overflow:hidden;outline-style:none;cursor:default}.leankylin-row-body{display:flex;flex-direction:row}.leankylin-row-header{position:relative;flex-shrink:0;outline-style:none;color:#5e5e5e;overflow:hidden;margin-top:-2px;padding:2px 0 0;cursor:default;width:45px}.leankylin-row-header-hover{z-index:11;border:0;background-color:hsla(0,0%,76.1%,.4)}.leankylin-row-header-hover,.leankylin-row-header-selected{position:absolute;right:0;width:100%;margin-top:2px;display:none}.leankylin-row-header-selected{z-index:10;border-right:1px solid #0188fb;background-color:rgba(76,76,76,.1)}.leankylin-col-header-wrap{display:flex;flex-direction:row}.leankylin-col-header{color:#5e5e5e;overflow:hidden;padding:0;cursor:default;flex:1;height:19px;outline-style:none;position:relative}.leankylin-col-header-hover{color:#5e5e5e;cursor:default;position:absolute;z-index:11;border:0;bottom:0;height:100%;margin-left:0;display:none;background-color:hsla(0,0%,76.1%,.4)}.leankylin-col-header-hover .header-arrow{position:absolute;right:6px;top:50%;transform:translateY(-44%)}.leankylin-col-header-selected{color:#5e5e5e;cursor:default;position:absolute;z-index:10;border-bottom:1px solid #0188fb;bottom:0;height:100%;margin-left:0;display:none;background-color:rgba(76,76,76,.1)}.leankylin-left-top{width:44.5px;height:18.5px;position:relative;padding-top:0;border:0 solid #dfdfdf;border-width:0 1px 1px 0;padding-left:0;cursor:pointer;background-color:#fff}.leankylin-add-row-button{padding:1px 20px;display:inline-flex;align-items:center;margin:0 8px;border-radius:4px;font-size:14px;line-height:20px;outline:none;cursor:pointer;color:#262a33;background-color:#fff;border:1px solid #c8c8c8}.luckysheet-cell-selected-focus{position:absolute;pointer-events:none;z-index:14;margin:0;background:rgba(0,80,208,.15);display:none}.leankylin-selection-copy{position:absolute;pointer-events:none;z-index:18;border:none;margin:0}.leankylin-selection-copy .leankylin-copy{position:absolute;z-index:18;background-color:transparent}.leankylin-selection-highlight{position:absolute;z-index:14;border:none;margin:0}.leankylin-cell-selected-extend{pointer-events:none;border:1px dashed #0188fb}.leankylin-cell-selected-extend,.leankylin-cell-selected-move{position:absolute;z-index:16;margin:-1px 0 0 -1px;display:none}.leankylin-cell-selected-move{cursor:move;border:2px solid #0188fb}.luckysheet-cell-selected{position:absolute;pointer-events:none;z-index:15;border:1px solid #0188fb;margin:-1px 0 0 -1px;background:rgba(1,136,251,.15);display:none;box-sizing:content-box}.luckysheet-cs-inner-border{pointer-events:none;border:1px solid #fff;position:absolute;top:0;bottom:0;left:0;right:0}.luckysheet-cs-fillhandle{position:absolute;width:6px;height:6px;bottom:-5px;cursor:crosshair;background-color:#0188fb;border:1px solid #fff;z-index:16;pointer-events:auto;right:-5px}.luckysheet-cs-draghandle{position:absolute;cursor:move;background-color:#fff;opacity:.01;z-index:15;pointer-events:auto;border:2px solid #fff}.luckysheet-cs-draghandle-top{top:-4px;left:-2px;right:-2px;height:2px}.luckysheet-cs-draghandle-bottom{right:0;left:-2px;bottom:-4px;height:2px}.luckysheet-cs-draghandle-left{top:0;left:-4px;bottom:0;width:2px}.luckysheet-cs-draghandle-right{top:0;right:-4px;bottom:0;width:2px}.luckysheet-cs-touchhandle{display:none;position:absolute;width:16px;height:16px;padding:5px;z-index:100;pointer-events:auto;touch-action:auto}.luckysheet-cs-touchhandle:before{content:"";display:block;width:16px;height:16px;border:.5px solid rgba(0,0,0,.15);background-color:#fff;box-sizing:border-box;border-radius:50%}.luckysheet-cs-touchhandle-lt{left:-13px;top:-13px}.luckysheet-cs-touchhandle-lb{left:-13px;bottom:-13px}.luckysheet-cs-touchhandle-rt{right:-13px;top:-13px}.luckysheet-cs-touchhandle-rb{right:-13px;bottom:-13px}.luckysheet-cs-touchhandle .luckysheet-cs-touchhandle-btn{position:absolute;width:10px;height:10px;left:8px;top:8px;background-color:#018ffb;background-position:50%;box-sizing:border-box;border-radius:50%;z-index:11}.luckysheet-input-box{position:absolute;font:normal normal 400 13px arial,sans,sans-serif;z-index:15;display:flex;flex-direction:column}.luckysheet-input-box-inner{font:normal normal 400 13px arial,sans,sans-serif;text-align:left;max-height:9900px;max-width:9900px;border:1px solid #5292f7;padding:0 2px;margin:0;resize:none;overflow:hidden;white-space:pre-wrap;outline:none;-webkit-box-shadow:0 2px 5px rgba(0,0,0,.4);-moz-box-shadow:0 2px 5px rgba(0,0,0,.4);box-shadow:0 2px 5px rgba(0,0,0,.4);word-wrap:break-word;background-color:#fff;font-size:13px;right:auto;overflow-y:auto;box-sizing:border-box}.luckysheet-cell-input{width:100%;margin:0;outline:none;cursor:text;white-space:pre-wrap}.luckysheet-formula-text-color{color:#000}.luckysheet-formula-text-string{color:#228b22}.luckysheet-cell-flow{margin:0;padding:0;border:0;position:relative;touch-action:manipulation}.luckysheet-cell-flow-clip{border-collapse:collapse;width:5000000px;touch-action:manipulation;overflow:hidden}.luckysheet-cell-flow-col{margin:0;padding:0;border:0;position:relative;touch-action:manipulation;overflow:hidden;float:left;direction:ltr}.luckysheet-cell-sheettable{position:relative;text-align:left;font-size:11pt;color:#000;text-decoration:none}.luckysheet-bottom-controll-row{position:absolute;bottom:30px;left:0;z-index:1000}#luckysheet-bottom-add-row{padding:5px 20px;margin-right:5px;margin-top:-2px}#luckysheet-bottom-add-row-input{width:40px;min-width:40px}#luckysheet-bottom-return-top{padding:5px 6px;margin-left:10px;margin-top:-2px}.luckysheet-cell-flow-column{position:absolute;height:inherit;width:inherit;top:0;left:0;z-index:1;touch-action:manipulation}.luckysheet-cell-flow-column-line{position:absolute;border-right:1px solid #d4d4d4;height:inherit}.luckysheet-cell-flow-row{text-align:left;position:absolute;height:inherit;width:inherit;top:0;left:0;z-index:1;touch-action:manipulation}.luckysheet-cell-flow-row-line{position:absolute;border-bottom:1px solid #d4d4d4;width:inherit}.leankylin-change-size-line,.leankylin-cols-change-size,.leankylin-cols-freeze-handle,.leankylin-freeze-drag-line,.leankylin-rows-change-size,.leankylin-rows-freeze-handle{-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;position:absolute;z-index:12}.leankylin-cols-change-size{width:5px;height:100%;background:#0188fb;cursor:ew-resize;opacity:0}.leankylin-rows-change-size{width:100%;height:5px;background:#0188fb;cursor:ns-resize;opacity:0}.leankylin-change-size-line{border-color:#0188fb;border-style:solid;z-index:15;cursor:ew-resize}.leankylin-cols-freeze-handle{position:absolute;left:0;width:3px;height:100%;background-color:#ddd;cursor:grab;z-index:20}.leankylin-cols-freeze-handle-disabled{cursor:no-drop}.leankylin-rows-freeze-handle{position:absolute;top:0;height:3px;width:100%;background-color:#ddd;cursor:grab;z-index:20}.leankylin-rows-freeze-handle-disabled{cursor:no-drop}.leankylin-freeze-drag-line{border-color:#ccc;border-style:solid;z-index:15;cursor:ew-resize}.luckysheet-postil-show-main{cursor:grab}.luckysheet-postil-show-main:active{cursor:grabbing}.luckysheet-postil-dialog-move{position:absolute;margin:0;padding:0;top:0;left:0;bottom:0;right:0;pointer-events:none}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item{position:absolute;pointer-events:all;cursor:move}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-t{width:100%;height:10px;left:0;top:-4px}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-r{width:10px;height:100%;right:-4px;top:0}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-b{width:100%;height:10px;left:0;bottom:-4px}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-l{width:10px;height:100%;left:-4px;top:0}.luckysheet-postil-show-active .luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item{border-color:#0188fb}.luckysheet-postil-dialog-resize{position:absolute;margin:0;padding:0;top:-2px;left:-2px;bottom:-2px;right:-2px;pointer-events:none}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item{position:absolute;height:10px;width:10px;pointer-events:all;background-color:#3b82f4;border:2px solid #fff;border-radius:50%}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lt{left:-6px;top:-6px;cursor:nw-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-mt{left:50%;top:-6px;margin-left:-4px;cursor:n-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lm{top:50%;left:-6px;margin-top:-4px;cursor:w-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rm{top:50%;right:-6px;margin-top:-4px;cursor:e-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rt{right:-6px;top:-6px;cursor:ne-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lb{left:-6px;bottom:-6px;cursor:sw-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-mb{left:50%;bottom:-6px;margin-left:-4px;cursor:s-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rb{right:-6px;bottom:-6px;cursor:se-resize}.leankylin-selection-copy-top{left:0;right:0;height:2px;top:0;background-position:bottom}.leankylin-selection-copy-right{top:0;bottom:0;width:2px;right:0}.leankylin-selection-copy-bottom{left:0;right:0;height:2px;bottom:0}.leankylin-selection-copy-left{top:0;bottom:0;width:2px;left:0;background-position:100%}.leankylin-selection-copy-hc{position:absolute;top:0;right:0;bottom:0;left:0;border:2px dashed #12a5ff;z-index:8}.luckysheet-modal-dialog-resize{position:absolute;border:2px solid #0188fb;margin:0;padding:0;top:-2px;left:-2px;bottom:-2px;right:-2px;pointer-events:none}.luckysheet-modal-dialog-resize-item{position:absolute;height:6px;width:6px;background:#fff;border:2px solid #0188fb;pointer-events:all;border-radius:6px}.luckysheet-modal-dialog-resize-item-lt{left:-6px;top:-6px;cursor:se-resize}.luckysheet-modal-dialog-resize-item-mt{left:50%;top:-6px;margin-left:-4px;cursor:s-resize}.luckysheet-modal-dialog-resize-item-rt{right:-6px;top:-6px;cursor:ne-resize}.luckysheet-modal-dialog-resize-item-lm{top:50%;left:-6px;margin-top:-4px;cursor:w-resize}.luckysheet-modal-dialog-resize-item-rm{top:50%;right:-6px;margin-top:-4px;cursor:w-resize}.luckysheet-modal-dialog-resize-item-lb{left:-6px;bottom:-6px;cursor:ne-resize}.luckysheet-modal-dialog-resize-item-mb{left:50%;bottom:-6px;margin-left:-4px;cursor:s-resize}.luckysheet-modal-dialog-resize-item-rb{right:-6px;bottom:-6px;cursor:se-resize}.leankylin-formula-functionrange-highlight .leankylin-copy{background-image:none;background:#0188fb;position:absolute;z-index:18;cursor:move;opacity:.9;box-sizing:content-box}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-top{top:-2px;border-top:2px solid #fff;border-bottom:2px solid #fff}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-right{right:-2px;border-left:2px solid #fff;border-right:2px solid #fff}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-bottom{bottom:-2px;border-top:2px solid #fff;border-bottom:2px solid #fff}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-left{left:-2px;border-left:2px solid #fff;border-right:2px solid #fff}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-hc{border:2px solid #5e5e5e;opacity:.03;z-index:auto}.leankylin-selection-highlight-lt{left:-3px;top:-3px;cursor:se-resize}.leankylin-selection-highlight-rt{right:-3px;top:-3px;cursor:ne-resize}.leankylin-selection-highlight-lb{left:-3px;bottom:-3px;cursor:ne-resize}.leankylin-selection-highlight-rb{right:-3px;bottom:-3px;cursor:se-resize}.leankylin-formula-functionrange-highlight .luckysheet-highlight{position:absolute;z-index:19;border:1px solid #fff;background:#0188fb;width:6px;height:6px}.leankylin-presence-username{position:absolute;padding:2px 6px;left:-2px;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;box-sizing:content-box;color:#fff}.leankylin-presence-selection{position:absolute;border-style:solid;border-width:1;opacity:.7}.luckysheet-filter-options{color:#897bff;cursor:pointer;position:absolute;z-index:200;border:1px solid #897bff;border-radius:3px;top:3px;margin-left:0;display:"block";padding:0 4px;font-size:12px;height:15px;background:#fff}.luckysheet-filter-options:hover{color:#fff;border:1px solid #fff;background:#897bff}.luckysheet-filter-options-active{color:#fff;border:1px solid #897bff;padding:0 1px;background:#897bff}.caret{margin-top:6px;width:0;height:0;display:inline-block;border:4px solid transparent}.caret.down{border-top-color:#897bff}.luckysheet-filter-options:hover .caret.down{border-top-color:#fff}.luckysheet-filter-selected{background:hsla(0,0%,100%,0);border-radius:4px}#luckysheet-dataVerification-showHintBox{display:none;padding:10px;background-color:#fff;border:1px solid #ccc;box-shadow:0 2px 4px rgba(0,0,0,.2);position:absolute;z-index:1000;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:default;white-space:nowrap;font-size:12px}#luckysheet-dataVerification-dropdown-btn{display:none;width:20px;height:20px;background-color:#fff;position:absolute;z-index:10;overflow:hidden}.luckysheet-formula-search-c{position:absolute;border:1px solid rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2);color:#535353;font-size:12px;background:#fff;z-index:1003;width:300px}.luckysheet-formula-search-c .luckysheet-formula-search-item{background:#fff;padding:5px 10px;cursor:pointer}.luckysheet-formula-search-item:hover{background-color:#f1f1f1!important}.luckysheet-formula-search-c .luckysheet-formula-search-item .luckysheet-formula-search-detail{display:none;color:#444}.luckysheet-formula-search-c .luckysheet-formula-search-item .luckysheet-formula-search-func{color:#222;font-size:14px}.luckysheet-formula-search-c .luckysheet-formula-search-item-active{display:block;border-top:1px solid #ebebeb;border-bottom:1px solid #ebebeb;background:#f5f5f5}.luckysheet-formula-search-c .luckysheet-formula-search-item-active .luckysheet-formula-search-detail{display:block}.luckysheet-formula-help-c{position:absolute;border:1px solid rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2);color:#535353;font-size:12px;background:#fff;z-index:1003;width:300px}.luckysheet-formula-help-c .luckysheet-formula-help-content{max-height:300px;overflow-y:scroll}.luckysheet-formula-help-content-example{margin-top:5px}.luckysheet-formula-help-title{display:block;border-top:1px solid #ebebeb;border-bottom:1px solid #ebebeb;background:#f5f5f5;padding:2px 10px;font-size:14px}.luckysheet-formula-help-title-formula{width:250px;word-break:break-word}.luckysheet-arguments-help-section{margin-top:5px;margin-bottom:5px;color:#222}.luckysheet-arguments-help-section-title{padding:1px 10px;color:#666}.luckysheet-arguments-help-parameter-content{padding:1px 10px;display:inline-block;word-wrap:break-word}.luckysheet-arguments-help-formula{padding:1px 10px;font-size:14px}.luckysheet-arguments-help-parameter-active{background-color:#fff9b2}.luckysheet-formula-help-collapse{position:absolute;top:0;right:25px;font-size:16px;cursor:pointer;color:#bbb}.luckysheet-formula-help-close{position:absolute;top:0;right:5px;font-size:16px;cursor:pointer;color:#bbb}.luckysheet-formula-help-close:hover,.luckysheet-formula-help-collapse:hover{color:#555}.luckysheet-scrollbar-ltr{position:absolute;overflow:hidden;z-index:1003}.luckysheet-scrollbar-ltr div{height:1px;width:1px}.luckysheet-scrollbar-x{bottom:0;overflow-x:auto}.luckysheet-scrollbar-y{right:0;top:0;overflow-y:auto}.luckysheet-scrollbar-ltr::-webkit-scrollbar{background-color:transparent;width:8px;height:8px}.luckysheet-scrollbar-ltr::-webkit-scrollbar-track{background-color:transparent}.luckysheet-scrollbar-ltr::-webkit-scrollbar-thumb{background-color:#babac0;border-radius:16px}.luckysheet-scrollbar-ltr::-webkit-scrollbar-button{display:none}.leankylin-dialog{max-width:90%;max-height:90%;overflow:scroll;border-radius:6px;background:#fff;box-shadow:5px 5px 30px rgba(0,0,0,.1);box-sizing:border-box;overflow:auto}.leankylin-dialog-box-button-container{display:flex;align-items:center;justify-content:center}.leankylin-dialog-box-content{padding:0 25px}.leankylin-dialog-box-button-container{padding-top:10px;padding-bottom:20px}.leankylin-message-box-button{display:inline-flex;align-items:center;padding:6px 12px;margin:0 8px;border:none;border-radius:4px;font-size:14px;line-height:20px;outline:none;cursor:pointer}.leankylin-message-box-button.button-default{color:#262a33;background-color:#fff;border:1px solid #ebebeb}.leankylin-message-box-button.button-primary{color:#fff;background-color:#0188fb}.leankylin-modal-dialog-header{outline:0;display:flex;justify-content:flex-end}.leankylin-modal-dialog-icon-close{color:#d4d4d4;opacity:.3}.leankylin-modal-dialog-icon-close:hover{opacity:.7}#leankylin-search-replace{position:absolute;padding:30px 42px;z-index:1002}#leankylin-search-replace .icon-close{position:absolute;right:3px;top:3px}#leankylin-search-replace .tabBox{margin-top:10px;font-size:0}#leankylin-search-replace .tabBox span{display:inline-block;text-align:center;width:100px;border:1px solid #ebebeb;font-size:14px;line-height:2}#leankylin-search-replace .tabBox span.on{background-color:#8c89fe;border-color:#726efe;color:#fff}#leankylin-search-replace .ctBox{padding:5px 10px;border:1px solid #ebebeb;font-size:14px;min-width:500px}#leankylin-search-replace .ctBox .row{display:flex;flex-direction:row;justify-content:space-between}#leankylin-search-replace .inputBox{height:90px;position:relative}#leankylin-search-replace .inputBox .textboxs{height:30px;line-height:30px}#leankylin-search-replace .checkboxs{height:90px}#leankylin-search-replace .checkboxs div{height:30px;line-height:30px}#leankylin-search-replace .checkboxs input[type=checkbox]{float:left;margin-top:9px}#leankylin-search-replace .btnBox{margin-top:10px}#leankylin-search-replace .btnBox .button-default{margin-right:8px;margin-left:0}#leankylin-search-replace .close-button{margin-left:0;margin-top:10px}#leankylin-search-replace #searchAllbox{height:210px;border:1px solid #d4d4d4;margin-top:10px;overflow-y:auto;position:relative}#leankylin-search-replace #searchAllbox .boxTitle{width:100%;height:30px;line-height:29px;padding:0 5px;background-color:#fff;border-bottom:1px solid #d4d4d4;box-sizing:border-box;position:sticky;left:0;top:0}#leankylin-search-replace #searchAllbox .boxTitle span{display:inline-block;text-align:center}#leankylin-search-replace #searchAllbox .boxTitle span:first-of-type,#leankylin-search-replace #searchAllbox .boxTitle span:nth-of-type(2){width:25%}#leankylin-search-replace #searchAllbox .boxTitle span:nth-of-type(3){width:50%}#leankylin-search-replace #searchAllbox .boxMain .boxItem{height:30px;line-height:29px;border-bottom:1px solid #d4d4d4;padding:0 5px;box-sizing:border-box}#leankylin-search-replace #searchAllbox .boxMain .boxItem.on{background-color:#8c89fe;color:#fff}#leankylin-search-replace #searchAllbox .boxMain .boxItem span{display:block;text-align:center;float:left}#leankylin-search-replace #searchAllbox .boxMain .boxItem span:first-of-type,#leankylin-search-replace #searchAllbox .boxMain .boxItem span:nth-of-type(2){width:25%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#leankylin-search-replace #searchAllbox .boxMain .boxItem span:nth-of-type(3){width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.leankylin-link-modify-modal{position:absolute;overflow:hidden;background-color:#fff;z-index:300;padding:6px 20px 10px;box-shadow:0 2px 6px 0 rgba(0,0,0,.16);border:.5px solid #e5e5e5;border-radius:6px}.leankylin-link-modify-modal.link-toolbar{display:flex;flex-direction:row;padding:2px 8px 2px 16px;align-items:center}.leankylin-link-modify-modal .link-content{margin-right:6px}.leankylin-link-modify-modal .link-content:hover{color:#2674fb;cursor:pointer}.leankylin-link-modify-modal .divider{width:1px;height:16px;margin:0 6px;background-color:#e0e0e0;flex-shrink:0}.leankylin-link-modify-modal .leankylin-toolbar-button{padding:6px}.leankylin-link-modify-modal .leankylin-toolbar-button:hover{background-color:rgba(0,0,0,.06);cursor:pointer}.leankylin-link-modify-modal.range-selection-modal{width:380px;padding:22px;-webkit-user-select:auto;-moz-user-select:auto;user-select:auto;background-color:#fff}.leankylin-link-modify-line{padding-top:10px}.leankylin-link-modify-title{font-size:12px;display:inline-block;height:16px;width:74px;line-height:16px;padding:7px 0;color:#333;margin-right:6px}.leankylin-link-modify-input,.leankylin-link-modify-select{width:232px;box-sizing:border-box;height:26px;border-radius:5px;border:1px solid #d9d9d9;font-size:12px;padding:1px 8px;outline:none;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.leankylin-link-modify-input:focus,.leankylin-link-modify-modal .range-selection-input:focus{border-color:#4d90fe}.leankylin-link-modify-input.error-input,.leankylin-link-modify-modal .range-selection-input.error-input{border:1px solid #ef4e2f!important}.leankylin-link-modify-cell-selector{width:20px;right:24px;padding:4px;position:absolute;display:inline-block;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.leankylin-link-modify-modal .modal-title{font-weight:500;font-size:16px;color:rgba(0,0,0,.88);margin-bottom:12px;line-height:24px}.leankylin-link-modify-modal .range-selection-input{display:block;outline:none;font-size:14px;height:32px;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;padding:7px 11px;border:1px solid #e0e0e0;border-radius:4px;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}.leankylin-link-modify-modal .modal-icon-close{position:absolute;right:22px;top:22px;cursor:pointer}.leankylin-link-modify-modal .validation-input-tip{height:17px;font-size:12px;color:#ef4e2f;margin:3px 0}.leankylin-link-modify-modal .button-group{display:flex}.leankylin-link-modify-modal .modal-footer{display:flex;justify-content:flex-end;padding:0 0 5px}.leankylin-link-modify-modal.range-selection-modal .modal-footer{padding:0}.leankylin-link-modify-modal .button-basic{display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;font-size:14px;height:32px;width:88px;padding:0;border-radius:4px;cursor:pointer}.leankylin-link-modify-modal .button-default{color:#262a33;background-color:#fff;border:1px solid #ebebeb}.leankylin-link-modify-modal .button-primary{color:#fff;background-color:#0188fb;margin-left:14px}#leankylin-data-verification{min-width:500px;padding:10px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}#leankylin-data-verification .title{font-size:16px}#leankylin-data-verification .box{font-size:14px}#leankylin-data-verification .box .box-item{padding:10px;border-bottom:1px solid #e1e4e8}#leankylin-data-verification .box .box-item .box-item-title{font-size:14px;font-weight:600;margin-bottom:10px}#leankylin-data-verification .box .box-item .data-verification-range{width:100%;height:30px;border:1px solid #d4d4d4}#leankylin-data-verification .box .box-item .show-box-item{margin-top:6px;font-size:12px}#leankylin-data-verification .box .box-item .show-box-item .check-box{height:30px;line-height:30px;margin-bottom:10px}#leankylin-data-verification .box .box-item .show-box-item .check-box input{height:30px;padding:0 10px;border:1px solid #d4d4d4;box-sizing:border-box}#leankylin-data-verification .input-box input{height:30px;padding:4px 10px;border:1px solid #d4d4d4;box-sizing:border-box;margin-top:6px}#leankylin-data-verification .input-box span{margin:0 16px}.data-verification-range .formulaInputFocus{width:calc(100% - 30px);height:30px;padding:0 10px px;float:left;border:none;outline-style:none;box-sizing:border-box}.data-verification-range .icon{float:right;margin-top:4px;margin-right:5px;cursor:pointer}#leankylin-data-verification .box .box-item .data-verification-type-select{width:100%;height:30px;border-color:#d4d4d4;outline-style:none}#leankylin-data-verification .box .box-item .check{font-size:12px;line-height:24px}#leankylin-data-verification .box .box-item .check input{vertical-align:text-top}#leankylin-data-verification .button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-top:10px}#leankylin-data-verification .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}#leankylin-data-verification .button-close{color:#333;background-color:#fff;border:1px solid #ccc;margin-right:10px}#range-dialog{box-shadow:0 4px 16px rgba(0,0,0,.2);background:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.333);outline:0;position:absolute;color:#000;padding:30px 42px;z-index:100003;left:50%;top:50%;transform:translate(-50%,-90%);-webkit-user-select:none;-moz-user-select:none;user-select:none}#range-dialog .dialog-title{background-color:#fff;color:#000;cursor:default;font-size:16px;font-weight:400;line-height:24px;margin:0 0 16px}#range-dialog input{height:30px;padding:0 10px;border:1px solid #d4d4d4;outline-style:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}#range-dialog .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}#range-dialog .button-close{color:#333;background-color:#fff;border:1px solid #ccc;margin-right:10px}#luckysheet-dataVerification-dropdown-List{background-color:#fff;border:1px solid #ccc;box-shadow:0 2px 4px rgba(0,0,0,.2);position:absolute;z-index:10000;box-sizing:border-box;font-size:12px}#luckysheet-dataVerification-dropdown-List .dropdown-List-item{padding:5px 10px;box-sizing:border-box;cursor:pointer}#luckysheet-dataVerification-dropdown-List .dropdown-List-item:hover{background-color:#e1e1e1}.condition-format-sub-menu{position:absolute;top:-8px;box-shadow:0 2px 4px rgba(0,0,0,.2);background:#fff;border:1px solid rgba(0,0,0,.2);cursor:default;font-size:12px;z-index:1004;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;outline:none}.condition-format-item{display:flex;justify-content:space-between;padding:6px 18px;z-index:1005}.condition-format-item:hover{background:#efefef}.condition-format-item span{font-size:10px;color:#afafaf}.horizontal-line{border-top:1px solid #ebebeb;margin-top:6px;margin-bottom:6px}.condition-rules .button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-top:10px}.condition-rules .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}.condition-rules .button-close{color:#333;background-color:#fff;border:1px solid #ccc}.condition-rules{padding:0 42px 34px;font-size:12px}.condition-rules-title{color:#000;cursor:default;font-size:16px;margin-bottom:18px}.conditin-rules-value{margin:5px 0;font-weight:600}.condition-rules-inpbox{width:198px;height:28px;border:1px solid #d4d4d4}.condition-rules-input{width:150px;height:28px;padding:0 10px;border:none;outline-style:none;float:left}.condition-relues-inputicon{float:right;margin-top:2px;margin-right:5px;cursor:pointer}.condition-rules-set-title{margin:6px 0}.condition-rules-setbox{border:1px solid #d4d4d4}.condition-rules-set{padding:5px 10px}.condition-rules-color{height:30px;line-height:30px;position:relative}.condition-rules-check{float:left;margin-top:10px}.condition-rules-label{display:inline-block;width:80px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.condition-rules-select-color{padding:2px;border:1px solid #e5e5e5;background:#f5f5f5;position:absolute;top:50%;left:50%;transform:translate(20%,-50%)}.condition-rules-between-box{display:flex;align-items:center}.condition-rules-between-inpbox{width:108px;height:28px;border:1px solid #d4d4d4}.condition-rules-between-input{width:60px;height:28px;padding:0 10px;border:none;outline-style:none;float:left}.condition-rules-date{width:98%;border:none;line-height:26px}.condition-rules-select{width:150px;height:30px}.condition-rules-project-box{display:flex;align-items:center}.condition-rules-project-input{margin:0 6px}.leankylin-cell-option{position:absolute;left:46px;top:20px;z-index:1;width:calc(100% - 46px);height:calc(100% - 20px);overflow:hidden;pointer-events:none}.leankylin-cell-option-item{pointer-events:all}.leankylin-toolbar{display:flex;flex-direction:row;background:#fff;position:relative;padding:5px 0 3px 15px;border-bottom:1px solid #d4d4d4;white-space:nowrap;align-items:center}.leankylin-toolbar-divider{width:1px;height:20px;margin:0 6px;background-color:#e0e0e0;flex-shrink:0}.leankylin-toolbar-menu-line{display:flex;align-items:center;justify-content:space-between;position:relative}.leankylin-toolbar-menu-divider{width:"100%";height:1px;margin:2px 6px;background-color:#e0e0e0}.leankylin-toolbar-button,.leankylin-toolbar-combo{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:0;outline:none;list-style:none;text-decoration:none;display:flex;align-items:center;padding:2px;margin:2px 4px}.leankylin-toolbar-combo-arrow,.leankylin-toolbar-combo-button{display:flex;align-items:center;padding:0 6px}.leankylin-toolbar-button:hover,.leankylin-toolbar-combo-arrow:hover,.leankylin-toolbar-combo:hover{background-color:rgba(0,0,0,.06);cursor:pointer}.leankylin-toolbar-button:active,.leankylin-toolbar-combo:active{background-color:rgba(0,0,0,.12);cursor:pointer}.leankylin-toobar-combo-container{position:relative}.leankylin-toolbar-combo-popup{position:absolute;white-space:nowrap;top:32px;left:0;z-index:1004}.leankylin-toolbar-color-picker,.leankylin-toolbar-select{box-shadow:2px 2px 10px rgba(0,0,0,.2);padding:10px;border-radius:6px;background:#fff}.leankylin-toolbar-select{padding-left:0;padding-right:0;overflow:auto;max-height:75vh}.leankylin-toolbar-combo-button{font-size:12px}.leankylin-toolbar-select-option{font-size:12px;min-width:60px;padding:8px 12px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leankylin-toolbar-select-option:hover{background:#efefef}.leankylin-toolbar-select::-webkit-scrollbar{display:none}.leankylin-toolbar-color-picker-row{display:flex;flex-direction:row}.leankylin-toolbar-combo-text{margin:0 4px}.leankylin-toolbar-color-picker-item{width:16px;height:16px;margin:1px;cursor:pointer}.leankylin-tooltip{visibility:hidden;background-color:#666;color:#fff;text-align:center;border-radius:2px;padding:6px;font-size:12px;position:absolute;z-index:25;top:40px;white-space:nowrap}.leankylin-toolbar-button:hover .leankylin-tooltip,.leankylin-toolbar-combo:hover .leankylin-tooltip{visibility:visible}.leankylin-toolbar-more-container{position:absolute;display:flex;flex-direction:row;align-items:center;align-self:flex-end;margin-right:40px;top:40px;max-width:348px;box-shadow:2px 2px 10px rgba(0,0,0,.2);background:#fff;flex-wrap:wrap;z-index:1002}.leankylin-toolbar-subtext{-webkit-transition:all .218s;-moz-transition:all .218s;-o-transition:all .218s;transition:all .218s;left:auto;padding-top:1px;padding-left:24px;text-align:right;opacity:.5;filter:alpha(opacity=50);color:#000;font-family:Arial;line-height:100%}.leankylin-toolbar-subtext,.toolbar-item-sub-menu{font-size:12px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.toolbar-item-sub-menu{position:absolute;background:#fff;cursor:default;z-index:1004;box-sizing:border-box;outline:none}#leankylin-custom-color,.toolbar-item-sub-menu{box-shadow:0 2px 4px rgba(0,0,0,.2);border:1px solid rgba(0,0,0,.2);border-radius:6px}#leankylin-custom-color{min-width:164px;background:#f0f0f0;font-size:12px}#leankylin-custom-color .color-reset{position:relative;color:#333;cursor:pointer;list-style:none;white-space:nowrap;vertical-align:middle;padding:10px 24px 10px 8px;-webkit-user-select:none;-moz-user-select:none;user-select:none;border-radius:6px;background:#fff}#leankylin-custom-color .color-reset:hover{background:#e6e6e6}#leankylin-custom-color .custom-color{position:relative;padding:10px;border-radius:6px;background:#fff;align-items:center;margin:1px 0;display:flex;justify-content:space-around}.button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:12px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:-4px}.leankylin-border-select-menu{position:absolute;bottom:0}.leankylin-border-color-preview{height:3px}.leankylin-border-select-option{font-size:12px;height:24px;line-height:24px;min-width:60px;padding:8px 12px}.leankylin-border-select-option:hover{background:#efefef;cursor:pointer}.leankylin-border-style-preview{height:3px;overflow:hidden}.leankylin-border-style-picker-menu{padding:0 10px}.leankylin-border-style-picker-menu:hover{background:#efefef;cursor:pointer}#luckysheet-search-formula{font-size:12px}#luckysheet-search-formula .inpbox{margin-bottom:5px}#luckysheet-search-formula .inpbox div{display:block;margin-bottom:5px}#luckysheet-search-formula .inpbox input{width:100%;height:24px;line-height:24px;border:1px solid #d4d4d4;padding:0 10px;box-sizing:border-box;font-size:12px}#luckysheet-search-formula .selbox{margin-bottom:5px}#luckysheet-search-formula .selbox select{width:50%;height:24px;line-height:24px;border:1px solid #d4d4d4;box-sizing:border-box;font-size:12px}#luckysheet-search-formula .listbox label{display:block;margin-bottom:5px}#formulaTypeList,.formulaList{width:300px;height:170px;border:1px solid #d4d4d4;overflow-y:scroll}.listBox{padding:5px;border-bottom:1px solid #d4d4d4}.listBox.on{background-color:#8c89fe;color:#fff}#leankylin-split-column{min-width:500px}#leankylin-split-column label{-webkit-user-select:none;-moz-user-select:none;user-select:none}#leankylin-split-column .title{font-size:16px}#leankylin-split-column .splitDelimiters{margin-top:10px}#leankylin-split-column .splitSymbols{position:relative;border:1px solid #dfdfdf;padding:5px;margin:5px 0}#leankylin-split-column .splitSymbol{font-size:14px}#leankylin-split-column .splitSimple{position:absolute;top:114px;left:0}#leankylin-split-column #otherValue{margin-left:5px;width:50px;padding:0 5px}#leankylin-split-column .splitDataPreview{font-size:14px;margin-top:26px}#leankylin-split-column .splitColumnData{border:1px solid #dfdfdf;padding:5px;margin:5px 0;height:100px;overflow-y:scroll}#leankylin-split-column .button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none}#leankylin-split-column .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}#leankylin-split-column .button-close{color:#333;background-color:#fff;border:1px solid #ccc}#leankylin-split-column table{border-collapse:collapse}#leankylin-split-column tr{display:table-row;vertical-align:inherit;border-color:inherit}#leankylin-split-column td{border:1px solid #333;display:table-cell;vertical-align:inherit}label{cursor:default}#leankylin-location-condition{min-width:500px}#leankylin-location-condition .title{background-color:#fff;color:#000;cursor:default;font-size:16px;font-weight:400;line-height:48px}#leankylin-location-condition .listbox{border:1px solid #dfdfdf;padding:10px;font-size:14px;color:#000}#leankylin-location-condition .listbox .listItem{padding:5px 0}#leankylin-location-condition .listbox .listItem input[type=radio]{float:left;margin-top:5px}#leankylin-location-condition .listItem{padding:5px 0}#leankylin-location-condition .listItem .subItem{height:30px;padding:0 10px;display:block}#leankylin-location-condition input[type=radio]{float:left;margin-top:3px}#leankylin-location-condition .listbox .listItem .subbox{height:30px;padding:0 10px}#leankylin-location-condition .listbox .listItem .subbox .subItem{float:left;margin-right:5px}#leankylin-location-condition .button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-top:10px}#leankylin-location-condition .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}#leankylin-location-condition .button-close{color:#333;background-color:#fff;border:1px solid #ccc}.listBox{display:flex;justify-content:space-between}.inpbox{margin-bottom:10px}.decimal-places-input{width:70px}.format-list{width:300px;height:170px;border:1px solid #d4d4d4;overflow-y:scroll}.leankylin-fx-editor{display:flex;flex-direction:row;height:28px;border-bottom:1px solid #d4d4d4}.leankylin-fx-icon{display:flex;align-items:center;margin:0 12px}.leankylin-name-box-container{width:99px;border-right:1px solid #d4d4d4;font-size:14px;display:flex;align-items:center}.leankylin-name-box{width:100%;text-align:center;margin:0;outline:none;cursor:text;white-space:nowrap;overflow:hidden;-webkit-transform:translateZ(0);background-color:#fff;word-wrap:break-word;-webkit-nbsp-mode:space;-webkit-line-break:after-white-space}.leankylin-fx-input-container{overflow:visible;padding:0;flex:1;display:flex;align-items:center;position:relative;border-left:1px solid #e5e5e5}.leankylin-fx-input{flex:1;height:100%;overflow:hidden;padding-left:2px;font-size:14px;line-height:14px;margin:0;outline:none;cursor:text;white-space:pre-wrap;word-wrap:break-word;-webkit-transform:translateZ(0);-webkit-nbsp-mode:space;-webkit-line-break:after-white-space;background-color:#fff;padding-top:7px;box-sizing:border-box;color:#000;text-align:left}.leankylin-fx-input[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.luckysheet-sheet-area{width:100%;box-sizing:border-box;background-color:#fff;color:#444;height:36px;padding:4px 30px 4px 44px;margin:0;-webkit-touch-callout:none;cursor:default;transition:all .3s ease;display:flex;align-items:center;justify-content:space-between;position:relative;border-top:1px solid #e3e5ea}#luckysheet-sheet-content{width:0;flex:3;display:flex;align-items:center}#luckysheet-bottom-pager{width:0;background-color:#fafafc;z-index:1;flex:2;text-align:right;white-space:nowrap}.luckysheet-sheet-area .luckysheet-sheets-item,.luckysheet-sheet-area>div{display:inline-block}.leankylin-sheettab-container{padding:0;margin-left:0;position:relative;max-width:54%;vertical-align:bottom;display:inline-block}.leankylin-sheettab-container .boundary{position:absolute;top:0;width:6px;height:100%;z-index:1;background:#fff}.leankylin-sheettab-container .boundary-left{left:0;background-image:linear-gradient(90deg,var(--tw-gradient-stops))}.leankylin-sheettab-container .boundary-left,.leankylin-sheettab-container .boundary-right{--tw-gradient-from:rgba(68,68,68,0.3333333333333333);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,53.3%,0))}.leankylin-sheettab-container .boundary-right{right:0;background-image:linear-gradient(270deg,var(--tw-gradient-stops))}.leankylin-sheettab-container .leankylin-sheettab-container-c{padding:0;margin-left:0;overflow:hidden;white-space:nowrap;position:relative;max-width:100%;vertical-align:bottom;display:inline-block}.luckysheet-sheet-container-menu-hide .luckysheet-sheets-item{padding-right:5px!important}.luckysheet-sheet-container-menu-hide .luckysheet-sheets-item-menu{display:none!important}.luckysheet-sheet-area div.luckysheet-sheets-item{height:28px;line-height:28px;background-color:#fff;color:#676464;min-width:30px;top:0;position:relative;cursor:pointer;transition:all .1s;font-size:13px;box-sizing:border-box;vertical-align:middle;margin:0 6px;border-radius:4px;padding:0 6px}.luckysheet-sheet-area div.luckysheet-sheets-item:last-child{margin-right:1px}.luckysheet-sheet-area div.luckysheet-sheets-item:hover{background-color:#efefef;color:#490500}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-menu{margin-left:2px;display:inline-block;top:-2px;position:relative;color:#a1a1a1;position:absolute;height:100%;width:15px;right:0;text-align:center}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-menu:hover{color:#2a2a2a;cursor:pointer}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-name{padding:0 3px}.luckysheet-sheets-item-color{width:100%;height:10%;position:absolute;bottom:0;left:0}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-name[contenteditable=true]{border:1px solid #d9d9d9;display:inline-block;height:18px;line-height:18px;min-width:8px;margin:-4px -1px;-moz-user-modify:read-write-plaintext-only;-webkit-user-modify:read-write-plaintext-only;-moz-user-select:text!important;-ms-user-select:text!important;-webkit-user-select:text!important}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-name[contenteditable=true]:focus{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3);border:1px solid #4d90fe;outline:none}.luckysheet-sheet-area div.luckysheet-sheets-item-active{height:28px;line-height:28px;background-color:#efefef;border-top-color:#fff;color:#222;cursor:default}.luckysheet-sheet-area div.luckysheet-sheets-item-active:hover{background-color:#ececec;color:#222}.leankylin-sheettab-button{cursor:pointer;border-radius:4px;margin:0 6px}.leankylin-sheettab-button,.leankylin-sheettab-button:hover{display:flex;align-items:center;justify-content:center;height:28px;width:28px}.leankylin-sheettab-button:hover{background-color:#efefef}.luckysheet-noselected-text{-moz-user-select:-moz-test;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.leankylin-sheettab-scroll{display:flex;align-items:center;padding:0 5px;height:28px;cursor:pointer}.leankylin-sheettab-scroll:hover{background-color:#e0e0e0}.leankylin-sheettab-placeholder{display:inline-block;width:30px;height:28px;line-height:28px;vertical-align:middle}.sheet-list-container{overflow:visible;display:flex;flex-direction:column;justify-content:flex-end}.luckysheet-sheet-selection-calInfo{display:flex;font-size:12px;align-content:center;padding:0 0 0 44px;height:22px;align-self:flex-end}.luckysheet-sheet-selection-calInfo div{white-space:nowrap;margin:auto 7px auto 0}.luckysheet-sheets-item-function{display:none;width:28px;height:28px;position:absolute;text-align:center;top:4px;right:2px;cursor:pointer}.luckysheet-sheets-item-function:hover{background-color:#f1f1f1}.leankylin-sheet-area-right{display:flex!important}.leankylin-zoom-container{white-space:nowrap;overflow:visible;display:flex;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leankylin-zoom-button{display:flex;cursor:pointer;align-items:center;justify-content:center;width:24px;height:24px;border-radius:4px;margin:0 6px}.leankylin-zoom-button:hover{background:#efefef}.leankylin-zoom-ratio{position:relative;display:flex;justify-content:center;color:#1e1e1f;font-size:12px;cursor:pointer}.leankylin-zoom-ratio-current{padding:0 12px;margin:0}.leankylin-zoom-ratio-item:hover{background:#efefef}.leankylin-zoom-ratio-menu{position:absolute;bottom:30px;left:0;line-height:24px;box-shadow:2px 2px 10px rgba(0,0,0,.2);padding:10px 0;border-radius:6px;background:#fff;z-index:1004}.leankylin-zoom-ratio-text{padding:0 10px}.leankylin-context-menu{max-height:100%;overflow-y:auto;border-radius:4px;transition:opacity .218s;background:#fff;cursor:default;font-size:13px;margin:0;outline:none;position:absolute;z-index:1004;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:248px;border-radius:8px;line-height:22px;padding:4px 8px;border:1px solid #e3e5ea;box-shadow:0 0 0 0 transparent,0 0 0 0 transparent,0 0 0 0 transparent}.leankylin-context-menu input.luckysheet-mousedown-cancel{width:48px;text-align:center;margin-left:5px;margin-right:5px;border:1px solid #ccc;height:1.5em;border-radius:4px}.leankylin-context-menu-divider{height:1px;margin:4px 0;background-color:#f1f1f1}.luckysheet-cols-menu .luckysheet-cols-menuitem{position:relative;color:#333;cursor:pointer;list-style:none;margin:0;white-space:nowrap;vertical-align:middle;padding:1px 24px 1px 8px;-webkit-user-select:none;-moz-user-select:none;user-select:none;border-radius:4px}.luckysheet-cols-menu .luckysheet-cols-menuitem-hover,.luckysheet-cols-menu .luckysheet-cols-menuitem:hover{background:#f9fafb}.luckysheet-cols-menu .luckysheet-cols-menuitem .luckysheet-cols-menuitem-content{position:relative;color:#333;cursor:pointer;list-style:none;margin:0;padding:6px 7em 6px 30px;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leankylin-filter-menu .luckysheet-cols-menuitem{padding:0}.leankylin-filter-menu .luckysheet-cols-menuitem .luckysheet-cols-menuitem-content{padding:7px 24px}.leankylin-menuitem-row{display:flex;padding:7px 24px;white-space:pre;align-items:center}.leankylin-byvalue-btn{cursor:pointer;color:#00f;text-decoration:underline}.leankylin-filter-menu .button-basic,.luckysheet-filter-bycolor-submenu .button-basic{display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;font-size:14px;padding:4px 8px;border-radius:4px;cursor:pointer}.luckysheet-filter-bycolor-submenu .button-basic{margin:5px 20px}.leankylin-filter-menu .button-default,.luckysheet-filter-bycolor-submenu .button-default{color:#262a33;background-color:#fff;border:1px solid #ebebeb;margin-left:10px}.leankylin-filter-menu .button-default:hover,.luckysheet-filter-bycolor-submenu .button-default:hover{background-color:#e6e6e6}.leankylin-filter-menu .button-primary,.luckysheet-filter-bycolor-submenu .button-primary{color:#fff;background-color:#0188fb}.leankylin-filter-menu .button-primary:hover,.luckysheet-filter-bycolor-submenu .button-primary:hover{background:#5391ff}.leankylin-filter-menu .button-danger{color:#fff;background-color:#d9534f;margin-left:10px}.leankylin-filter-menu .button-danger:hover{background-color:#c9302c}.filter-bycolor-container{display:flex;justify-content:space-between;align-items:center}.filtermenu-input-container{padding:0}.filtermenu-input-container input.luckysheet-mousedown-cancel{margin:0 20px;width:230px;box-sizing:border-box;height:26px;border-radius:3px;border:1px solid #d9d9d9;font-size:12px;padding:1px 8px;outline:none;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto;text-align:start;border:1px solid #a1a1a1}.filtermenu-input-container input.luckysheet-mousedown-cancel:focus{border:1px solid #0188fb;outline:none}.byvalue-btn-row{justify-content:space-between;padding-bottom:0;align-items:flex-start}.filter-caret{width:0;height:0;display:inline-block;border:4px solid transparent}.filter-caret.right{margin-left:2px;margin-right:3px;border-left-color:#000}.filter-caret.down{margin-top:5px;margin-right:5px;border-top-color:#000}.filter-checkbox{margin-left:0;margin-right:5px}#luckysheet-filter-byvalue-select{min-height:100px;overflow-y:auto;overflow-x:hidden;padding:4px 24px}#luckysheet-filter-byvalue-select .count,#luckysheet-pivotTableFilter-byvalue-select .count{color:grey;margin-left:5px}#luckysheet-filter-byvalue-select .select-item{display:flex;align-items:center}.luckysheet-filter-bycolor-submenu{position:absolute;min-width:170px;font-size:12px;padding:5px 0;z-index:1004;border:1px solid rgba(0,0,0,.2);background-color:#fff}.luckysheet-filter-bycolor-submenu .title{padding:10px;font-weight:600;color:#333;background-color:#f4f4f4;text-align:center}.luckysheet-filter-bycolor-submenu .one-color-tip{padding:7px 30px;text-align:center}.luckysheet-filter-bycolor-submenu .color-list{max-height:128px;overflow:auto}.luckysheet-filter-bycolor-submenu .item{padding:5px 40px 5px 20px;cursor:pointer;position:relative;background-color:#fff}.luckysheet-filter-bycolor-submenu .item:hover{background-color:#d3d3d3}.luckysheet-filter-bycolor-submenu .item .color-label{display:block;width:70px;height:20px;border:1px solid #d1d1d1}.luckysheet-filter-bycolor-submenu .item input[type=checkbox]{position:absolute;right:10px;top:6px}.change-color-triangle{position:absolute;top:3px;right:-18px}.leankylin-sheet-color-change{position:absolute;left:200px;bottom:-100px}.leankylin-sort-title{background-color:#fff;color:#000;cursor:default;font-size:16px;font-weight:400;line-height:24px;margin:0 0 16px}.leankylin-sort-modal>div{margin-bottom:10px}.leankylin-sort-tablec td{padding:5px;white-space:nowrap}.leankylin-sort-button{margin-top:10px;margin-bottom:25px}.leankylin-sheet-list{overflow-y:auto;overflow-x:hidden;min-width:120px;position:absolute;z-index:10002;bottom:53px;margin-left:72px;max-height:60%}.leankylin-sheet-list-item{height:30px;line-height:30px;width:100%;margin-right:46px;cursor:pointer}.leankylin-sheet-list-item-name{margin-right:15px;position:relative}.leankylin-sheet-list-item-name .luckysheet-sheets-list-item-color{width:6%;height:100%;position:absolute;bottom:0;left:-6px}.leankylin-sheet-list :hover{background-color:#efefef}.leankylin-sheet-hidden-button{margin-right:15px;display:inline-flex;position:absolute;right:0;justify-content:flex-end}.leankylin-sheet-hidden-button :hover{background-color:#d0d0d0}.leankylin-sheet-selected-check-sapce{width:20px;display:inline-block;margin-left:15px}
|
|
1
|
+
.leankylin-container{display:flex;width:100%;height:100%;margin:0;padding:0;flex-direction:column;font-family:Helvetica Neue,Helvetica,Arial,PingFang SC,Hiragino Sans GB,Heiti SC,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;background-color:#fff;position:relative}.leankylin-workarea{width:100%}.leankylin-popover-backdrop{position:absolute;top:0;left:0;z-index:1003;height:100%;width:100%}.leankylin-modal-container{background:hsla(0,0%,100%,.5);display:flex;align-items:center;justify-content:center}html::-webkit-scrollbar-button{display:none}.leankylin-stat-area{display:flex;justify-content:flex-end;align-items:center}.leankylin-sheet-container{display:flex;flex:1;flex-direction:column}.leankylin-col-body{display:flex;flex:1;flex-direction:row}.leankylin-sheet-area{flex:1;position:relative}.leankylin-sheet-canvas,.leankylin-sheet-canvas-placeholder{width:100%;height:100%;display:block}.leankylin-sheet-canvas{position:absolute}.leankylin-sheet-overlay{position:absolute;width:100%;height:100%;outline-style:none}.leankylin-cell-area{border-collapse:collapse;position:relative;overflow:hidden;outline-style:none;cursor:default}.leankylin-row-body{display:flex;flex-direction:row}.leankylin-row-header{position:relative;flex-shrink:0;outline-style:none;color:#5e5e5e;overflow:hidden;margin-top:-2px;padding:2px 0 0;cursor:default;width:45px}.leankylin-row-header-hover{z-index:11;border:0;background-color:hsla(0,0%,76.1%,.4)}.leankylin-row-header-hover,.leankylin-row-header-selected{position:absolute;right:0;width:100%;margin-top:2px;display:none}.leankylin-row-header-selected{z-index:10;border-right:1px solid #0188fb;background-color:rgba(76,76,76,.1)}.leankylin-col-header-wrap{display:flex;flex-direction:row}.leankylin-col-header{color:#5e5e5e;overflow:hidden;padding:0;cursor:default;flex:1;height:19px;outline-style:none;position:relative}.leankylin-col-header-hover{color:#5e5e5e;cursor:default;position:absolute;z-index:11;border:0;bottom:0;height:100%;margin-left:0;display:none;background-color:hsla(0,0%,76.1%,.4)}.leankylin-col-header-hover .header-arrow{position:absolute;right:6px;top:50%;transform:translateY(-44%)}.leankylin-col-header-selected{color:#5e5e5e;cursor:default;position:absolute;z-index:10;border-bottom:1px solid #0188fb;bottom:0;height:100%;margin-left:0;display:none;background-color:rgba(76,76,76,.1)}.leankylin-left-top{width:44.5px;height:18.5px;position:relative;padding-top:0;border:0 solid #dfdfdf;border-width:0 1px 1px 0;padding-left:0;cursor:pointer;background-color:#fff}.leankylin-add-row-button{padding:1px 20px;display:inline-flex;align-items:center;margin:0 8px;border-radius:4px;font-size:14px;line-height:20px;outline:none;cursor:pointer;color:#262a33;background-color:#fff;border:1px solid #c8c8c8}.luckysheet-cell-selected-focus{position:absolute;pointer-events:none;z-index:14;margin:0;background:rgba(0,80,208,.15);display:none}.leankylin-selection-copy{position:absolute;pointer-events:none;z-index:18;border:none;margin:0}.leankylin-selection-copy .leankylin-copy{position:absolute;z-index:18;background-color:transparent}.leankylin-selection-highlight{position:absolute;z-index:14;border:none;margin:0}.leankylin-cell-selected-extend{pointer-events:none;border:1px dashed #0188fb}.leankylin-cell-selected-extend,.leankylin-cell-selected-move{position:absolute;z-index:16;margin:-1px 0 0 -1px;display:none}.leankylin-cell-selected-move{cursor:move;border:2px solid #0188fb}.luckysheet-cell-selected{position:absolute;pointer-events:none;z-index:15;border:1px solid #0188fb;margin:-1px 0 0 -1px;background:rgba(1,136,251,.15);display:none;box-sizing:content-box}.luckysheet-cs-inner-border{pointer-events:none;border:1px solid #fff;position:absolute;top:0;bottom:0;left:0;right:0}.luckysheet-cs-fillhandle{position:absolute;width:6px;height:6px;bottom:-5px;cursor:crosshair;background-color:#0188fb;border:1px solid #fff;z-index:16;pointer-events:auto;right:-5px}.luckysheet-cs-draghandle{position:absolute;cursor:move;background-color:#fff;opacity:.01;z-index:15;pointer-events:auto;border:2px solid #fff}.luckysheet-cs-draghandle-top{top:-4px;left:-2px;right:-2px;height:2px}.luckysheet-cs-draghandle-bottom{right:0;left:-2px;bottom:-4px;height:2px}.luckysheet-cs-draghandle-left{top:0;left:-4px;bottom:0;width:2px}.luckysheet-cs-draghandle-right{top:0;right:-4px;bottom:0;width:2px}.luckysheet-cs-touchhandle{display:none;position:absolute;width:16px;height:16px;padding:5px;z-index:100;pointer-events:auto;touch-action:auto}.luckysheet-cs-touchhandle:before{content:"";display:block;width:16px;height:16px;border:.5px solid rgba(0,0,0,.15);background-color:#fff;box-sizing:border-box;border-radius:50%}.luckysheet-cs-touchhandle-lt{left:-13px;top:-13px}.luckysheet-cs-touchhandle-lb{left:-13px;bottom:-13px}.luckysheet-cs-touchhandle-rt{right:-13px;top:-13px}.luckysheet-cs-touchhandle-rb{right:-13px;bottom:-13px}.luckysheet-cs-touchhandle .luckysheet-cs-touchhandle-btn{position:absolute;width:10px;height:10px;left:8px;top:8px;background-color:#018ffb;background-position:50%;box-sizing:border-box;border-radius:50%;z-index:11}.luckysheet-input-box{position:absolute;font:normal normal 400 13px arial,sans,sans-serif;z-index:15;display:flex;flex-direction:column}.luckysheet-input-box-inner{font:normal normal 400 13px arial,sans,sans-serif;text-align:left;max-height:9900px;max-width:9900px;border:1px solid #5292f7;padding:0 2px;margin:0;resize:none;overflow:hidden;white-space:pre-wrap;outline:none;-webkit-box-shadow:0 2px 5px rgba(0,0,0,.4);-moz-box-shadow:0 2px 5px rgba(0,0,0,.4);box-shadow:0 2px 5px rgba(0,0,0,.4);word-wrap:break-word;background-color:#fff;font-size:13px;right:auto;overflow-y:auto;box-sizing:border-box}.luckysheet-cell-input{width:100%;margin:0;outline:none;cursor:text;white-space:pre-wrap}.luckysheet-formula-text-color{color:#000}.luckysheet-formula-text-string{color:#228b22}.luckysheet-cell-flow{margin:0;padding:0;border:0;position:relative;touch-action:manipulation}.luckysheet-cell-flow-clip{border-collapse:collapse;width:5000000px;touch-action:manipulation;overflow:hidden}.luckysheet-cell-flow-col{margin:0;padding:0;border:0;position:relative;touch-action:manipulation;overflow:hidden;float:left;direction:ltr}.luckysheet-cell-sheettable{position:relative;text-align:left;font-size:11pt;color:#000;text-decoration:none}.luckysheet-bottom-controll-row{position:absolute;bottom:30px;left:0;z-index:1000}#luckysheet-bottom-add-row{padding:5px 20px;margin-right:5px;margin-top:-2px}#luckysheet-bottom-add-row-input{width:40px;min-width:40px}#luckysheet-bottom-return-top{padding:5px 6px;margin-left:10px;margin-top:-2px}.luckysheet-cell-flow-column{position:absolute;height:inherit;width:inherit;top:0;left:0;z-index:1;touch-action:manipulation}.luckysheet-cell-flow-column-line{position:absolute;border-right:1px solid #d4d4d4;height:inherit}.luckysheet-cell-flow-row{text-align:left;position:absolute;height:inherit;width:inherit;top:0;left:0;z-index:1;touch-action:manipulation}.luckysheet-cell-flow-row-line{position:absolute;border-bottom:1px solid #d4d4d4;width:inherit}.leankylin-change-size-line,.leankylin-cols-change-size,.leankylin-cols-freeze-handle,.leankylin-freeze-drag-line,.leankylin-rows-change-size,.leankylin-rows-freeze-handle{-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;position:absolute;z-index:12}.leankylin-cols-change-size{width:5px;height:100%;background:#0188fb;cursor:ew-resize;opacity:0}.leankylin-rows-change-size{width:100%;height:5px;background:#0188fb;cursor:ns-resize;opacity:0}.leankylin-change-size-line{border-color:#0188fb;border-style:solid;z-index:15;cursor:ew-resize}.leankylin-cols-freeze-handle{position:absolute;left:0;width:3px;height:100%;background-color:#ddd;cursor:grab;z-index:20}.leankylin-cols-freeze-handle-disabled{cursor:no-drop}.leankylin-rows-freeze-handle{position:absolute;top:0;height:3px;width:100%;background-color:#ddd;cursor:grab;z-index:20}.leankylin-rows-freeze-handle-disabled{cursor:no-drop}.leankylin-freeze-drag-line{border-color:#ccc;border-style:solid;z-index:15;cursor:ew-resize}.luckysheet-postil-show-main{cursor:grab}.luckysheet-postil-show-main:active{cursor:grabbing}.luckysheet-postil-dialog-move{position:absolute;margin:0;padding:0;top:0;left:0;bottom:0;right:0;pointer-events:none}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item{position:absolute;pointer-events:all;cursor:move}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-t{width:100%;height:10px;left:0;top:-4px}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-r{width:10px;height:100%;right:-4px;top:0}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-b{width:100%;height:10px;left:0;bottom:-4px}.luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-l{width:10px;height:100%;left:-4px;top:0}.luckysheet-postil-show-active .luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item{border-color:#0188fb}.luckysheet-postil-dialog-resize{position:absolute;margin:0;padding:0;top:-2px;left:-2px;bottom:-2px;right:-2px;pointer-events:none}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item{position:absolute;height:10px;width:10px;pointer-events:all;background-color:#3b82f4;border:2px solid #fff;border-radius:50%}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lt{left:-6px;top:-6px;cursor:nw-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-mt{left:50%;top:-6px;margin-left:-4px;cursor:n-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lm{top:50%;left:-6px;margin-top:-4px;cursor:w-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rm{top:50%;right:-6px;margin-top:-4px;cursor:e-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rt{right:-6px;top:-6px;cursor:ne-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lb{left:-6px;bottom:-6px;cursor:sw-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-mb{left:50%;bottom:-6px;margin-left:-4px;cursor:s-resize}.luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rb{right:-6px;bottom:-6px;cursor:se-resize}.leankylin-selection-copy-top{left:0;right:0;height:2px;top:0;background-position:bottom}.leankylin-selection-copy-right{top:0;bottom:0;width:2px;right:0}.leankylin-selection-copy-bottom{left:0;right:0;height:2px;bottom:0}.leankylin-selection-copy-left{top:0;bottom:0;width:2px;left:0;background-position:100%}.leankylin-selection-copy-hc{position:absolute;top:0;right:0;bottom:0;left:0;border:2px dashed #12a5ff;z-index:8}.luckysheet-modal-dialog-resize{position:absolute;border:2px solid #0188fb;margin:0;padding:0;top:-2px;left:-2px;bottom:-2px;right:-2px;pointer-events:none}.luckysheet-modal-dialog-resize-item{position:absolute;height:6px;width:6px;background:#fff;border:2px solid #0188fb;pointer-events:all;border-radius:6px}.luckysheet-modal-dialog-resize-item-lt{left:-6px;top:-6px;cursor:se-resize}.luckysheet-modal-dialog-resize-item-mt{left:50%;top:-6px;margin-left:-4px;cursor:s-resize}.luckysheet-modal-dialog-resize-item-rt{right:-6px;top:-6px;cursor:ne-resize}.luckysheet-modal-dialog-resize-item-lm{top:50%;left:-6px;margin-top:-4px;cursor:w-resize}.luckysheet-modal-dialog-resize-item-rm{top:50%;right:-6px;margin-top:-4px;cursor:w-resize}.luckysheet-modal-dialog-resize-item-lb{left:-6px;bottom:-6px;cursor:ne-resize}.luckysheet-modal-dialog-resize-item-mb{left:50%;bottom:-6px;margin-left:-4px;cursor:s-resize}.luckysheet-modal-dialog-resize-item-rb{right:-6px;bottom:-6px;cursor:se-resize}.leankylin-formula-functionrange-highlight .leankylin-copy{background-image:none;background:#0188fb;position:absolute;z-index:18;cursor:move;opacity:.9;box-sizing:content-box}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-top{top:-2px;border-top:2px solid #fff;border-bottom:2px solid #fff}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-right{right:-2px;border-left:2px solid #fff;border-right:2px solid #fff}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-bottom{bottom:-2px;border-top:2px solid #fff;border-bottom:2px solid #fff}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-left{left:-2px;border-left:2px solid #fff;border-right:2px solid #fff}.leankylin-formula-functionrange-highlight .leankylin-selection-copy-hc{border:2px solid #5e5e5e;opacity:.03;z-index:auto}.leankylin-selection-highlight-lt{left:-3px;top:-3px;cursor:se-resize}.leankylin-selection-highlight-rt{right:-3px;top:-3px;cursor:ne-resize}.leankylin-selection-highlight-lb{left:-3px;bottom:-3px;cursor:ne-resize}.leankylin-selection-highlight-rb{right:-3px;bottom:-3px;cursor:se-resize}.leankylin-formula-functionrange-highlight .luckysheet-highlight{position:absolute;z-index:19;border:1px solid #fff;background:#0188fb;width:6px;height:6px}.leankylin-presence-username{position:absolute;padding:2px 6px;left:-2px;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;box-sizing:content-box;color:#fff}.leankylin-presence-selection{position:absolute;border-style:solid;border-width:1;opacity:.7}.luckysheet-filter-options{color:#897bff;cursor:pointer;position:absolute;z-index:200;border:1px solid #897bff;border-radius:3px;top:3px;margin-left:0;display:"block";padding:0 4px;font-size:12px;height:15px;background:#fff}.luckysheet-filter-options:hover{color:#fff;border:1px solid #fff;background:#897bff}.luckysheet-filter-options-active{color:#fff;border:1px solid #897bff;padding:0 1px;background:#897bff}.caret{margin-top:6px;width:0;height:0;display:inline-block;border:4px solid transparent}.caret.down{border-top-color:#897bff}.luckysheet-filter-options:hover .caret.down{border-top-color:#fff}.luckysheet-filter-selected{background:hsla(0,0%,100%,0);border-radius:4px}#luckysheet-dataVerification-showHintBox{display:none;padding:10px;background-color:#fff;border:1px solid #ccc;box-shadow:0 2px 4px rgba(0,0,0,.2);position:absolute;z-index:1000;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:default;white-space:nowrap;font-size:12px}#luckysheet-dataVerification-dropdown-btn{display:none;width:20px;height:20px;background-color:#fff;position:absolute;z-index:10;overflow:hidden}.luckysheet-formula-search-c{position:absolute;border:1px solid rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2);color:#535353;font-size:12px;background:#fff;z-index:1003;width:300px;max-height:300px;overflow:auto}.luckysheet-formula-search-c .luckysheet-formula-search-item{background:#fff;padding:5px 10px;cursor:pointer}.luckysheet-formula-search-c .luckysheet-formula-search-item .luckysheet-formula-search-detail{display:none;color:#444}.luckysheet-formula-search-c .luckysheet-formula-search-item .luckysheet-formula-search-func{color:#222;font-size:14px}.luckysheet-formula-search-c .luckysheet-formula-search-item-active{display:block;border-top:1px solid #ebebeb;border-bottom:1px solid #ebebeb;background:#f5f5f5}.luckysheet-formula-search-c .luckysheet-formula-search-item-active .luckysheet-formula-search-detail{display:block}.luckysheet-formula-help-c{position:absolute;border:1px solid rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2);color:#535353;font-size:12px;background:#fff;z-index:1003;width:300px}.luckysheet-formula-help-c .luckysheet-formula-help-content{max-height:300px;overflow-y:scroll}.luckysheet-formula-help-content-example{margin-top:5px}.luckysheet-formula-help-title{display:block;border-top:1px solid #ebebeb;border-bottom:1px solid #ebebeb;background:#f5f5f5;padding:2px 10px;font-size:14px}.luckysheet-formula-help-title-formula{width:250px;word-break:break-word}.luckysheet-arguments-help-section{margin-top:5px;margin-bottom:5px;color:#222}.luckysheet-arguments-help-section-title{padding:1px 10px;color:#666}.luckysheet-arguments-help-parameter-content{padding:1px 10px;display:inline-block;word-wrap:break-word}.luckysheet-arguments-help-formula{padding:1px 10px;font-size:14px}.luckysheet-arguments-help-parameter-active{background-color:#fff9b2}.luckysheet-formula-help-collapse{position:absolute;top:0;right:25px;font-size:16px;cursor:pointer;color:#bbb}.luckysheet-formula-help-close{position:absolute;top:0;right:5px;font-size:16px;cursor:pointer;color:#bbb}.luckysheet-formula-help-close:hover,.luckysheet-formula-help-collapse:hover{color:#555}.luckysheet-scrollbar-ltr{position:absolute;overflow:hidden;z-index:1003}.luckysheet-scrollbar-ltr div{height:1px;width:1px}.luckysheet-scrollbar-x{bottom:0;overflow-x:auto}.luckysheet-scrollbar-y{right:0;top:0;overflow-y:auto}.luckysheet-scrollbar-ltr::-webkit-scrollbar{background-color:transparent;width:8px;height:8px}.luckysheet-scrollbar-ltr::-webkit-scrollbar-track{background-color:transparent}.luckysheet-scrollbar-ltr::-webkit-scrollbar-thumb{background-color:#babac0;border-radius:16px}.luckysheet-scrollbar-ltr::-webkit-scrollbar-button{display:none}.leankylin-dialog{max-width:90%;max-height:90%;overflow:scroll;border-radius:6px;background:#fff;box-shadow:5px 5px 30px rgba(0,0,0,.1);box-sizing:border-box;overflow:auto}.leankylin-dialog-box-button-container{display:flex;align-items:center;justify-content:center}.leankylin-dialog-box-content{padding:0 25px}.leankylin-dialog-box-button-container{padding-top:10px;padding-bottom:20px}.leankylin-message-box-button{display:inline-flex;align-items:center;padding:6px 12px;margin:0 8px;border:none;border-radius:4px;font-size:14px;line-height:20px;outline:none;cursor:pointer}.leankylin-message-box-button.button-default{color:#262a33;background-color:#fff;border:1px solid #ebebeb}.leankylin-message-box-button.button-primary{color:#fff;background-color:#0188fb}.leankylin-modal-dialog-header{outline:0;display:flex;justify-content:flex-end}.leankylin-modal-dialog-icon-close{color:#d4d4d4;opacity:.3}.leankylin-modal-dialog-icon-close:hover{opacity:.7}#leankylin-search-replace{position:absolute;padding:30px 42px;z-index:1002}#leankylin-search-replace .icon-close{position:absolute;right:3px;top:3px}#leankylin-search-replace .tabBox{margin-top:10px;font-size:0}#leankylin-search-replace .tabBox span{display:inline-block;text-align:center;width:100px;border:1px solid #ebebeb;font-size:14px;line-height:2}#leankylin-search-replace .tabBox span.on{background-color:#8c89fe;border-color:#726efe;color:#fff}#leankylin-search-replace .ctBox{padding:5px 10px;border:1px solid #ebebeb;font-size:14px;min-width:500px}#leankylin-search-replace .ctBox .row{display:flex;flex-direction:row;justify-content:space-between}#leankylin-search-replace .inputBox{height:90px;position:relative}#leankylin-search-replace .inputBox .textboxs{height:30px;line-height:30px}#leankylin-search-replace .checkboxs{height:90px}#leankylin-search-replace .checkboxs div{height:30px;line-height:30px}#leankylin-search-replace .checkboxs input[type=checkbox]{float:left;margin-top:9px}#leankylin-search-replace .btnBox{margin-top:10px}#leankylin-search-replace .btnBox .button-default{margin-right:8px;margin-left:0}#leankylin-search-replace .close-button{margin-left:0;margin-top:10px}#leankylin-search-replace #searchAllbox{height:210px;border:1px solid #d4d4d4;margin-top:10px;overflow-y:auto;position:relative}#leankylin-search-replace #searchAllbox .boxTitle{width:100%;height:30px;line-height:29px;padding:0 5px;background-color:#fff;border-bottom:1px solid #d4d4d4;box-sizing:border-box;position:sticky;left:0;top:0}#leankylin-search-replace #searchAllbox .boxTitle span{display:inline-block;text-align:center}#leankylin-search-replace #searchAllbox .boxTitle span:first-of-type,#leankylin-search-replace #searchAllbox .boxTitle span:nth-of-type(2){width:25%}#leankylin-search-replace #searchAllbox .boxTitle span:nth-of-type(3){width:50%}#leankylin-search-replace #searchAllbox .boxMain .boxItem{height:30px;line-height:29px;border-bottom:1px solid #d4d4d4;padding:0 5px;box-sizing:border-box}#leankylin-search-replace #searchAllbox .boxMain .boxItem.on{background-color:#8c89fe;color:#fff}#leankylin-search-replace #searchAllbox .boxMain .boxItem span{display:block;text-align:center;float:left}#leankylin-search-replace #searchAllbox .boxMain .boxItem span:first-of-type,#leankylin-search-replace #searchAllbox .boxMain .boxItem span:nth-of-type(2){width:25%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#leankylin-search-replace #searchAllbox .boxMain .boxItem span:nth-of-type(3){width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.leankylin-link-modify-modal{position:absolute;overflow:hidden;background-color:#fff;z-index:300;padding:6px 20px 10px;box-shadow:0 2px 6px 0 rgba(0,0,0,.16);border:.5px solid #e5e5e5;border-radius:6px}.leankylin-link-modify-modal.link-toolbar{display:flex;flex-direction:row;padding:2px 8px 2px 16px;align-items:center}.leankylin-link-modify-modal .link-content{margin-right:6px}.leankylin-link-modify-modal .link-content:hover{color:#2674fb;cursor:pointer}.leankylin-link-modify-modal .divider{width:1px;height:16px;margin:0 6px;background-color:#e0e0e0;flex-shrink:0}.leankylin-link-modify-modal .leankylin-toolbar-button{padding:6px}.leankylin-link-modify-modal .leankylin-toolbar-button:hover{background-color:rgba(0,0,0,.06);cursor:pointer}.leankylin-link-modify-modal.range-selection-modal{width:380px;padding:22px;-webkit-user-select:auto;-moz-user-select:auto;user-select:auto;background-color:#fff}.leankylin-link-modify-line{padding-top:10px}.leankylin-link-modify-title{font-size:12px;display:inline-block;height:16px;width:74px;line-height:16px;padding:7px 0;color:#333;margin-right:6px}.leankylin-link-modify-input,.leankylin-link-modify-select{width:232px;box-sizing:border-box;height:26px;border-radius:5px;border:1px solid #d9d9d9;font-size:12px;padding:1px 8px;outline:none;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.leankylin-link-modify-input:focus,.leankylin-link-modify-modal .range-selection-input:focus{border-color:#4d90fe}.leankylin-link-modify-input.error-input,.leankylin-link-modify-modal .range-selection-input.error-input{border:1px solid #ef4e2f!important}.leankylin-link-modify-cell-selector{width:20px;right:24px;padding:4px;position:absolute;display:inline-block;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.leankylin-link-modify-modal .modal-title{font-weight:500;font-size:16px;color:rgba(0,0,0,.88);margin-bottom:12px;line-height:24px}.leankylin-link-modify-modal .range-selection-input{display:block;outline:none;font-size:14px;height:32px;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;padding:7px 11px;border:1px solid #e0e0e0;border-radius:4px;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}.leankylin-link-modify-modal .modal-icon-close{position:absolute;right:22px;top:22px;cursor:pointer}.leankylin-link-modify-modal .validation-input-tip{height:17px;font-size:12px;color:#ef4e2f;margin:3px 0}.leankylin-link-modify-modal .button-group{display:flex}.leankylin-link-modify-modal .modal-footer{display:flex;justify-content:flex-end;padding:0 0 5px}.leankylin-link-modify-modal.range-selection-modal .modal-footer{padding:0}.leankylin-link-modify-modal .button-basic{display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;font-size:14px;height:32px;width:88px;padding:0;border-radius:4px;cursor:pointer}.leankylin-link-modify-modal .button-default{color:#262a33;background-color:#fff;border:1px solid #ebebeb}.leankylin-link-modify-modal .button-primary{color:#fff;background-color:#0188fb;margin-left:14px}#leankylin-data-verification{min-width:500px;padding:10px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}#leankylin-data-verification .title{font-size:16px}#leankylin-data-verification .box{font-size:14px}#leankylin-data-verification .box .box-item{padding:10px;border-bottom:1px solid #e1e4e8}#leankylin-data-verification .box .box-item .box-item-title{font-size:14px;font-weight:600;margin-bottom:10px}#leankylin-data-verification .box .box-item .data-verification-range{width:100%;height:30px;border:1px solid #d4d4d4}#leankylin-data-verification .box .box-item .show-box-item{margin-top:6px;font-size:12px}#leankylin-data-verification .box .box-item .show-box-item .check-box{height:30px;line-height:30px;margin-bottom:10px}#leankylin-data-verification .box .box-item .show-box-item .check-box input{height:30px;padding:0 10px;border:1px solid #d4d4d4;box-sizing:border-box}#leankylin-data-verification .input-box input{height:30px;padding:4px 10px;border:1px solid #d4d4d4;box-sizing:border-box;margin-top:6px}#leankylin-data-verification .input-box span{margin:0 16px}.data-verification-range .formulaInputFocus{width:calc(100% - 30px);height:30px;padding:0 10px px;float:left;border:none;outline-style:none;box-sizing:border-box}.data-verification-range .icon{float:right;margin-top:4px;margin-right:5px;cursor:pointer}#leankylin-data-verification .box .box-item .data-verification-type-select{width:100%;height:30px;border-color:#d4d4d4;outline-style:none}#leankylin-data-verification .box .box-item .check{font-size:12px;line-height:24px}#leankylin-data-verification .box .box-item .check input{vertical-align:text-top}#leankylin-data-verification .button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-top:10px}#leankylin-data-verification .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}#leankylin-data-verification .button-close{color:#333;background-color:#fff;border:1px solid #ccc;margin-right:10px}#range-dialog{box-shadow:0 4px 16px rgba(0,0,0,.2);background:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.333);outline:0;position:absolute;color:#000;padding:30px 42px;z-index:100003;left:50%;top:50%;transform:translate(-50%,-90%);-webkit-user-select:none;-moz-user-select:none;user-select:none}#range-dialog .dialog-title{background-color:#fff;color:#000;cursor:default;font-size:16px;font-weight:400;line-height:24px;margin:0 0 16px}#range-dialog input{height:30px;padding:0 10px;border:1px solid #d4d4d4;outline-style:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}#range-dialog .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}#range-dialog .button-close{color:#333;background-color:#fff;border:1px solid #ccc;margin-right:10px}#luckysheet-dataVerification-dropdown-List{background-color:#fff;border:1px solid #ccc;box-shadow:0 2px 4px rgba(0,0,0,.2);position:absolute;z-index:10000;box-sizing:border-box;font-size:12px}#luckysheet-dataVerification-dropdown-List .dropdown-List-item{padding:5px 10px;box-sizing:border-box;cursor:pointer}#luckysheet-dataVerification-dropdown-List .dropdown-List-item:hover{background-color:#e1e1e1}.condition-format-sub-menu{position:absolute;top:-8px;box-shadow:0 2px 4px rgba(0,0,0,.2);background:#fff;border:1px solid rgba(0,0,0,.2);cursor:default;font-size:12px;z-index:1004;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;outline:none}.condition-format-item{display:flex;justify-content:space-between;padding:6px 18px;z-index:1005}.condition-format-item:hover{background:#efefef}.condition-format-item span{font-size:10px;color:#afafaf}.horizontal-line{border-top:1px solid #ebebeb;margin-top:6px;margin-bottom:6px}.condition-rules .button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-top:10px}.condition-rules .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}.condition-rules .button-close{color:#333;background-color:#fff;border:1px solid #ccc}.condition-rules{padding:0 42px 34px;font-size:12px}.condition-rules-title{color:#000;cursor:default;font-size:16px;margin-bottom:18px}.conditin-rules-value{margin:5px 0;font-weight:600}.condition-rules-inpbox{width:198px;height:28px;border:1px solid #d4d4d4}.condition-rules-input{width:150px;height:28px;padding:0 10px;border:none;outline-style:none;float:left}.condition-relues-inputicon{float:right;margin-top:2px;margin-right:5px;cursor:pointer}.condition-rules-set-title{margin:6px 0}.condition-rules-setbox{border:1px solid #d4d4d4}.condition-rules-set{padding:5px 10px}.condition-rules-color{height:30px;line-height:30px;position:relative}.condition-rules-check{float:left;margin-top:10px}.condition-rules-label{display:inline-block;width:80px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.condition-rules-select-color{padding:2px;border:1px solid #e5e5e5;background:#f5f5f5;position:absolute;top:50%;left:50%;transform:translate(20%,-50%)}.condition-rules-between-box{display:flex;align-items:center}.condition-rules-between-inpbox{width:108px;height:28px;border:1px solid #d4d4d4}.condition-rules-between-input{width:60px;height:28px;padding:0 10px;border:none;outline-style:none;float:left}.condition-rules-date{width:98%;border:none;line-height:26px}.condition-rules-select{width:150px;height:30px}.condition-rules-project-box{display:flex;align-items:center}.condition-rules-project-input{margin:0 6px}.leankylin-cell-option{position:absolute;left:46px;top:20px;z-index:1;width:calc(100% - 46px);height:calc(100% - 20px);overflow:hidden;pointer-events:none}.leankylin-cell-option-item{pointer-events:all}.leankylin-toolbar{display:flex;flex-direction:row;background:#fff;position:relative;padding:5px 0 3px 15px;border-bottom:1px solid #d4d4d4;white-space:nowrap;align-items:center}.leankylin-toolbar-divider{width:1px;height:20px;margin:0 6px;background-color:#e0e0e0;flex-shrink:0}.leankylin-toolbar-menu-line{display:flex;align-items:center;justify-content:space-between;position:relative}.leankylin-toolbar-menu-divider{width:"100%";height:1px;margin:2px 6px;background-color:#e0e0e0}.leankylin-toolbar-button,.leankylin-toolbar-combo{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:0;outline:none;list-style:none;text-decoration:none;display:flex;align-items:center;padding:2px;margin:2px 4px}.leankylin-toolbar-combo-arrow,.leankylin-toolbar-combo-button{display:flex;align-items:center;padding:0 6px}.leankylin-toolbar-button:hover,.leankylin-toolbar-combo-arrow:hover,.leankylin-toolbar-combo:hover{background-color:rgba(0,0,0,.06);cursor:pointer}.leankylin-toolbar-button:active,.leankylin-toolbar-combo:active{background-color:rgba(0,0,0,.12);cursor:pointer}.leankylin-toobar-combo-container{position:relative}.leankylin-toolbar-combo-popup{position:absolute;white-space:nowrap;top:32px;left:0;z-index:1004}.leankylin-toolbar-color-picker,.leankylin-toolbar-select{box-shadow:2px 2px 10px rgba(0,0,0,.2);padding:10px;border-radius:6px;background:#fff}.leankylin-toolbar-select{padding-left:0;padding-right:0;overflow:auto;max-height:75vh}.leankylin-toolbar-combo-button{font-size:12px}.leankylin-toolbar-select-option{font-size:12px;min-width:60px;padding:8px 12px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leankylin-toolbar-select-option:hover{background:#efefef}.leankylin-toolbar-select::-webkit-scrollbar{display:none}.leankylin-toolbar-color-picker-row{display:flex;flex-direction:row}.leankylin-toolbar-combo-text{margin:0 4px}.leankylin-toolbar-color-picker-item{width:16px;height:16px;margin:1px;cursor:pointer}.leankylin-tooltip{visibility:hidden;background-color:#666;color:#fff;text-align:center;border-radius:2px;padding:6px;font-size:12px;position:absolute;z-index:25;top:40px;white-space:nowrap}.leankylin-toolbar-button:hover .leankylin-tooltip,.leankylin-toolbar-combo:hover .leankylin-tooltip{visibility:visible}.leankylin-toolbar-more-container{position:absolute;display:flex;flex-direction:row;align-items:center;align-self:flex-end;margin-right:40px;top:40px;max-width:348px;box-shadow:2px 2px 10px rgba(0,0,0,.2);background:#fff;flex-wrap:wrap;z-index:1002}.leankylin-toolbar-subtext{-webkit-transition:all .218s;-moz-transition:all .218s;-o-transition:all .218s;transition:all .218s;left:auto;padding-top:1px;padding-left:24px;text-align:right;opacity:.5;filter:alpha(opacity=50);color:#000;font-family:Arial;line-height:100%}.leankylin-toolbar-subtext,.toolbar-item-sub-menu{font-size:12px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.toolbar-item-sub-menu{position:absolute;background:#fff;cursor:default;z-index:1004;box-sizing:border-box;outline:none}#leankylin-custom-color,.toolbar-item-sub-menu{box-shadow:0 2px 4px rgba(0,0,0,.2);border:1px solid rgba(0,0,0,.2);border-radius:6px}#leankylin-custom-color{min-width:164px;background:#f0f0f0;font-size:12px}#leankylin-custom-color .color-reset{position:relative;color:#333;cursor:pointer;list-style:none;white-space:nowrap;vertical-align:middle;padding:10px 24px 10px 8px;-webkit-user-select:none;-moz-user-select:none;user-select:none;border-radius:6px;background:#fff}#leankylin-custom-color .color-reset:hover{background:#e6e6e6}#leankylin-custom-color .custom-color{position:relative;padding:10px;border-radius:6px;background:#fff;align-items:center;margin:1px 0;display:flex;justify-content:space-around}.button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:12px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:-4px}.leankylin-border-select-menu{position:absolute;bottom:0}.leankylin-border-color-preview{height:3px}.leankylin-border-select-option{font-size:12px;height:24px;line-height:24px;min-width:60px;padding:8px 12px}.leankylin-border-select-option:hover{background:#efefef;cursor:pointer}.leankylin-border-style-preview{height:3px;overflow:hidden}.leankylin-border-style-picker-menu{padding:0 10px}.leankylin-border-style-picker-menu:hover{background:#efefef;cursor:pointer}#luckysheet-search-formula{font-size:12px}#luckysheet-search-formula .inpbox{margin-bottom:5px}#luckysheet-search-formula .inpbox div{display:block;margin-bottom:5px}#luckysheet-search-formula .inpbox input{width:100%;height:24px;line-height:24px;border:1px solid #d4d4d4;padding:0 10px;box-sizing:border-box;font-size:12px}#luckysheet-search-formula .selbox{margin-bottom:5px}#luckysheet-search-formula .selbox select{width:50%;height:24px;line-height:24px;border:1px solid #d4d4d4;box-sizing:border-box;font-size:12px}#luckysheet-search-formula .listbox label{display:block;margin-bottom:5px}#formulaTypeList,.formulaList{width:300px;height:170px;border:1px solid #d4d4d4;overflow-y:scroll}.listBox{padding:5px;border-bottom:1px solid #d4d4d4}.listBox.on{background-color:#8c89fe;color:#fff}#leankylin-split-column{min-width:500px}#leankylin-split-column label{-webkit-user-select:none;-moz-user-select:none;user-select:none}#leankylin-split-column .title{font-size:16px}#leankylin-split-column .splitDelimiters{margin-top:10px}#leankylin-split-column .splitSymbols{position:relative;border:1px solid #dfdfdf;padding:5px;margin:5px 0}#leankylin-split-column .splitSymbol{font-size:14px}#leankylin-split-column .splitSimple{position:absolute;top:114px;left:0}#leankylin-split-column #otherValue{margin-left:5px;width:50px;padding:0 5px}#leankylin-split-column .splitDataPreview{font-size:14px;margin-top:26px}#leankylin-split-column .splitColumnData{border:1px solid #dfdfdf;padding:5px;margin:5px 0;height:100px;overflow-y:scroll}#leankylin-split-column .button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none}#leankylin-split-column .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}#leankylin-split-column .button-close{color:#333;background-color:#fff;border:1px solid #ccc}#leankylin-split-column table{border-collapse:collapse}#leankylin-split-column tr{display:table-row;vertical-align:inherit;border-color:inherit}#leankylin-split-column td{border:1px solid #333;display:table-cell;vertical-align:inherit}label{cursor:default}#leankylin-location-condition{min-width:500px}#leankylin-location-condition .title{background-color:#fff;color:#000;cursor:default;font-size:16px;font-weight:400;line-height:48px}#leankylin-location-condition .listbox{border:1px solid #dfdfdf;padding:10px;font-size:14px;color:#000}#leankylin-location-condition .listbox .listItem{padding:5px 0}#leankylin-location-condition .listbox .listItem input[type=radio]{float:left;margin-top:5px}#leankylin-location-condition .listItem{padding:5px 0}#leankylin-location-condition .listItem .subItem{height:30px;padding:0 10px;display:block}#leankylin-location-condition input[type=radio]{float:left;margin-top:3px}#leankylin-location-condition .listbox .listItem .subbox{height:30px;padding:0 10px}#leankylin-location-condition .listbox .listItem .subbox .subItem{float:left;margin-right:5px}#leankylin-location-condition .button-basic{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;white-space:nowrap;padding:4px 8px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-top:10px}#leankylin-location-condition .button-primary{background:#0188fb;border:1px solid #0188fb;color:#fff;margin-right:10px}#leankylin-location-condition .button-close{color:#333;background-color:#fff;border:1px solid #ccc}.listBox{display:flex;justify-content:space-between}.inpbox{margin-bottom:10px}.decimal-places-input{width:70px}.format-list{width:300px;height:170px;border:1px solid #d4d4d4;overflow-y:scroll}.leankylin-fx-editor{display:flex;flex-direction:row;height:28px;border-bottom:1px solid #d4d4d4}.leankylin-fx-icon{display:flex;align-items:center;margin:0 12px}.leankylin-name-box-container{width:99px;border-right:1px solid #d4d4d4;font-size:14px;display:flex;align-items:center}.leankylin-name-box{width:100%;text-align:center;margin:0;outline:none;cursor:text;white-space:nowrap;overflow:hidden;-webkit-transform:translateZ(0);background-color:#fff;word-wrap:break-word;-webkit-nbsp-mode:space;-webkit-line-break:after-white-space}.leankylin-fx-input-container{overflow:visible;padding:0;flex:1;display:flex;align-items:center;position:relative;border-left:1px solid #e5e5e5}.leankylin-fx-input{flex:1;height:100%;overflow:hidden;padding-left:2px;font-size:14px;line-height:14px;margin:0;outline:none;cursor:text;white-space:pre-wrap;word-wrap:break-word;-webkit-transform:translateZ(0);-webkit-nbsp-mode:space;-webkit-line-break:after-white-space;background-color:#fff;padding-top:7px;box-sizing:border-box;color:#000;text-align:left}.leankylin-fx-input[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.luckysheet-sheet-area{width:100%;box-sizing:border-box;background-color:#fff;color:#444;height:36px;padding:4px 30px 4px 44px;margin:0;-webkit-touch-callout:none;cursor:default;transition:all .3s ease;display:flex;align-items:center;justify-content:space-between;position:relative;border-top:1px solid #e3e5ea}#luckysheet-sheet-content{width:0;flex:3;display:flex;align-items:center}#luckysheet-bottom-pager{width:0;background-color:#fafafc;z-index:1;flex:2;text-align:right;white-space:nowrap}.luckysheet-sheet-area .luckysheet-sheets-item,.luckysheet-sheet-area>div{display:inline-block}.leankylin-sheettab-container{padding:0;margin-left:0;position:relative;max-width:54%;vertical-align:bottom;display:inline-block}.leankylin-sheettab-container .boundary{position:absolute;top:0;width:6px;height:100%;z-index:1;background:#fff}.leankylin-sheettab-container .boundary-left{left:0;background-image:linear-gradient(90deg,var(--tw-gradient-stops))}.leankylin-sheettab-container .boundary-left,.leankylin-sheettab-container .boundary-right{--tw-gradient-from:rgba(68,68,68,0.3333333333333333);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,53.3%,0))}.leankylin-sheettab-container .boundary-right{right:0;background-image:linear-gradient(270deg,var(--tw-gradient-stops))}.leankylin-sheettab-container .leankylin-sheettab-container-c{padding:0;margin-left:0;overflow:hidden;white-space:nowrap;position:relative;max-width:100%;vertical-align:bottom;display:inline-block}.luckysheet-sheet-container-menu-hide .luckysheet-sheets-item{padding-right:5px!important}.luckysheet-sheet-container-menu-hide .luckysheet-sheets-item-menu{display:none!important}.luckysheet-sheet-area div.luckysheet-sheets-item{height:28px;line-height:28px;background-color:#fff;color:#676464;min-width:30px;top:0;position:relative;cursor:pointer;transition:all .1s;font-size:13px;box-sizing:border-box;vertical-align:middle;margin:0 6px;border-radius:4px;padding:0 6px}.luckysheet-sheet-area div.luckysheet-sheets-item:last-child{margin-right:1px}.luckysheet-sheet-area div.luckysheet-sheets-item:hover{background-color:#efefef;color:#490500}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-menu{margin-left:2px;display:inline-block;top:-2px;position:relative;color:#a1a1a1;position:absolute;height:100%;width:15px;right:0;text-align:center}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-menu:hover{color:#2a2a2a;cursor:pointer}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-name{padding:0 3px}.luckysheet-sheets-item-color{width:100%;height:10%;position:absolute;bottom:0;left:0}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-name[contenteditable=true]{border:1px solid #d9d9d9;display:inline-block;height:18px;line-height:18px;min-width:8px;margin:-4px -1px;-moz-user-modify:read-write-plaintext-only;-webkit-user-modify:read-write-plaintext-only;-moz-user-select:text!important;-ms-user-select:text!important;-webkit-user-select:text!important}.luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-name[contenteditable=true]:focus{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3);border:1px solid #4d90fe;outline:none}.luckysheet-sheet-area div.luckysheet-sheets-item-active{height:28px;line-height:28px;background-color:#efefef;border-top-color:#fff;color:#222;cursor:default}.luckysheet-sheet-area div.luckysheet-sheets-item-active:hover{background-color:#ececec;color:#222}.leankylin-sheettab-button{cursor:pointer;border-radius:4px;margin:0 6px}.leankylin-sheettab-button,.leankylin-sheettab-button:hover{display:flex;align-items:center;justify-content:center;height:28px;width:28px}.leankylin-sheettab-button:hover{background-color:#efefef}.luckysheet-noselected-text{-moz-user-select:-moz-test;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.leankylin-sheettab-scroll{display:flex;align-items:center;padding:0 5px;height:28px;cursor:pointer}.leankylin-sheettab-scroll:hover{background-color:#e0e0e0}.leankylin-sheettab-placeholder{display:inline-block;width:30px;height:28px;line-height:28px;vertical-align:middle}.sheet-list-container{overflow:visible;display:flex;flex-direction:column;justify-content:flex-end}.luckysheet-sheet-selection-calInfo{display:flex;font-size:12px;align-content:center;padding:0 0 0 44px;height:22px;align-self:flex-end}.luckysheet-sheet-selection-calInfo div{white-space:nowrap;margin:auto 7px auto 0}.luckysheet-sheets-item-function{display:none;width:28px;height:28px;position:absolute;text-align:center;top:4px;right:2px;cursor:pointer}.luckysheet-sheets-item-function:hover{background-color:#f1f1f1}.leankylin-sheet-area-right{display:flex!important}.leankylin-zoom-container{white-space:nowrap;overflow:visible;display:flex;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leankylin-zoom-button{display:flex;cursor:pointer;align-items:center;justify-content:center;width:24px;height:24px;border-radius:4px;margin:0 6px}.leankylin-zoom-button:hover{background:#efefef}.leankylin-zoom-ratio{position:relative;display:flex;justify-content:center;color:#1e1e1f;font-size:12px;cursor:pointer}.leankylin-zoom-ratio-current{padding:0 12px;margin:0}.leankylin-zoom-ratio-item:hover{background:#efefef}.leankylin-zoom-ratio-menu{position:absolute;bottom:30px;left:0;line-height:24px;box-shadow:2px 2px 10px rgba(0,0,0,.2);padding:10px 0;border-radius:6px;background:#fff;z-index:1004}.leankylin-zoom-ratio-text{padding:0 10px}.leankylin-context-menu{max-height:100%;overflow-y:auto;border-radius:4px;transition:opacity .218s;background:#fff;cursor:default;font-size:13px;margin:0;outline:none;position:absolute;z-index:1004;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:248px;border-radius:8px;line-height:22px;padding:4px 8px;border:1px solid #e3e5ea;box-shadow:0 0 0 0 transparent,0 0 0 0 transparent,0 0 0 0 transparent}.leankylin-context-menu input.luckysheet-mousedown-cancel{width:48px;text-align:center;margin-left:5px;margin-right:5px;border:1px solid #ccc;height:1.5em;border-radius:4px}.leankylin-context-menu-divider{height:1px;margin:4px 0;background-color:#f1f1f1}.luckysheet-cols-menu .luckysheet-cols-menuitem{position:relative;color:#333;cursor:pointer;list-style:none;margin:0;white-space:nowrap;vertical-align:middle;padding:1px 24px 1px 8px;-webkit-user-select:none;-moz-user-select:none;user-select:none;border-radius:4px}.luckysheet-cols-menu .luckysheet-cols-menuitem-hover,.luckysheet-cols-menu .luckysheet-cols-menuitem:hover{background:#f9fafb}.luckysheet-cols-menu .luckysheet-cols-menuitem .luckysheet-cols-menuitem-content{position:relative;color:#333;cursor:pointer;list-style:none;margin:0;padding:6px 7em 6px 30px;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none}.leankylin-filter-menu .luckysheet-cols-menuitem{padding:0}.leankylin-filter-menu .luckysheet-cols-menuitem .luckysheet-cols-menuitem-content{padding:7px 24px}.leankylin-menuitem-row{display:flex;padding:7px 24px;white-space:pre;align-items:center}.leankylin-byvalue-btn{cursor:pointer;color:#00f;text-decoration:underline}.leankylin-filter-menu .button-basic,.luckysheet-filter-bycolor-submenu .button-basic{display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;font-size:14px;padding:4px 8px;border-radius:4px;cursor:pointer}.luckysheet-filter-bycolor-submenu .button-basic{margin:5px 20px}.leankylin-filter-menu .button-default,.luckysheet-filter-bycolor-submenu .button-default{color:#262a33;background-color:#fff;border:1px solid #ebebeb;margin-left:10px}.leankylin-filter-menu .button-default:hover,.luckysheet-filter-bycolor-submenu .button-default:hover{background-color:#e6e6e6}.leankylin-filter-menu .button-primary,.luckysheet-filter-bycolor-submenu .button-primary{color:#fff;background-color:#0188fb}.leankylin-filter-menu .button-primary:hover,.luckysheet-filter-bycolor-submenu .button-primary:hover{background:#5391ff}.leankylin-filter-menu .button-danger{color:#fff;background-color:#d9534f;margin-left:10px}.leankylin-filter-menu .button-danger:hover{background-color:#c9302c}.filter-bycolor-container{display:flex;justify-content:space-between;align-items:center}.filtermenu-input-container{padding:0}.filtermenu-input-container input.luckysheet-mousedown-cancel{margin:0 20px;width:230px;box-sizing:border-box;height:26px;border-radius:3px;border:1px solid #d9d9d9;font-size:12px;padding:1px 8px;outline:none;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto;text-align:start;border:1px solid #a1a1a1}.filtermenu-input-container input.luckysheet-mousedown-cancel:focus{border:1px solid #0188fb;outline:none}.byvalue-btn-row{justify-content:space-between;padding-bottom:0;align-items:flex-start}.filter-caret{width:0;height:0;display:inline-block;border:4px solid transparent}.filter-caret.right{margin-left:2px;margin-right:3px;border-left-color:#000}.filter-caret.down{margin-top:5px;margin-right:5px;border-top-color:#000}.filter-checkbox{margin-left:0;margin-right:5px}#luckysheet-filter-byvalue-select{min-height:100px;overflow-y:auto;overflow-x:hidden;padding:4px 24px}#luckysheet-filter-byvalue-select .count,#luckysheet-pivotTableFilter-byvalue-select .count{color:grey;margin-left:5px}#luckysheet-filter-byvalue-select .select-item{display:flex;align-items:center}.luckysheet-filter-bycolor-submenu{position:absolute;min-width:170px;font-size:12px;padding:5px 0;z-index:1004;border:1px solid rgba(0,0,0,.2);background-color:#fff}.luckysheet-filter-bycolor-submenu .title{padding:10px;font-weight:600;color:#333;background-color:#f4f4f4;text-align:center}.luckysheet-filter-bycolor-submenu .one-color-tip{padding:7px 30px;text-align:center}.luckysheet-filter-bycolor-submenu .color-list{max-height:128px;overflow:auto}.luckysheet-filter-bycolor-submenu .item{padding:5px 40px 5px 20px;cursor:pointer;position:relative;background-color:#fff}.luckysheet-filter-bycolor-submenu .item:hover{background-color:#d3d3d3}.luckysheet-filter-bycolor-submenu .item .color-label{display:block;width:70px;height:20px;border:1px solid #d1d1d1}.luckysheet-filter-bycolor-submenu .item input[type=checkbox]{position:absolute;right:10px;top:6px}.change-color-triangle{position:absolute;top:3px;right:-18px}.leankylin-sheet-color-change{position:absolute;left:200px;bottom:-100px}.leankylin-sort-title{background-color:#fff;color:#000;cursor:default;font-size:16px;font-weight:400;line-height:24px;margin:0 0 16px}.leankylin-sort-modal>div{margin-bottom:10px}.leankylin-sort-tablec td{padding:5px;white-space:nowrap}.leankylin-sort-button{margin-top:10px;margin-bottom:25px}.leankylin-sheet-list{overflow-y:auto;overflow-x:hidden;min-width:120px;position:absolute;z-index:10002;bottom:53px;margin-left:72px;max-height:60%}.leankylin-sheet-list-item{height:30px;line-height:30px;width:100%;margin-right:46px;cursor:pointer}.leankylin-sheet-list-item-name{margin-right:15px;position:relative}.leankylin-sheet-list-item-name .luckysheet-sheets-list-item-color{width:6%;height:100%;position:absolute;bottom:0;left:-6px}.leankylin-sheet-list :hover{background-color:#efefef}.leankylin-sheet-hidden-button{margin-right:15px;display:inline-flex;position:absolute;right:0;justify-content:flex-end}.leankylin-sheet-hidden-button :hover{background-color:#d0d0d0}.leankylin-sheet-selected-check-sapce{width:20px;display:inline-block;margin-left:15px}
|