@fileverse-dev/fortune-react 1.0.26 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (422) hide show
  1. package/dist/index.css +3915 -0
  2. package/dist/index.esm.css +3915 -0
  3. package/dist/index.esm.js +12975 -0
  4. package/dist/index.js +12995 -0
  5. package/dist/index.umd.css +3915 -0
  6. package/dist/index.umd.js +122445 -0
  7. package/dist/index.umd.min.css +1 -0
  8. package/dist/index.umd.min.js +50 -0
  9. package/dist/packages/core/src/api/cell.d.ts +10 -0
  10. package/dist/packages/core/src/api/common.d.ts +66 -0
  11. package/dist/packages/core/src/api/errors.d.ts +2 -0
  12. package/dist/packages/core/src/api/index.d.ts +9 -0
  13. package/dist/packages/core/src/api/merge.d.ts +5 -0
  14. package/dist/packages/core/src/api/range.d.ts +22 -0
  15. package/dist/packages/core/src/api/rowcol.d.ts +14 -0
  16. package/dist/packages/core/src/api/sheet.d.ts +10 -0
  17. package/dist/packages/core/src/api/workbook.d.ts +15 -0
  18. package/dist/packages/core/src/canvas.d.ts +46 -0
  19. package/dist/packages/core/src/context.d.ts +197 -0
  20. package/dist/packages/core/src/events/copy.d.ts +2 -0
  21. package/dist/packages/core/src/events/index.d.ts +4 -0
  22. package/dist/packages/core/src/events/keyboard.d.ts +6 -0
  23. package/dist/packages/core/src/events/mouse.d.ts +22 -0
  24. package/dist/packages/core/src/events/paste.d.ts +3 -0
  25. package/dist/packages/core/src/index.d.ts +10 -0
  26. package/dist/packages/core/src/locale/en.d.ts +992 -0
  27. package/dist/packages/core/src/locale/es.d.ts +1134 -0
  28. package/dist/packages/core/src/locale/hi.d.ts +1030 -0
  29. package/dist/packages/core/src/locale/index.d.ts +1049 -0
  30. package/dist/packages/core/src/locale/zh.d.ts +1048 -0
  31. package/dist/packages/core/src/locale/zh_tw.d.ts +1187 -0
  32. package/dist/packages/core/src/modules/ConditionFormat.d.ts +17 -0
  33. package/dist/packages/core/src/modules/border.d.ts +3 -0
  34. package/dist/packages/core/src/modules/cell.d.ts +32 -0
  35. package/dist/packages/core/src/modules/clipboard.d.ts +3 -0
  36. package/dist/packages/core/src/modules/color.d.ts +1 -0
  37. package/dist/packages/core/src/modules/comment.d.ts +97 -0
  38. package/dist/packages/core/src/modules/conditionalFormat.d.ts +2 -0
  39. package/dist/packages/core/src/modules/cursor.d.ts +3 -0
  40. package/dist/packages/core/src/modules/dataVerification.d.ts +11 -0
  41. package/dist/packages/core/src/modules/dropCell.d.ts +10 -0
  42. package/dist/packages/core/src/modules/filter.d.ts +45 -0
  43. package/dist/packages/core/src/modules/format.d.ts +6 -0
  44. package/dist/packages/core/src/modules/formula.d.ts +54 -0
  45. package/dist/packages/core/src/modules/freeze.d.ts +5 -0
  46. package/dist/packages/core/src/modules/hyperlink.d.ts +21 -0
  47. package/dist/packages/core/src/modules/iframe.d.ts +12 -0
  48. package/dist/packages/core/src/modules/image.d.ts +31 -0
  49. package/dist/packages/core/src/modules/index.d.ts +36 -0
  50. package/dist/packages/core/src/modules/inline-string.d.ts +36 -0
  51. package/dist/packages/core/src/modules/location.d.ts +6 -0
  52. package/dist/packages/core/src/modules/locationCondition.d.ts +21 -0
  53. package/dist/packages/core/src/modules/merge.d.ts +3 -0
  54. package/dist/packages/core/src/modules/mobile.d.ts +5 -0
  55. package/dist/packages/core/src/modules/moveCells.d.ts +5 -0
  56. package/dist/packages/core/src/modules/protection.d.ts +5 -0
  57. package/dist/packages/core/src/modules/refresh.d.ts +3 -0
  58. package/dist/packages/core/src/modules/rowcol.d.ts +19 -0
  59. package/dist/packages/core/src/modules/screenshot.d.ts +2 -0
  60. package/dist/packages/core/src/modules/searchReplace.d.ts +36 -0
  61. package/dist/packages/core/src/modules/selection.d.ts +46 -0
  62. package/dist/packages/core/src/modules/sheet.d.ts +10 -0
  63. package/dist/packages/core/src/modules/sort.d.ts +7 -0
  64. package/dist/packages/core/src/modules/splitColumn.d.ts +5 -0
  65. package/dist/packages/core/src/modules/text.d.ts +10 -0
  66. package/dist/packages/core/src/modules/toolbar.d.ts +32 -0
  67. package/dist/packages/core/src/modules/validation.d.ts +19 -0
  68. package/dist/packages/core/src/modules/zoom.d.ts +3 -0
  69. package/dist/packages/core/src/settings.d.ts +100 -0
  70. package/dist/packages/core/src/types.d.ts +371 -0
  71. package/dist/packages/core/src/utils/freeze.d.ts +7 -0
  72. package/dist/packages/core/src/utils/index.d.ts +18 -0
  73. package/dist/packages/core/src/utils/patch.d.ts +37 -0
  74. package/{es → dist/packages/react/src}/components/ChangeColor/index.d.ts +7 -7
  75. package/{lib → dist/packages/react/src}/components/ConditionFormat/ConditionRules.d.ts +6 -6
  76. package/{es → dist/packages/react/src}/components/ConditionFormat/index.d.ts +7 -7
  77. package/{es → dist/packages/react/src}/components/ContextMenu/Divider.d.ts +3 -3
  78. package/{lib → dist/packages/react/src}/components/ContextMenu/FilterMenu.d.ts +3 -3
  79. package/{es → dist/packages/react/src}/components/ContextMenu/Menu.d.ts +8 -8
  80. package/{lib → dist/packages/react/src}/components/ContextMenu/SheetTab.d.ts +4 -4
  81. package/{es → dist/packages/react/src}/components/ContextMenu/index.d.ts +5 -5
  82. package/{lib → dist/packages/react/src}/components/CustomSort/index.d.ts +4 -4
  83. package/{es → dist/packages/react/src}/components/DataVerification/DropdownList.d.ts +4 -4
  84. package/{lib → dist/packages/react/src}/components/DataVerification/RangeDialog.d.ts +4 -4
  85. package/{es → dist/packages/react/src}/components/DataVerification/getDisplayedRangeTxt.d.ts +2 -2
  86. package/{lib → dist/packages/react/src}/components/DataVerification/index.d.ts +4 -4
  87. package/{lib → dist/packages/react/src}/components/Dialog/index.d.ts +15 -15
  88. package/{lib → dist/packages/react/src}/components/DuneChartsInputModal/DuneChartsInputModal.d.ts +11 -11
  89. package/{lib → dist/packages/react/src}/components/DunePreview/DunePreview.d.ts +13 -13
  90. package/{es → dist/packages/react/src}/components/FilterOption/index.d.ts +5 -5
  91. package/{es → dist/packages/react/src}/components/FormatSearch/index.d.ts +6 -6
  92. package/{lib → dist/packages/react/src}/components/FormulaSearch/index.d.ts +5 -5
  93. package/{lib → dist/packages/react/src}/components/FxEditor/NameBox.d.ts +3 -3
  94. package/{es → dist/packages/react/src}/components/FxEditor/index.d.ts +4 -4
  95. package/{es → dist/packages/react/src}/components/IFrameBoxs/iFrameBoxs.d.ts +4 -4
  96. package/{lib → dist/packages/react/src}/components/ImgBoxs/index.d.ts +3 -3
  97. package/{es → dist/packages/react/src}/components/LinkEidtCard/index.d.ts +5 -5
  98. package/{lib → dist/packages/react/src}/components/LocationCondition/index.d.ts +3 -3
  99. package/{lib → dist/packages/react/src}/components/MessageBox/index.d.ts +9 -9
  100. package/{es → dist/packages/react/src}/components/NotationBoxes/index.d.ts +3 -3
  101. package/{lib → dist/packages/react/src}/components/ResetColumnWidth/index.d.ts +2 -2
  102. package/{es → dist/packages/react/src}/components/SVGDefines.d.ts +5 -5
  103. package/{es → dist/packages/react/src}/components/SVGIcon.d.ts +9 -9
  104. package/{lib → dist/packages/react/src}/components/SearchReplace/index.d.ts +6 -6
  105. package/{es → dist/packages/react/src}/components/Sheet/index.d.ts +8 -8
  106. package/{es → dist/packages/react/src}/components/SheetList/SheetHiddenButton.d.ts +8 -8
  107. package/{lib → dist/packages/react/src}/components/SheetList/SheetListItem.d.ts +9 -9
  108. package/{lib → dist/packages/react/src}/components/SheetList/index.d.ts +4 -4
  109. package/{es → dist/packages/react/src}/components/SheetOverlay/ColumnHeader.d.ts +3 -3
  110. package/{es → dist/packages/react/src}/components/SheetOverlay/ContentEditable.d.ts +11 -11
  111. package/{es → dist/packages/react/src}/components/SheetOverlay/FormulaHint/index.d.ts +4 -4
  112. package/{es → dist/packages/react/src}/components/SheetOverlay/FormulaSearch/constant.d.ts +63 -63
  113. package/{es → dist/packages/react/src}/components/SheetOverlay/FormulaSearch/index.d.ts +4 -4
  114. package/{lib → dist/packages/react/src}/components/SheetOverlay/InputBox.d.ts +3 -3
  115. package/{es → dist/packages/react/src}/components/SheetOverlay/RowHeader.d.ts +3 -3
  116. package/{es → dist/packages/react/src}/components/SheetOverlay/ScrollBar/index.d.ts +7 -7
  117. package/{es → dist/packages/react/src}/components/SheetOverlay/index.d.ts +4 -4
  118. package/{es → dist/packages/react/src}/components/SheetTab/SheetItem.d.ts +8 -8
  119. package/{lib → dist/packages/react/src}/components/SheetTab/index.d.ts +4 -4
  120. package/{es → dist/packages/react/src}/components/SplitColumn/index.d.ts +3 -3
  121. package/{lib → dist/packages/react/src}/components/Toolbar/Button.d.ts +12 -12
  122. package/{es → dist/packages/react/src}/components/Toolbar/ColorPicker.d.ts +6 -6
  123. package/{es → dist/packages/react/src}/components/Toolbar/Combo.d.ts +12 -12
  124. package/{es → dist/packages/react/src}/components/Toolbar/CustomBorder.d.ts +7 -7
  125. package/{lib → dist/packages/react/src}/components/Toolbar/CustomButton.d.ts +11 -11
  126. package/{es → dist/packages/react/src}/components/Toolbar/CustomColor.d.ts +8 -8
  127. package/{lib → dist/packages/react/src}/components/Toolbar/CustomIcon.d.ts +9 -9
  128. package/{es → dist/packages/react/src}/components/Toolbar/Divider.d.ts +4 -4
  129. package/{es → dist/packages/react/src}/components/Toolbar/MoreItemsContainer.d.ts +6 -6
  130. package/{lib → dist/packages/react/src}/components/Toolbar/Select.d.ts +14 -14
  131. package/dist/packages/react/src/components/Toolbar/index.d.ts +10 -0
  132. package/{es → dist/packages/react/src}/components/Workbook/api.d.ts +1177 -1183
  133. package/{lib → dist/packages/react/src}/components/Workbook/index.d.ts +1185 -1191
  134. package/{es → dist/packages/react/src}/components/ZoomControl/index.d.ts +4 -4
  135. package/{es → dist/packages/react/src}/components/index.d.ts +4 -4
  136. package/{es → dist/packages/react/src}/constants.d.ts +1 -1
  137. package/{es → dist/packages/react/src}/context/index.d.ts +25 -25
  138. package/{es → dist/packages/react/src}/context/modal.d.ts +10 -10
  139. package/{es → dist/packages/react/src}/hooks/useAlert.d.ts +4 -4
  140. package/{es → dist/packages/react/src}/hooks/useDialog.d.ts +5 -5
  141. package/{es → dist/packages/react/src}/hooks/useOutsideClick.d.ts +2 -2
  142. package/{es → dist/packages/react/src}/hooks/usePrevious.d.ts +2 -2
  143. package/{es → dist/packages/react/src}/index.d.ts +1 -1
  144. package/{es → dist/packages/react/src}/utils/datepickerStyles.d.ts +2 -2
  145. package/{es/components/Workbook/index.d.ts → dist/stories/API.stories.d.ts} +1210 -1191
  146. package/dist/stories/Collabration.stories.d.ts +2359 -0
  147. package/dist/stories/Features.stories.d.ts +9430 -0
  148. package/dist/stories/data/cell.d.ts +983 -0
  149. package/dist/stories/data/dataVerification.d.ts +131 -0
  150. package/dist/stories/data/empty.d.ts +10 -0
  151. package/dist/stories/data/formula.d.ts +362 -0
  152. package/dist/stories/data/freeze.d.ts +34 -0
  153. package/dist/stories/data/protected.d.ts +40 -0
  154. package/dist/stories/utils.d.ts +1 -0
  155. package/package.json +6 -7
  156. package/es/components/ChangeColor/index.css +0 -76
  157. package/es/components/ChangeColor/index.js +0 -41
  158. package/es/components/ConditionFormat/ConditionRules.d.ts +0 -6
  159. package/es/components/ConditionFormat/ConditionRules.js +0 -323
  160. package/es/components/ConditionFormat/index.css +0 -210
  161. package/es/components/ConditionFormat/index.js +0 -252
  162. package/es/components/ContextMenu/Divider.js +0 -7
  163. package/es/components/ContextMenu/FilterMenu.d.ts +0 -3
  164. package/es/components/ContextMenu/FilterMenu.js +0 -612
  165. package/es/components/ContextMenu/Menu.js +0 -25
  166. package/es/components/ContextMenu/SheetTab.d.ts +0 -4
  167. package/es/components/ContextMenu/SheetTab.js +0 -223
  168. package/es/components/ContextMenu/index.css +0 -322
  169. package/es/components/ContextMenu/index.js +0 -1054
  170. package/es/components/CustomSort/index.css +0 -23
  171. package/es/components/CustomSort/index.d.ts +0 -4
  172. package/es/components/CustomSort/index.js +0 -113
  173. package/es/components/DataVerification/DropdownList.js +0 -126
  174. package/es/components/DataVerification/RangeDialog.d.ts +0 -4
  175. package/es/components/DataVerification/RangeDialog.js +0 -105
  176. package/es/components/DataVerification/getDisplayedRangeTxt.js +0 -9
  177. package/es/components/DataVerification/index.css +0 -202
  178. package/es/components/DataVerification/index.d.ts +0 -4
  179. package/es/components/DataVerification/index.js +0 -398
  180. package/es/components/Dialog/index.css +0 -64
  181. package/es/components/Dialog/index.d.ts +0 -15
  182. package/es/components/Dialog/index.js +0 -72
  183. package/es/components/DuneChartsInputModal/DuneChartsInputModal.d.ts +0 -11
  184. package/es/components/DuneChartsInputModal/DuneChartsInputModal.js +0 -95
  185. package/es/components/DuneChartsInputModal/duneChartsInputModal.css +0 -98
  186. package/es/components/DunePreview/DunePreview.d.ts +0 -13
  187. package/es/components/DunePreview/DunePreview.js +0 -46
  188. package/es/components/DunePreview/index.css +0 -57
  189. package/es/components/FilterOption/index.js +0 -121
  190. package/es/components/FormatSearch/index.css +0 -19
  191. package/es/components/FormatSearch/index.js +0 -129
  192. package/es/components/FormulaSearch/index.css +0 -65
  193. package/es/components/FormulaSearch/index.d.ts +0 -5
  194. package/es/components/FormulaSearch/index.js +0 -198
  195. package/es/components/FxEditor/NameBox.d.ts +0 -3
  196. package/es/components/FxEditor/NameBox.js +0 -29
  197. package/es/components/FxEditor/index.css +0 -72
  198. package/es/components/FxEditor/index.js +0 -167
  199. package/es/components/IFrameBoxs/iFrameBoxs.css +0 -16
  200. package/es/components/IFrameBoxs/iFrameBoxs.js +0 -142
  201. package/es/components/ImgBoxs/index.d.ts +0 -3
  202. package/es/components/ImgBoxs/index.js +0 -219
  203. package/es/components/LinkEidtCard/index.css +0 -255
  204. package/es/components/LinkEidtCard/index.js +0 -238
  205. package/es/components/LocationCondition/index.css +0 -74
  206. package/es/components/LocationCondition/index.d.ts +0 -3
  207. package/es/components/LocationCondition/index.js +0 -195
  208. package/es/components/MessageBox/index.d.ts +0 -9
  209. package/es/components/MessageBox/index.js +0 -16
  210. package/es/components/NotationBoxes/index.js +0 -105
  211. package/es/components/ResetColumnWidth/index.d.ts +0 -2
  212. package/es/components/ResetColumnWidth/index.js +0 -130
  213. package/es/components/SVGDefines.js +0 -1902
  214. package/es/components/SVGIcon.js +0 -18
  215. package/es/components/SearchReplace/index.css +0 -191
  216. package/es/components/SearchReplace/index.d.ts +0 -6
  217. package/es/components/SearchReplace/index.js +0 -294
  218. package/es/components/Sheet/index.css +0 -27
  219. package/es/components/Sheet/index.js +0 -175
  220. package/es/components/SheetList/SheetHiddenButton.js +0 -35
  221. package/es/components/SheetList/SheetListItem.d.ts +0 -9
  222. package/es/components/SheetList/SheetListItem.js +0 -72
  223. package/es/components/SheetList/index.css +0 -48
  224. package/es/components/SheetList/index.d.ts +0 -4
  225. package/es/components/SheetList/index.js +0 -30
  226. package/es/components/SheetOverlay/ColumnHeader.js +0 -217
  227. package/es/components/SheetOverlay/ContentEditable.js +0 -74
  228. package/es/components/SheetOverlay/FormulaHint/index.css +0 -180
  229. package/es/components/SheetOverlay/FormulaHint/index.js +0 -348
  230. package/es/components/SheetOverlay/FormulaSearch/constant.js +0 -328
  231. package/es/components/SheetOverlay/FormulaSearch/index.css +0 -44
  232. package/es/components/SheetOverlay/FormulaSearch/index.js +0 -261
  233. package/es/components/SheetOverlay/InputBox.d.ts +0 -3
  234. package/es/components/SheetOverlay/InputBox.js +0 -394
  235. package/es/components/SheetOverlay/RowHeader.js +0 -187
  236. package/es/components/SheetOverlay/ScrollBar/index.css +0 -40
  237. package/es/components/SheetOverlay/ScrollBar/index.js +0 -47
  238. package/es/components/SheetOverlay/index.css +0 -954
  239. package/es/components/SheetOverlay/index.js +0 -578
  240. package/es/components/SheetTab/SheetItem.js +0 -230
  241. package/es/components/SheetTab/index.css +0 -280
  242. package/es/components/SheetTab/index.d.ts +0 -4
  243. package/es/components/SheetTab/index.js +0 -143
  244. package/es/components/SplitColumn/index.css +0 -121
  245. package/es/components/SplitColumn/index.js +0 -167
  246. package/es/components/Toolbar/Button.d.ts +0 -12
  247. package/es/components/Toolbar/Button.js +0 -32
  248. package/es/components/Toolbar/ColorPicker.js +0 -27
  249. package/es/components/Toolbar/Combo.js +0 -102
  250. package/es/components/Toolbar/CustomBorder.js +0 -211
  251. package/es/components/Toolbar/CustomButton.d.ts +0 -11
  252. package/es/components/Toolbar/CustomButton.js +0 -29
  253. package/es/components/Toolbar/CustomColor.js +0 -25
  254. package/es/components/Toolbar/CustomIcon.d.ts +0 -9
  255. package/es/components/Toolbar/CustomIcon.js +0 -38
  256. package/es/components/Toolbar/Divider.js +0 -12
  257. package/es/components/Toolbar/MoreItemsContainer.js +0 -17
  258. package/es/components/Toolbar/Select.d.ts +0 -14
  259. package/es/components/Toolbar/Select.js +0 -34
  260. package/es/components/Toolbar/index.css +0 -405
  261. package/es/components/Toolbar/index.d.ts +0 -10
  262. package/es/components/Toolbar/index.js +0 -1338
  263. package/es/components/Workbook/api.js +0 -398
  264. package/es/components/Workbook/index.css +0 -44
  265. package/es/components/Workbook/index.js +0 -588
  266. package/es/components/ZoomControl/index.css +0 -54
  267. package/es/components/ZoomControl/index.js +0 -111
  268. package/es/components/index.js +0 -3
  269. package/es/constants.js +0 -4
  270. package/es/context/index.js +0 -34
  271. package/es/context/modal.js +0 -43
  272. package/es/hooks/useAlert.js +0 -28
  273. package/es/hooks/useDialog.js +0 -28
  274. package/es/hooks/useOutsideClick.js +0 -15
  275. package/es/hooks/usePrevious.js +0 -9
  276. package/es/index.css +0 -27
  277. package/es/index.js +0 -1
  278. package/es/utils/datepickerStyles.js +0 -8
  279. package/lib/components/ChangeColor/index.css +0 -76
  280. package/lib/components/ChangeColor/index.d.ts +0 -7
  281. package/lib/components/ChangeColor/index.js +0 -50
  282. package/lib/components/ConditionFormat/ConditionRules.js +0 -332
  283. package/lib/components/ConditionFormat/index.css +0 -210
  284. package/lib/components/ConditionFormat/index.d.ts +0 -7
  285. package/lib/components/ConditionFormat/index.js +0 -261
  286. package/lib/components/ContextMenu/Divider.d.ts +0 -3
  287. package/lib/components/ContextMenu/Divider.js +0 -14
  288. package/lib/components/ContextMenu/FilterMenu.js +0 -621
  289. package/lib/components/ContextMenu/Menu.d.ts +0 -8
  290. package/lib/components/ContextMenu/Menu.js +0 -33
  291. package/lib/components/ContextMenu/SheetTab.js +0 -232
  292. package/lib/components/ContextMenu/index.css +0 -322
  293. package/lib/components/ContextMenu/index.d.ts +0 -5
  294. package/lib/components/ContextMenu/index.js +0 -1063
  295. package/lib/components/CustomSort/index.css +0 -23
  296. package/lib/components/CustomSort/index.js +0 -122
  297. package/lib/components/DataVerification/DropdownList.d.ts +0 -4
  298. package/lib/components/DataVerification/DropdownList.js +0 -135
  299. package/lib/components/DataVerification/RangeDialog.js +0 -114
  300. package/lib/components/DataVerification/getDisplayedRangeTxt.d.ts +0 -2
  301. package/lib/components/DataVerification/getDisplayedRangeTxt.js +0 -15
  302. package/lib/components/DataVerification/index.css +0 -202
  303. package/lib/components/DataVerification/index.js +0 -407
  304. package/lib/components/Dialog/index.css +0 -64
  305. package/lib/components/Dialog/index.js +0 -81
  306. package/lib/components/DuneChartsInputModal/DuneChartsInputModal.js +0 -104
  307. package/lib/components/DuneChartsInputModal/duneChartsInputModal.css +0 -98
  308. package/lib/components/DunePreview/DunePreview.js +0 -53
  309. package/lib/components/DunePreview/index.css +0 -57
  310. package/lib/components/FilterOption/index.d.ts +0 -5
  311. package/lib/components/FilterOption/index.js +0 -130
  312. package/lib/components/FormatSearch/index.css +0 -19
  313. package/lib/components/FormatSearch/index.d.ts +0 -6
  314. package/lib/components/FormatSearch/index.js +0 -138
  315. package/lib/components/FormulaSearch/index.css +0 -65
  316. package/lib/components/FormulaSearch/index.js +0 -207
  317. package/lib/components/FxEditor/NameBox.js +0 -38
  318. package/lib/components/FxEditor/index.css +0 -72
  319. package/lib/components/FxEditor/index.d.ts +0 -4
  320. package/lib/components/FxEditor/index.js +0 -176
  321. package/lib/components/IFrameBoxs/iFrameBoxs.css +0 -16
  322. package/lib/components/IFrameBoxs/iFrameBoxs.d.ts +0 -4
  323. package/lib/components/IFrameBoxs/iFrameBoxs.js +0 -151
  324. package/lib/components/ImgBoxs/index.js +0 -228
  325. package/lib/components/LinkEidtCard/index.css +0 -255
  326. package/lib/components/LinkEidtCard/index.d.ts +0 -5
  327. package/lib/components/LinkEidtCard/index.js +0 -247
  328. package/lib/components/LocationCondition/index.css +0 -74
  329. package/lib/components/LocationCondition/index.js +0 -204
  330. package/lib/components/MessageBox/index.js +0 -23
  331. package/lib/components/NotationBoxes/index.d.ts +0 -3
  332. package/lib/components/NotationBoxes/index.js +0 -114
  333. package/lib/components/ResetColumnWidth/index.js +0 -138
  334. package/lib/components/SVGDefines.d.ts +0 -5
  335. package/lib/components/SVGDefines.js +0 -1909
  336. package/lib/components/SVGIcon.d.ts +0 -9
  337. package/lib/components/SVGIcon.js +0 -25
  338. package/lib/components/SearchReplace/index.css +0 -191
  339. package/lib/components/SearchReplace/index.js +0 -303
  340. package/lib/components/Sheet/index.css +0 -27
  341. package/lib/components/Sheet/index.d.ts +0 -8
  342. package/lib/components/Sheet/index.js +0 -184
  343. package/lib/components/SheetList/SheetHiddenButton.d.ts +0 -8
  344. package/lib/components/SheetList/SheetHiddenButton.js +0 -44
  345. package/lib/components/SheetList/SheetListItem.js +0 -81
  346. package/lib/components/SheetList/index.css +0 -48
  347. package/lib/components/SheetList/index.js +0 -39
  348. package/lib/components/SheetOverlay/ColumnHeader.d.ts +0 -3
  349. package/lib/components/SheetOverlay/ColumnHeader.js +0 -226
  350. package/lib/components/SheetOverlay/ContentEditable.d.ts +0 -11
  351. package/lib/components/SheetOverlay/ContentEditable.js +0 -83
  352. package/lib/components/SheetOverlay/FormulaHint/index.css +0 -180
  353. package/lib/components/SheetOverlay/FormulaHint/index.d.ts +0 -4
  354. package/lib/components/SheetOverlay/FormulaHint/index.js +0 -357
  355. package/lib/components/SheetOverlay/FormulaSearch/constant.d.ts +0 -63
  356. package/lib/components/SheetOverlay/FormulaSearch/constant.js +0 -334
  357. package/lib/components/SheetOverlay/FormulaSearch/index.css +0 -44
  358. package/lib/components/SheetOverlay/FormulaSearch/index.d.ts +0 -4
  359. package/lib/components/SheetOverlay/FormulaSearch/index.js +0 -270
  360. package/lib/components/SheetOverlay/InputBox.js +0 -403
  361. package/lib/components/SheetOverlay/RowHeader.d.ts +0 -3
  362. package/lib/components/SheetOverlay/RowHeader.js +0 -196
  363. package/lib/components/SheetOverlay/ScrollBar/index.css +0 -40
  364. package/lib/components/SheetOverlay/ScrollBar/index.d.ts +0 -7
  365. package/lib/components/SheetOverlay/ScrollBar/index.js +0 -56
  366. package/lib/components/SheetOverlay/index.css +0 -954
  367. package/lib/components/SheetOverlay/index.d.ts +0 -4
  368. package/lib/components/SheetOverlay/index.js +0 -587
  369. package/lib/components/SheetTab/SheetItem.d.ts +0 -8
  370. package/lib/components/SheetTab/SheetItem.js +0 -239
  371. package/lib/components/SheetTab/index.css +0 -280
  372. package/lib/components/SheetTab/index.js +0 -152
  373. package/lib/components/SplitColumn/index.css +0 -121
  374. package/lib/components/SplitColumn/index.d.ts +0 -3
  375. package/lib/components/SplitColumn/index.js +0 -176
  376. package/lib/components/Toolbar/Button.js +0 -39
  377. package/lib/components/Toolbar/ColorPicker.d.ts +0 -6
  378. package/lib/components/Toolbar/ColorPicker.js +0 -34
  379. package/lib/components/Toolbar/Combo.d.ts +0 -12
  380. package/lib/components/Toolbar/Combo.js +0 -111
  381. package/lib/components/Toolbar/CustomBorder.d.ts +0 -7
  382. package/lib/components/Toolbar/CustomBorder.js +0 -220
  383. package/lib/components/Toolbar/CustomButton.js +0 -36
  384. package/lib/components/Toolbar/CustomColor.d.ts +0 -8
  385. package/lib/components/Toolbar/CustomColor.js +0 -32
  386. package/lib/components/Toolbar/CustomIcon.js +0 -46
  387. package/lib/components/Toolbar/Divider.d.ts +0 -4
  388. package/lib/components/Toolbar/Divider.js +0 -19
  389. package/lib/components/Toolbar/MoreItemsContainer.d.ts +0 -6
  390. package/lib/components/Toolbar/MoreItemsContainer.js +0 -25
  391. package/lib/components/Toolbar/Select.js +0 -40
  392. package/lib/components/Toolbar/index.css +0 -405
  393. package/lib/components/Toolbar/index.d.ts +0 -10
  394. package/lib/components/Toolbar/index.js +0 -1347
  395. package/lib/components/Workbook/api.d.ts +0 -1183
  396. package/lib/components/Workbook/api.js +0 -405
  397. package/lib/components/Workbook/index.css +0 -44
  398. package/lib/components/Workbook/index.js +0 -597
  399. package/lib/components/ZoomControl/index.css +0 -54
  400. package/lib/components/ZoomControl/index.d.ts +0 -4
  401. package/lib/components/ZoomControl/index.js +0 -120
  402. package/lib/components/index.d.ts +0 -4
  403. package/lib/components/index.js +0 -28
  404. package/lib/constants.d.ts +0 -1
  405. package/lib/constants.js +0 -10
  406. package/lib/context/index.d.ts +0 -25
  407. package/lib/context/index.js +0 -41
  408. package/lib/context/modal.d.ts +0 -10
  409. package/lib/context/modal.js +0 -50
  410. package/lib/hooks/useAlert.d.ts +0 -4
  411. package/lib/hooks/useAlert.js +0 -37
  412. package/lib/hooks/useDialog.d.ts +0 -5
  413. package/lib/hooks/useDialog.js +0 -37
  414. package/lib/hooks/useOutsideClick.d.ts +0 -2
  415. package/lib/hooks/useOutsideClick.js +0 -21
  416. package/lib/hooks/usePrevious.d.ts +0 -2
  417. package/lib/hooks/usePrevious.js +0 -15
  418. package/lib/index.css +0 -27
  419. package/lib/index.d.ts +0 -1
  420. package/lib/index.js +0 -16
  421. package/lib/utils/datepickerStyles.d.ts +0 -2
  422. package/lib/utils/datepickerStyles.js +0 -14
@@ -0,0 +1,3915 @@
1
+ .fortune-container {
2
+ display: flex;
3
+ width: 100%;
4
+ height: 100%;
5
+ margin: 0;
6
+ padding: 0;
7
+ flex-direction: column;
8
+ font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC",
9
+ "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei",
10
+ sans-serif;
11
+ background-color: white;
12
+ position: relative;
13
+ }
14
+
15
+ .fortune-workarea {
16
+ width: 100%;
17
+ }
18
+
19
+ .fortune-popover-backdrop {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ z-index: 1003;
24
+ /* should below .fortune-context-menu */
25
+ height: 100%;
26
+ width: 100%;
27
+ }
28
+
29
+ .fortune-modal-container {
30
+ background: rgba(255, 255, 255, 0.5);
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+ }
35
+
36
+ html::-webkit-scrollbar-button {
37
+ display: none;
38
+ }
39
+
40
+ .fortune-stat-area {
41
+ display: flex;
42
+ justify-content: flex-end;
43
+ align-items: center;
44
+ }
45
+
46
+ .fortune-sheet-container {
47
+ display: flex;
48
+ flex: 1;
49
+ flex-direction: column;
50
+ }
51
+
52
+ .fortune-col-body {
53
+ display: flex;
54
+ flex: 1;
55
+ flex-direction: row;
56
+ }
57
+
58
+ .fortune-sheet-area {
59
+ flex: 1;
60
+ position: relative;
61
+ }
62
+
63
+ .fortune-sheet-canvas-placeholder,
64
+ .fortune-sheet-canvas {
65
+ width: 100%;
66
+ height: 100%;
67
+ display: block;
68
+ }
69
+
70
+ .fortune-sheet-canvas {
71
+ position: absolute;
72
+ }
73
+
74
+ .fortune-sheet-overlay {
75
+ position: absolute;
76
+ width: 100%;
77
+ height: 100%;
78
+ outline-style: none;
79
+ }
80
+
81
+ .fortune-cell-area {
82
+ border-collapse: collapse;
83
+ position: relative;
84
+ overflow: hidden;
85
+ outline-style: none;
86
+ cursor: default;
87
+ }
88
+
89
+ .fortune-row-body {
90
+ display: flex;
91
+ flex-direction: row;
92
+ }
93
+
94
+ .fortune-row-header {
95
+ position: relative;
96
+ flex-shrink: 0;
97
+ outline-style: none;
98
+ color: #5e5e5e;
99
+ overflow: hidden;
100
+ padding: 0;
101
+ margin-top: -2px;
102
+ padding-top: 2px;
103
+ cursor: default;
104
+ width: 45px;
105
+ }
106
+
107
+ .fortune-row-header-hover {
108
+ position: absolute;
109
+ z-index: 11;
110
+ border: 0 none;
111
+ right: 0;
112
+ width: 100%;
113
+ margin-top: 2px;
114
+ display: none;
115
+ background-color: rgba(194, 194, 194, 0.4);
116
+ }
117
+
118
+ .fortune-row-header-selected {
119
+ position: absolute;
120
+ z-index: 10;
121
+ border-right: 1px solid #0188fb;
122
+ right: 0;
123
+ width: 100%;
124
+ margin-top: 2px;
125
+ display: none;
126
+ background-color: rgba(76, 76, 76, 0.1);
127
+ }
128
+
129
+ .fortune-col-header-wrap {
130
+ display: flex;
131
+ flex-direction: row;
132
+ }
133
+
134
+ .fortune-col-header {
135
+ color: #5e5e5e;
136
+ overflow: hidden;
137
+ padding: 0;
138
+ cursor: default;
139
+ flex: 1;
140
+ height: 19px;
141
+ outline-style: none;
142
+ position: relative;
143
+ }
144
+
145
+ .fortune-col-header-hover {
146
+ color: #5e5e5e;
147
+ cursor: default;
148
+ position: absolute;
149
+ z-index: 11;
150
+ border: 0 none;
151
+ bottom: 0;
152
+ height: 100%;
153
+ margin-left: 0px;
154
+ display: none;
155
+ background-color: rgba(194, 194, 194, 0.4);
156
+ }
157
+
158
+ .fortune-col-header-hover .header-arrow {
159
+ position: absolute;
160
+ right: 6px;
161
+ top: 50%;
162
+ transform: translate(0%, -44%);
163
+ }
164
+
165
+ .fortune-col-header-selected {
166
+ color: #5e5e5e;
167
+ cursor: default;
168
+ position: absolute;
169
+ z-index: 10;
170
+ border-bottom: 1px solid #0188fb;
171
+ bottom: 0;
172
+ height: 100%;
173
+ margin-left: 0px;
174
+ display: none;
175
+ background-color: rgba(76, 76, 76, 0.1);
176
+ }
177
+
178
+ .fortune-left-top {
179
+ width: 44.5px;
180
+ height: 18.5px;
181
+ border: solid 0 #dfdfdf;
182
+ position: relative;
183
+ padding-top: 0;
184
+ border-width: 0 1px 1px 0;
185
+ padding-left: 0;
186
+ cursor: pointer;
187
+ background-color: white;
188
+ }
189
+
190
+ .fortune-add-row-button {
191
+ padding: 1px 20px;
192
+ margin-right: 5px;
193
+ display: inline-flex;
194
+ align-items: center;
195
+ margin: 0 8px;
196
+ border: none;
197
+ border-radius: 4px;
198
+ font-size: 14px;
199
+ line-height: 20px;
200
+ outline: none;
201
+ cursor: pointer;
202
+ color: rgb(38, 42, 51);
203
+ background-color: rgb(255, 255, 255);
204
+ border: 1px solid rgb(200, 200, 200);
205
+ }
206
+
207
+ .luckysheet-cell-selected-focus {
208
+ position: absolute;
209
+ pointer-events: none;
210
+ z-index: 14;
211
+ /*border:1px solid #fff;*/
212
+ margin: 0px 0 0 0px;
213
+ background: rgba(0, 80, 208, 0.15);
214
+ display: none;
215
+ }
216
+
217
+ .fortune-selection-copy {
218
+ position: absolute;
219
+ pointer-events: none;
220
+ z-index: 18;
221
+ border: none;
222
+ margin: 0px 0 0 0px;
223
+ }
224
+
225
+ .fortune-selection-copy .fortune-copy {
226
+ position: absolute;
227
+ z-index: 18;
228
+ background-color: transparent;
229
+ }
230
+
231
+ .fortune-selection-copy-hc {
232
+ position: absolute;
233
+ top: 0;
234
+ right: 0;
235
+ bottom: 0;
236
+ left: 0;
237
+ border: 2px dashed #12a5ff;
238
+ z-index: 8;
239
+ }
240
+
241
+ .fortune-selection-highlight {
242
+ position: absolute;
243
+ /*pointer-events: none;*/
244
+ z-index: 14;
245
+ border: none;
246
+ margin: 0px 0 0 0px;
247
+ /* display: none; */
248
+ }
249
+
250
+ .fortune-cell-selected-extend {
251
+ position: absolute;
252
+ pointer-events: none;
253
+ z-index: 16;
254
+ border: 1px dashed #0188fb;
255
+ margin: -1px 0 0 -1px;
256
+ display: none;
257
+ }
258
+
259
+ .fortune-cell-selected-move {
260
+ cursor: move;
261
+ position: absolute;
262
+ /* pointer-events: none; */
263
+ z-index: 16;
264
+ border: 2px solid #0188fb;
265
+ margin: -1px 0 0 -1px;
266
+ display: none;
267
+ }
268
+
269
+ .luckysheet-cell-selected {
270
+ position: absolute;
271
+ pointer-events: none;
272
+ z-index: 15;
273
+ border: 2.5px solid #0188fb;
274
+ margin: -1px 0 0 -1px;
275
+ background: rgba(1, 136, 251, 0.15);
276
+ display: none;
277
+ box-sizing: content-box;
278
+ }
279
+
280
+ .luckysheet-cs-inner-border {
281
+ pointer-events: none;
282
+ border: 1px solid #fff;
283
+ position: absolute;
284
+ top: 0;
285
+ bottom: 0;
286
+ left: 0;
287
+ right: 0;
288
+ }
289
+
290
+ .luckysheet-cs-fillhandle {
291
+ position: absolute;
292
+ width: 6px;
293
+ height: 6px;
294
+ bottom: -5px;
295
+ cursor: crosshair;
296
+ background-color: #0188fb;
297
+ border: solid 1px #fff;
298
+ z-index: 16;
299
+ pointer-events: auto;
300
+ right: -5px;
301
+ }
302
+
303
+ .luckysheet-cs-draghandle {
304
+ position: absolute;
305
+ cursor: move;
306
+ background-color: #fff;
307
+ opacity: 0.01;
308
+ z-index: 15;
309
+ pointer-events: auto;
310
+ border: 2px solid #fff;
311
+ }
312
+
313
+ .luckysheet-cs-draghandle-top {
314
+ top: -4px;
315
+ left: -2px;
316
+ right: -2px;
317
+ height: 2px;
318
+ }
319
+
320
+ .luckysheet-cs-draghandle-bottom {
321
+ right: 0;
322
+ left: -2px;
323
+ bottom: -4px;
324
+ height: 2px;
325
+ }
326
+
327
+ .luckysheet-cs-draghandle-left {
328
+ top: 0;
329
+ left: -4px;
330
+ bottom: 0;
331
+ width: 2px;
332
+ }
333
+
334
+ .luckysheet-cs-draghandle-right {
335
+ top: 0;
336
+ right: -4px;
337
+ bottom: 0;
338
+ width: 2px;
339
+ }
340
+
341
+ .luckysheet-cs-touchhandle {
342
+ display: none;
343
+ position: absolute;
344
+ width: 16px;
345
+ height: 16px;
346
+ padding: 5px;
347
+ z-index: 100;
348
+ pointer-events: auto;
349
+ touch-action: auto;
350
+ }
351
+
352
+ .luckysheet-cs-touchhandle:before {
353
+ content: "";
354
+ display: block;
355
+ width: 16px;
356
+ height: 16px;
357
+ border: 0.5px solid rgba(0, 0, 0, 0.15);
358
+ background-color: #ffffff;
359
+ box-sizing: border-box;
360
+ border-radius: 50%;
361
+ }
362
+
363
+ .luckysheet-cs-touchhandle-lt {
364
+ left: -13px;
365
+ top: -13px;
366
+ }
367
+
368
+ .luckysheet-cs-touchhandle-lb {
369
+ left: -13px;
370
+ bottom: -13px;
371
+ }
372
+
373
+ .luckysheet-cs-touchhandle-rt {
374
+ right: -13px;
375
+ top: -13px;
376
+ }
377
+
378
+ .luckysheet-cs-touchhandle-rb {
379
+ right: -13px;
380
+ bottom: -13px;
381
+ }
382
+
383
+ .luckysheet-cs-touchhandle .luckysheet-cs-touchhandle-btn {
384
+ position: absolute;
385
+ width: 10px;
386
+ height: 10px;
387
+ left: 8px;
388
+ top: 8px;
389
+ background-color: #018ffb;
390
+ background-position: center;
391
+ box-sizing: border-box;
392
+ border-radius: 50%;
393
+ z-index: 11;
394
+ }
395
+
396
+ .luckysheet-input-box {
397
+ position: absolute;
398
+ font: normal normal 400 13px arial, sans, sans-serif;
399
+ z-index: 15;
400
+ display: flex;
401
+ flex-direction: column;
402
+ }
403
+
404
+ .luckysheet-input-box-inner {
405
+ font: normal normal 400 13px arial, sans, sans-serif;
406
+ text-align: left;
407
+ max-height: 9900px;
408
+ max-width: 9900px;
409
+ border: 1px #5292f7 solid;
410
+ padding: 0 2px;
411
+ margin: 0;
412
+ resize: none;
413
+ overflow: hidden;
414
+ white-space: pre-wrap;
415
+ outline: none;
416
+ -webkit-box-shadow: 0 2px 5px rgb(0 0 0 / 40%);
417
+ -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
418
+ box-shadow: 0 2px 5px rgb(0 0 0 / 40%);
419
+ word-wrap: break-word;
420
+ background-color: rgb(255, 255, 255);
421
+ font-size: 13px;
422
+ right: auto;
423
+ overflow-y: auto;
424
+ box-sizing: border-box;
425
+ }
426
+
427
+ .luckysheet-cell-input {
428
+ width: 100%;
429
+ margin: 0;
430
+ outline: none;
431
+ cursor: text;
432
+ white-space: pre-wrap;
433
+ }
434
+
435
+ .luckysheet-formula-text-color {
436
+ color: black;
437
+ }
438
+
439
+ .luckysheet-formula-text-string {
440
+ color: forestgreen;
441
+ }
442
+
443
+ .luckysheet-cell-flow {
444
+ margin: 0;
445
+ padding: 0;
446
+ border: none 0;
447
+ position: relative;
448
+ touch-action: manipulation;
449
+ }
450
+
451
+ .luckysheet-cell-flow-clip {
452
+ border-collapse: collapse;
453
+ cursor: default;
454
+ width: 5000000px;
455
+ touch-action: manipulation;
456
+ overflow: hidden;
457
+ }
458
+
459
+ .luckysheet-cell-flow-col {
460
+ margin: 0;
461
+ padding: 0;
462
+ border: none 0;
463
+ position: relative;
464
+ touch-action: manipulation;
465
+ overflow: hidden;
466
+ float: left;
467
+ direction: ltr;
468
+ }
469
+
470
+ .luckysheet-cell-sheettable {
471
+ position: relative;
472
+ /*background-color: #fff;*/
473
+ text-align: left;
474
+ font-size: 11pt;
475
+ color: #000000;
476
+ text-decoration: none;
477
+ }
478
+
479
+ .luckysheet-bottom-controll-row {
480
+ position: absolute;
481
+ height: 30px;
482
+ /*width: 400px;*/
483
+ /* background: #000; */
484
+ bottom: 38px;
485
+ left: 0px;
486
+ z-index: 1000;
487
+ }
488
+
489
+ #luckysheet-bottom-add-row {
490
+ padding: 5px 20px;
491
+ margin-right: 5px;
492
+ margin-top: -2px;
493
+ }
494
+
495
+ #luckysheet-bottom-add-row-input {
496
+ width: 40px;
497
+ min-width: 40px;
498
+ }
499
+
500
+ #luckysheet-bottom-return-top {
501
+ padding: 5px 6px;
502
+ margin-left: 10px;
503
+ margin-top: -2px;
504
+ }
505
+
506
+ .luckysheet-cell-flow-column {
507
+ position: absolute;
508
+ height: inherit;
509
+ width: inherit;
510
+ top: 0;
511
+ left: 0;
512
+ z-index: 1;
513
+ touch-action: manipulation;
514
+ }
515
+
516
+ .luckysheet-cell-flow-column-line {
517
+ position: absolute;
518
+ border-right: 1px solid #d4d4d4;
519
+ height: inherit;
520
+ }
521
+
522
+ .luckysheet-cell-flow-row {
523
+ text-align: left;
524
+ position: absolute;
525
+ height: inherit;
526
+ width: inherit;
527
+ top: 0;
528
+ left: 0;
529
+ z-index: 1;
530
+ touch-action: manipulation;
531
+ }
532
+
533
+ .luckysheet-cell-flow-row-line {
534
+ position: absolute;
535
+ border-bottom: 1px solid #d4d4d4;
536
+ width: inherit;
537
+ }
538
+
539
+ .fortune-cols-change-size,
540
+ .fortune-rows-change-size,
541
+ .fortune-change-size-line,
542
+ .fortune-cols-freeze-handle,
543
+ .fortune-rows-freeze-handle,
544
+ .fortune-freeze-drag-line {
545
+ /*display: none;*/
546
+ -webkit-user-drag: none;
547
+ -webkit-user-select: none;
548
+ -moz-user-select: none;
549
+ user-select: none;
550
+ position: absolute;
551
+ z-index: 12;
552
+ }
553
+
554
+ .fortune-cols-change-size {
555
+ width: 5px;
556
+ height: 100%;
557
+ background: #0188fb;
558
+ cursor: ew-resize;
559
+ opacity: 0;
560
+ }
561
+
562
+ .fortune-rows-change-size {
563
+ width: 100%;
564
+ height: 5px;
565
+ background: #0188fb;
566
+ cursor: ns-resize;
567
+ opacity: 0;
568
+ }
569
+
570
+ .fortune-change-size-line {
571
+ border-color: #0188fb;
572
+ border-style: solid;
573
+ z-index: 15;
574
+ cursor: ew-resize;
575
+ }
576
+
577
+ .fortune-cols-freeze-handle {
578
+ position: absolute;
579
+ left: 0;
580
+ width: 3px;
581
+ height: 100%;
582
+ background-color: #ddd;
583
+ cursor: grab;
584
+ z-index: 20;
585
+ }
586
+
587
+ .fortune-rows-freeze-handle {
588
+ position: absolute;
589
+ top: 0;
590
+ height: 3px;
591
+ width: 100%;
592
+ background-color: #ddd;
593
+ cursor: grab;
594
+ z-index: 20;
595
+ }
596
+
597
+ .fortune-freeze-drag-line {
598
+ border-color: #ccc;
599
+ border-style: solid;
600
+ z-index: 15;
601
+ cursor: ew-resize;
602
+ }
603
+
604
+ /*批注聚焦框 移动 改变大小*/
605
+ .luckysheet-postil-dialog-move {
606
+ position: absolute;
607
+ margin: 0px;
608
+ padding: 0px;
609
+ top: 0;
610
+ left: 0;
611
+ bottom: 0;
612
+ right: 0;
613
+ pointer-events: none;
614
+ }
615
+
616
+ .luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item {
617
+ /*background: #000;*/
618
+ position: absolute;
619
+ pointer-events: all;
620
+ cursor: move;
621
+ }
622
+
623
+ .luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-t {
624
+ width: 100%;
625
+ height: 3px;
626
+ /* border-bottom: 1px solid #000; */
627
+ left: 0;
628
+ top: -4px;
629
+ }
630
+
631
+ .luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-r {
632
+ width: 3px;
633
+ height: 100%;
634
+ /* border-left: 1px solid #000; */
635
+ right: -4px;
636
+ top: 0;
637
+ }
638
+
639
+ .luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-b {
640
+ width: 100%;
641
+ height: 3px;
642
+ /* border-top: 1px solid #000; */
643
+ left: 0;
644
+ bottom: -4px;
645
+ }
646
+
647
+ .luckysheet-postil-dialog-move .luckysheet-postil-dialog-move-item-l {
648
+ width: 3px;
649
+ height: 100%;
650
+ /* border-right: 1px solid #000; */
651
+ left: -4px;
652
+ top: 0;
653
+ }
654
+
655
+ .luckysheet-postil-show-active
656
+ .luckysheet-postil-dialog-move
657
+ .luckysheet-postil-dialog-move-item {
658
+ border-color: #0188fb;
659
+ }
660
+
661
+ .luckysheet-postil-dialog-resize {
662
+ position: absolute;
663
+ margin: 0px;
664
+ padding: 0px;
665
+ top: -2px;
666
+ left: -2px;
667
+ bottom: -2px;
668
+ right: -2px;
669
+ pointer-events: none;
670
+ }
671
+
672
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item {
673
+ position: absolute;
674
+ height: 6px;
675
+ width: 6px;
676
+ border: 1px solid #0188fb;
677
+ pointer-events: all;
678
+ }
679
+
680
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lt {
681
+ left: -6px;
682
+ top: -6px;
683
+ cursor: nw-resize;
684
+ }
685
+
686
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-mt {
687
+ left: 50%;
688
+ top: -6px;
689
+ margin-left: -4px;
690
+ cursor: n-resize;
691
+ }
692
+
693
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lm {
694
+ top: 50%;
695
+ left: -6px;
696
+ margin-top: -4px;
697
+ cursor: w-resize;
698
+ }
699
+
700
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rm {
701
+ top: 50%;
702
+ right: -6px;
703
+ margin-top: -4px;
704
+ cursor: e-resize;
705
+ }
706
+
707
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rt {
708
+ right: -6px;
709
+ top: -6px;
710
+ cursor: ne-resize;
711
+ }
712
+
713
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-lb {
714
+ left: -6px;
715
+ bottom: -6px;
716
+ cursor: sw-resize;
717
+ }
718
+
719
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-mb {
720
+ left: 50%;
721
+ bottom: -6px;
722
+ margin-left: -4px;
723
+ cursor: s-resize;
724
+ }
725
+
726
+ .luckysheet-postil-dialog-resize .luckysheet-postil-dialog-resize-item-rb {
727
+ right: -6px;
728
+ bottom: -6px;
729
+ cursor: se-resize;
730
+ }
731
+
732
+ .fortune-selection-copy-top {
733
+ left: 0;
734
+ right: 0;
735
+ height: 2px;
736
+ top: 0;
737
+ background-position: bottom;
738
+ /* background-image: url("EwaAntH.gif"); */
739
+ }
740
+
741
+ .fortune-selection-copy-right {
742
+ top: 0;
743
+ bottom: 0;
744
+ width: 2px;
745
+ right: 0;
746
+ /* background-image: url("EwaAntV.gif"); */
747
+ }
748
+
749
+ .fortune-selection-copy-bottom {
750
+ left: 0;
751
+ right: 0;
752
+ height: 2px;
753
+ bottom: 0;
754
+ /* background-image: url("EwaAntH.gif"); */
755
+ }
756
+
757
+ .fortune-selection-copy-left {
758
+ top: 0;
759
+ bottom: 0;
760
+ width: 2px;
761
+ left: 0;
762
+ background-position: right;
763
+ /* background-image: url("EwaAntV.gif"); */
764
+ }
765
+
766
+ .fortune-selection-copy-hc {
767
+ position: absolute;
768
+ top: 0;
769
+ right: 0;
770
+ bottom: 0;
771
+ left: 0;
772
+ border: 2px dashed #12a5ff;
773
+ z-index: 8;
774
+ }
775
+
776
+ .luckysheet-modal-dialog-resize {
777
+ position: absolute;
778
+ border: 2px solid #0188fb;
779
+ margin: 0px;
780
+ padding: 0px;
781
+ top: -2px;
782
+ left: -2px;
783
+ bottom: -2px;
784
+ right: -2px;
785
+ pointer-events: none;
786
+ }
787
+
788
+ .luckysheet-modal-dialog-resize-item {
789
+ position: absolute;
790
+ height: 6px;
791
+ width: 6px;
792
+ background: #ffffff;
793
+ border: 2px solid #0188fb;
794
+ pointer-events: all;
795
+ border-radius: 6px;
796
+ }
797
+
798
+ .luckysheet-modal-dialog-resize-item-lt {
799
+ left: -6px;
800
+ top: -6px;
801
+ cursor: se-resize;
802
+ }
803
+
804
+ .luckysheet-modal-dialog-resize-item-mt {
805
+ left: 50%;
806
+ top: -6px;
807
+ margin-left: -4px;
808
+ cursor: s-resize;
809
+ }
810
+
811
+ .luckysheet-modal-dialog-resize-item-rt {
812
+ right: -6px;
813
+ top: -6px;
814
+ cursor: ne-resize;
815
+ }
816
+
817
+ .luckysheet-modal-dialog-resize-item-lm {
818
+ top: 50%;
819
+ left: -6px;
820
+ margin-top: -4px;
821
+ cursor: w-resize;
822
+ }
823
+
824
+ .luckysheet-modal-dialog-resize-item-rm {
825
+ top: 50%;
826
+ right: -6px;
827
+ margin-top: -4px;
828
+ cursor: w-resize;
829
+ }
830
+
831
+ .luckysheet-modal-dialog-resize-item-lb {
832
+ left: -6px;
833
+ bottom: -6px;
834
+ cursor: ne-resize;
835
+ }
836
+
837
+ .luckysheet-modal-dialog-resize-item-mb {
838
+ left: 50%;
839
+ bottom: -6px;
840
+ margin-left: -4px;
841
+ cursor: s-resize;
842
+ }
843
+
844
+ .luckysheet-modal-dialog-resize-item-rb {
845
+ right: -6px;
846
+ bottom: -6px;
847
+ cursor: se-resize;
848
+ }
849
+
850
+ .fortune-formula-functionrange-highlight .fortune-copy {
851
+ background-image: none;
852
+ background: #0188fb;
853
+ position: absolute;
854
+ z-index: 18;
855
+ cursor: move;
856
+ opacity: 0.9;
857
+ box-sizing: content-box;
858
+ /*border: 1px solid #fff;*/
859
+ }
860
+
861
+ .fortune-formula-functionrange-highlight .fortune-selection-copy-top {
862
+ top: -2px;
863
+ border-top: 2px solid #fff;
864
+ border-bottom: 2px solid #fff;
865
+ }
866
+
867
+ .fortune-formula-functionrange-highlight .fortune-selection-copy-right {
868
+ right: -2px;
869
+ border-left: 2px solid #fff;
870
+ border-right: 2px solid #fff;
871
+ }
872
+
873
+ .fortune-formula-functionrange-highlight .fortune-selection-copy-bottom {
874
+ bottom: -2px;
875
+ border-top: 2px solid #fff;
876
+ border-bottom: 2px solid #fff;
877
+ }
878
+
879
+ .fortune-formula-functionrange-highlight .fortune-selection-copy-left {
880
+ left: -2px;
881
+ border-left: 2px solid #fff;
882
+ border-right: 2px solid #fff;
883
+ }
884
+
885
+ .fortune-formula-functionrange-highlight .fortune-selection-copy-hc {
886
+ border: 2px solid #5e5e5e;
887
+ opacity: 0.03;
888
+ z-index: initial;
889
+ }
890
+
891
+ .fortune-selection-highlight-lt {
892
+ left: -3px;
893
+ top: -3px;
894
+ cursor: se-resize;
895
+ }
896
+
897
+ .fortune-selection-highlight-rt {
898
+ right: -3px;
899
+ top: -3px;
900
+ cursor: ne-resize;
901
+ }
902
+
903
+ .fortune-selection-highlight-lb {
904
+ left: -3px;
905
+ bottom: -3px;
906
+ cursor: ne-resize;
907
+ }
908
+
909
+ .fortune-selection-highlight-rb {
910
+ right: -3px;
911
+ bottom: -3px;
912
+ cursor: se-resize;
913
+ }
914
+
915
+ .fortune-formula-functionrange-highlight .luckysheet-highlight {
916
+ position: absolute;
917
+ z-index: 19;
918
+ border: 1px solid #fff;
919
+ background: #0188fb;
920
+ width: 6px;
921
+ height: 6px;
922
+ }
923
+
924
+ .fortune-presence-username {
925
+ position: absolute;
926
+ padding-left: 6px;
927
+ padding-right: 6px;
928
+ padding-top: 2px;
929
+ padding-bottom: 2px;
930
+ left: -2px;
931
+ font-size: 12px;
932
+ white-space: nowrap;
933
+ overflow: hidden;
934
+ text-overflow: ellipsis;
935
+ box-sizing: content-box;
936
+ color: #fff;
937
+ }
938
+
939
+ .fortune-presence-selection {
940
+ position: absolute;
941
+ border-style: solid;
942
+ border-width: 1;
943
+ opacity: 0.7;
944
+ }
945
+
946
+ .luckysheet-filter-options {
947
+ cursor: pointer;
948
+ position: absolute;
949
+ z-index: 200;
950
+ border-radius: 2px;
951
+ top: 4px;
952
+ margin-right: 2px;
953
+ margin-top: 2px;
954
+ font-size: 12px;
955
+ height: 15px;
956
+ padding: 1px;
957
+ background: hsl(var(--color-bg-tertiary));
958
+ }
959
+
960
+ .luckysheet-filter-options:hover {
961
+ background: hsl(var(--color-bg-default-hover));
962
+ }
963
+
964
+ .luckysheet-filter-options-active {
965
+ background: hsl(var(--color-bg-tertiary));
966
+ }
967
+
968
+ .caret {
969
+ margin-top: 6px;
970
+ width: 0;
971
+ height: 0;
972
+ display: inline-block;
973
+ border: 4px solid transparent;
974
+ }
975
+
976
+ .caret.down {
977
+ border-top-color: #897bff;
978
+ }
979
+
980
+ .luckysheet-filter-options:hover .caret.down {
981
+ border-top-color: #ffffff;
982
+ }
983
+
984
+ .luckysheet-filter-selected {
985
+ background: #ffffff00;
986
+ }
987
+
988
+ #luckysheet-dataVerification-showHintBox {
989
+ display: none;
990
+ padding: 8px;
991
+ min-width: 132px;
992
+ background-color: hsl(var(--color-bg-default));
993
+ border: 1px solid hsl(var(--color-border-default));
994
+ border-left: 4px solid #f4874a !important;
995
+ border-radius: 4px;
996
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
997
+ position: absolute;
998
+ transform: translateY(4px);
999
+ z-index: 1000;
1000
+ -webkit-user-select: none;
1001
+ -moz-user-select: none;
1002
+ user-select: none;
1003
+ cursor: default;
1004
+ white-space: nowrap;
1005
+ font-size: 14px;
1006
+ }
1007
+
1008
+ #luckysheet-dataVerification-dropdown-btn {
1009
+ display: none;
1010
+ padding: 1px;
1011
+ position: absolute;
1012
+ transform: translateY(15%);
1013
+ z-index: 10;
1014
+ overflow: hidden;
1015
+ cursor: pointer !important;
1016
+ }
1017
+
1018
+ .luckysheet-formula-search-c {
1019
+ position: absolute;
1020
+ border: 1px solid rgba(0, 0, 0, 0.2);
1021
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1022
+ color: #535353;
1023
+ font-size: 12px;
1024
+ background: #fff;
1025
+ z-index: 1003;
1026
+ width: 300px;
1027
+ }
1028
+
1029
+ .luckysheet-formula-search-c .luckysheet-formula-search-item {
1030
+ background: #fff;
1031
+ padding: 5px 10px;
1032
+ cursor: pointer;
1033
+ }
1034
+
1035
+ .luckysheet-formula-search-c
1036
+ .luckysheet-formula-search-item
1037
+ .luckysheet-formula-search-detail {
1038
+ display: none;
1039
+ color: #77818A;
1040
+ }
1041
+
1042
+ .luckysheet-formula-search-c
1043
+ .luckysheet-formula-search-item
1044
+ .luckysheet-formula-search-func {
1045
+ font-size: 14px;
1046
+ }
1047
+
1048
+ .luckysheet-formula-search-c .luckysheet-formula-search-item-active {
1049
+ display: block;
1050
+ border-top: 1px solid #ebebeb;
1051
+ border-bottom: 1px solid #ebebeb;
1052
+ background: #f2f4f5;
1053
+ }
1054
+
1055
+ .luckysheet-formula-search-c
1056
+ .luckysheet-formula-search-item-active
1057
+ .luckysheet-formula-search-detail {
1058
+ display: block;
1059
+ }
1060
+
1061
+ .luckysheet-formula-help-c {
1062
+ position: absolute;
1063
+ border: 1px solid rgba(0, 0, 0, 0.2);
1064
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1065
+ color: #535353;
1066
+ font-size: 12px;
1067
+ background: #fff;
1068
+ z-index: 1003;
1069
+ width: 300px;
1070
+ }
1071
+
1072
+ /* .luckysheet-formula-help-c .luckysheet-formula-help-content {
1073
+ max-height: 300px;
1074
+ overflow-y: scroll;
1075
+ } */
1076
+
1077
+ .luckysheet-formula-help-content-example {
1078
+ margin-top: 5px;
1079
+ }
1080
+
1081
+ .luckysheet-formula-help-title {
1082
+ display: block;
1083
+ border-top: 1px solid #ebebeb;
1084
+ border-bottom: 1px solid #ebebeb;
1085
+ background: #f5f5f5;
1086
+ padding: 2px 10px;
1087
+ font-size: 14px;
1088
+ }
1089
+
1090
+ .luckysheet-formula-help-title,
1091
+ .luckysheet-formula-search-item-active {
1092
+ padding: 10px !important;
1093
+ font-size: small;
1094
+ /* background: #f8f9fa !important; */
1095
+ font-weight: 600;
1096
+ border-bottom: 0px !important;
1097
+ border-top: 0px !important;
1098
+ }
1099
+
1100
+ .luckysheet-formula-help-c,
1101
+ .luckysheet-formula-search-c {
1102
+ padding: 6px;
1103
+ -webkit-user-select: text;
1104
+ -moz-user-select: text;
1105
+ user-select: text;
1106
+ border-radius: 10px;
1107
+ top: 25px;
1108
+ background: #ffff;
1109
+ min-width: 300px;
1110
+ /* max-width: 450px; */
1111
+ border: 1px solid lavender;
1112
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
1113
+ }
1114
+
1115
+ #luckysheet-formula-help-c {
1116
+ border-radius: 10px;
1117
+ top: 25px;
1118
+ background: #ffff;
1119
+ }
1120
+
1121
+ .luckysheet-formula-help-title-formula {
1122
+ width: -moz-fit-content;
1123
+ width: fit-content;
1124
+ }
1125
+
1126
+ .luckysheet-formula-help-content {
1127
+ background-color: white;
1128
+ /* margin: 0px 8px 8px 8px; */
1129
+ padding: 2px;
1130
+ border-radius: 0px 0px 10px 10px;
1131
+ }
1132
+
1133
+ .luckysheet-formula-help-content-param,
1134
+ .luckysheet-formula-help-content {
1135
+ display: flex;
1136
+ flex-direction: column;
1137
+ gap: 8px;
1138
+ }
1139
+
1140
+ .luckysheet-formula-help-content-param {
1141
+ padding-top: 4px;
1142
+ border-top: 1px solid lightgrey;
1143
+ }
1144
+
1145
+ .luckysheet-formula-help-content-example {
1146
+ display: flex;
1147
+ flex-direction: column;
1148
+ gap: 4px;
1149
+ }
1150
+
1151
+ .luckysheet-arguments-help-section-title {
1152
+ font-size: 14px;
1153
+ font-weight: 600;
1154
+ }
1155
+
1156
+ .example-title {
1157
+ color: var(--color-text-secondary, #77818A);
1158
+
1159
+ /* fv/text/helper/sm-bold */
1160
+ font-family: "Helvetica Neue";
1161
+ font-size: var(--font-size-2xsm, 12px);
1162
+ font-style: normal;
1163
+ font-weight: 500;
1164
+ line-height: 16px; /* 133.333% */
1165
+ }
1166
+
1167
+ .example-value {
1168
+ color: var(--color-text-default, #363B3F);
1169
+
1170
+ /* fv/text/helper/sm */
1171
+ font-family: "Helvetica Neue";
1172
+ font-size: var(--font-size-2xsm, 12px);
1173
+ font-style: normal;
1174
+ font-weight: 400;
1175
+ line-height: 16px; /* 133.333% */
1176
+ }
1177
+ .example-value-code {
1178
+ color: var(--color-text-default, #363B3F);
1179
+
1180
+ font-size: var(--font-size-2xsm, 12px);
1181
+ font-style: normal;
1182
+ font-weight: 400;
1183
+ line-height: 16px; /* 133.333% */
1184
+ }
1185
+
1186
+ .formula-title {
1187
+ display: flex;
1188
+ justify-content: space-between;
1189
+ }
1190
+
1191
+ .luckysheet-formula-help-title-formula {
1192
+ width: 250px;
1193
+ word-break: break-word;
1194
+ }
1195
+
1196
+ .luckysheet-arguments-help-section {
1197
+ margin-top: 5px;
1198
+ margin-bottom: 5px;
1199
+ color: #222;
1200
+ }
1201
+
1202
+ .luckysheet-arguments-help-section-title {
1203
+ padding: 1px 10px;
1204
+ color: #666;
1205
+ }
1206
+
1207
+ .luckysheet-arguments-help-parameter-content {
1208
+ padding: 1px 0px;
1209
+ display: inline-block;
1210
+ word-wrap: break-word;
1211
+ }
1212
+
1213
+ .luckysheet-arguments-help-formula {
1214
+ padding: 1px 10px;
1215
+ font-size: 14px;
1216
+ }
1217
+
1218
+ .luckysheet-arguments-help-parameter-active {
1219
+ background-color: #fff9b2;
1220
+ }
1221
+
1222
+ .luckysheet-formula-help-collapse {
1223
+ position: absolute;
1224
+ top: 0px;
1225
+ right: 25px;
1226
+ font-size: 16px;
1227
+ cursor: pointer;
1228
+ color: #bbb;
1229
+ }
1230
+
1231
+ .luckysheet-formula-help-close {
1232
+ position: absolute;
1233
+ top: 0px;
1234
+ right: 5px;
1235
+ font-size: 16px;
1236
+ cursor: pointer;
1237
+ color: #bbb;
1238
+ }
1239
+
1240
+ .luckysheet-formula-help-close:hover,
1241
+ .luckysheet-formula-help-collapse:hover {
1242
+ color: #555;
1243
+ }
1244
+
1245
+ .luckysheet-scrollbar-ltr {
1246
+ position: absolute;
1247
+ overflow: hidden;
1248
+ z-index: 1003;
1249
+ }
1250
+
1251
+ .luckysheet-scrollbar-ltr div {
1252
+ height: 1px;
1253
+ width: 1px;
1254
+ }
1255
+
1256
+ .luckysheet-scrollbar-x {
1257
+ bottom: 0px;
1258
+ overflow-x: scroll;
1259
+ }
1260
+
1261
+ .luckysheet-scrollbar-y {
1262
+ right: 0px;
1263
+ top: 0px;
1264
+ overflow-y: scroll;
1265
+ }
1266
+
1267
+ .luckysheet-scrollbar-ltr::-webkit-scrollbar {
1268
+ background-color: transparent;
1269
+ width: 8px;
1270
+ height: 8px;
1271
+ }
1272
+
1273
+ .luckysheet-scrollbar-ltr::-webkit-scrollbar-track {
1274
+ background-color: transparent;
1275
+ }
1276
+
1277
+ .luckysheet-scrollbar-ltr::-webkit-scrollbar-thumb {
1278
+ background-color: #babac0;
1279
+ border-radius: 16px;
1280
+ }
1281
+
1282
+ .luckysheet-scrollbar-ltr::-webkit-scrollbar-button {
1283
+ display: none;
1284
+ }
1285
+
1286
+ .fortune-dialog {
1287
+ min-width: 368px;
1288
+ max-width: 368px;
1289
+ max-height: 90%;
1290
+ border-radius: 12px;
1291
+ background: hsl(var(--color-bg-default));
1292
+ box-shadow: rgb(0 0 0 / 10%) 5px 5px 30px;
1293
+ box-sizing: border-box;
1294
+ overflow: auto;
1295
+ }
1296
+
1297
+ .fortune-dialog-box-button-container {
1298
+ display: flex;
1299
+ align-items: center;
1300
+ justify-content: center;
1301
+ }
1302
+
1303
+ .fortune-dialog-box-content {
1304
+ padding: 0px 25px;
1305
+ }
1306
+
1307
+ .fortune-dialog-box-button-container {
1308
+ padding-top: 10px;
1309
+ padding-bottom: 20px;
1310
+ }
1311
+
1312
+ .fortune-message-box-button {
1313
+ display: inline-flex;
1314
+ align-items: center;
1315
+ padding: 6px 12px;
1316
+ margin: 0 8px;
1317
+ border: none;
1318
+ border-radius: 4px;
1319
+ font-size: 14px;
1320
+ line-height: 20px;
1321
+ outline: none;
1322
+ cursor: pointer;
1323
+ }
1324
+
1325
+ .fortune-message-box-button.button-default {
1326
+ color: rgb(38, 42, 51);
1327
+ background-color: rgb(255, 255, 255);
1328
+ border: 1px solid rgb(235, 235, 235);
1329
+ }
1330
+
1331
+ .fortune-message-box-button.button-primary {
1332
+ color: white;
1333
+ background-color: #0188fb;
1334
+ }
1335
+
1336
+ .fortune-modal-dialog-header {
1337
+ outline: 0;
1338
+ display: flex;
1339
+ justify-content: flex-end;
1340
+ }
1341
+
1342
+ .fortune-modal-dialog-icon-close {
1343
+ color: #d4d4d4;
1344
+ opacity: 0.3;
1345
+ }
1346
+
1347
+ .fortune-modal-dialog-icon-close:hover {
1348
+ opacity: 0.7;
1349
+ }
1350
+
1351
+ @import "@fileverse/ui/styles";
1352
+ /*查找替换弹出框样式*/
1353
+ #fortune-search-replace {
1354
+ position: absolute;
1355
+ min-width: 504px;
1356
+ z-index: 1002;
1357
+ }
1358
+
1359
+ #fortune-search-replace .icon-close {
1360
+ position: absolute;
1361
+ right: 3px;
1362
+ top: 3px;
1363
+ }
1364
+
1365
+ #fortune-search-replace .tabBox {
1366
+ margin-top: 10px;
1367
+ font-size: 0;
1368
+ }
1369
+
1370
+ #fortune-search-replace .tabBox span {
1371
+ display: inline-block;
1372
+ text-align: center;
1373
+ width: 100px;
1374
+ border: 1px solid rgb(235, 235, 235);
1375
+ font-size: 14px;
1376
+ line-height: 2;
1377
+ }
1378
+
1379
+ #fortune-search-replace .tabBox span.on {
1380
+ background-color: #8c89fe;
1381
+ border-color: #726efe;
1382
+ color: #fff;
1383
+ }
1384
+
1385
+ #fortune-search-replace .ctBox {
1386
+ padding: 5px 10px;
1387
+ border: 1px solid rgb(235, 235, 235);
1388
+ font-size: 14px;
1389
+ min-width: 500px;
1390
+ }
1391
+
1392
+ #fortune-search-replace .ctBox .row {
1393
+ display: flex;
1394
+ flex-direction: row;
1395
+ justify-content: space-between;
1396
+ }
1397
+
1398
+ #fortune-search-replace .inputBox {
1399
+ height: 90px;
1400
+ position: relative;
1401
+ }
1402
+
1403
+ #fortune-search-replace .inputBox .textboxs {
1404
+ height: 30px;
1405
+ line-height: 30px;
1406
+ }
1407
+
1408
+ #fortune-search-replace .checkboxs {
1409
+ height: 90px;
1410
+ }
1411
+
1412
+ #fortune-search-replace .checkboxs div {
1413
+ height: 30px;
1414
+ line-height: 30px;
1415
+ }
1416
+
1417
+ #fortune-search-replace .checkboxs input[type="checkbox"] {
1418
+ float: left;
1419
+ margin-top: 9px;
1420
+ }
1421
+
1422
+ #fortune-search-replace .btnBox {
1423
+ margin-top: 10px;
1424
+ }
1425
+
1426
+ #fortune-search-replace .btnBox .button-default {
1427
+ margin-right: 8px;
1428
+ margin-left: 0px;
1429
+ }
1430
+
1431
+ #fortune-search-replace .close-button {
1432
+ margin-left: 0px;
1433
+ margin-top: 10px;
1434
+ }
1435
+
1436
+ #fortune-search-replace #searchAllbox {
1437
+ overflow-y: scroll;
1438
+ position: relative;
1439
+ }
1440
+
1441
+ #fortune-search-replace #searchAllbox .boxTitle {
1442
+ width: 100%;
1443
+ height: 30px;
1444
+ line-height: 29px;
1445
+ padding: 0 5px;
1446
+ background-color: #fff;
1447
+ border-bottom: 1px solid #d4d4d4;
1448
+ box-sizing: border-box;
1449
+ position: sticky;
1450
+ left: 0;
1451
+ top: 0;
1452
+ }
1453
+
1454
+ #fortune-search-replace #searchAllbox .boxTitle span {
1455
+ display: inline-block;
1456
+ text-align: center;
1457
+ }
1458
+
1459
+ #fortune-search-replace #searchAllbox .boxTitle span:nth-of-type(1) {
1460
+ width: 25%;
1461
+ }
1462
+
1463
+ #fortune-search-replace #searchAllbox .boxTitle span:nth-of-type(2) {
1464
+ width: 25%;
1465
+ }
1466
+
1467
+ #fortune-search-replace #searchAllbox .boxTitle span:nth-of-type(3) {
1468
+ width: 50%;
1469
+ }
1470
+
1471
+ #fortune-search-replace #searchAllbox .boxMain .boxItem {
1472
+ height: 30px;
1473
+ line-height: 29px;
1474
+ border-bottom: 1px solid #d4d4d4;
1475
+ padding: 0 5px;
1476
+ box-sizing: border-box;
1477
+ }
1478
+
1479
+ #fortune-search-replace #searchAllbox .boxMain .boxItem.on {
1480
+ background-color: #8c89fe;
1481
+ color: #fff;
1482
+ }
1483
+
1484
+ #fortune-search-replace #searchAllbox .boxMain .boxItem span {
1485
+ display: block;
1486
+ text-align: center;
1487
+ float: left;
1488
+ }
1489
+
1490
+ #fortune-search-replace #searchAllbox .boxMain .boxItem span:nth-of-type(1) {
1491
+ width: 25%;
1492
+ overflow: hidden;
1493
+ text-overflow: ellipsis;
1494
+ white-space: nowrap;
1495
+ }
1496
+
1497
+ #fortune-search-replace #searchAllbox .boxMain .boxItem span:nth-of-type(2) {
1498
+ width: 25%;
1499
+ overflow: hidden;
1500
+ text-overflow: ellipsis;
1501
+ white-space: nowrap;
1502
+ }
1503
+
1504
+ #fortune-search-replace #searchAllbox .boxMain .boxItem span:nth-of-type(3) {
1505
+ width: 50%;
1506
+ overflow: hidden;
1507
+ text-overflow: ellipsis;
1508
+ white-space: nowrap;
1509
+ }
1510
+
1511
+ .find-replace-label {
1512
+ min-width: 100px;
1513
+ }
1514
+
1515
+ .find-replace-table-cell {
1516
+ min-width: 154px;
1517
+ }
1518
+
1519
+ /* Add scrollbar styles */
1520
+ #fortune-search-replace .table-container {
1521
+ scrollbar-width: thin;
1522
+ scrollbar-color: #babac0 transparent;
1523
+ }
1524
+
1525
+ #fortune-search-replace .table-container::-webkit-scrollbar {
1526
+ width: 8px;
1527
+ height: 8px;
1528
+ }
1529
+
1530
+ #fortune-search-replace .table-container::-webkit-scrollbar-track {
1531
+ background-color: transparent;
1532
+ }
1533
+
1534
+ #fortune-search-replace .table-container::-webkit-scrollbar-thumb {
1535
+ background-color: #babac0;
1536
+ border-radius: 16px;
1537
+ }
1538
+
1539
+ #fortune-search-replace .table-container::-webkit-scrollbar-button {
1540
+ display: none;
1541
+ }
1542
+
1543
+ .fortune-link-modify-modal {
1544
+ position: absolute;
1545
+ overflow: hidden;
1546
+ background-color: #fff;
1547
+ z-index: 300;
1548
+ padding: 16px 20px 20px 20px;
1549
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1550
+ border: 1px solid #e5e5e5;
1551
+ border-radius: 8px;
1552
+ min-width: 320px;
1553
+ }
1554
+
1555
+ .fortune-link-cards-container {
1556
+ position: absolute;
1557
+ display: flex;
1558
+ gap: 16px;
1559
+ z-index: 300;
1560
+ }
1561
+
1562
+ .fortune-link-card {
1563
+ position: absolute;
1564
+ background-color: #fff;
1565
+ border: 1px solid #e5e5e5;
1566
+ border-radius: 8px;
1567
+ padding: 16px;
1568
+ width: 300px;
1569
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1570
+ display: flex;
1571
+ flex-direction: column;
1572
+ gap: 12px;
1573
+ z-index: 300;
1574
+ }
1575
+
1576
+ .fortune-link-type-select {
1577
+ width: 100% !important;
1578
+ }
1579
+
1580
+ .fortune-link-type-dropdown {
1581
+ z-index: 999999 !important;
1582
+ }
1583
+
1584
+ .fortune-sheet-dropdown {
1585
+ z-index: 999999 !important;
1586
+ }
1587
+
1588
+ .fortune-input-with-icon {
1589
+ position: relative;
1590
+ display: flex;
1591
+ align-items: center;
1592
+ }
1593
+
1594
+ .fortune-input-with-icon .input-icon {
1595
+ position: absolute;
1596
+ left: 12px;
1597
+ top: 50%;
1598
+ transform: translateY(-50%);
1599
+ width: 16px;
1600
+ height: 16px;
1601
+ color: #666;
1602
+ z-index: 1;
1603
+ display: flex;
1604
+ align-items: center;
1605
+ justify-content: center;
1606
+ }
1607
+
1608
+ .fortune-input-with-icon .input-icon svg {
1609
+ width: 16px;
1610
+ height: 16px;
1611
+ }
1612
+
1613
+ .fortune-link-input {
1614
+ width: 100% !important;
1615
+ padding-left: 36px !important;
1616
+ }
1617
+
1618
+ .fortune-sheet-select {
1619
+ width: 100% !important;
1620
+ padding-left: 36px !important;
1621
+ }
1622
+
1623
+ /* Ensure Select dropdowns appear above everything */
1624
+ [data-radix-portal] {
1625
+ z-index: 999999 !important;
1626
+ }
1627
+
1628
+ .fortune-insert-button {
1629
+ width: 100% !important;
1630
+ border: none !important;
1631
+ border-radius: 6px !important;
1632
+ padding: 12px !important;
1633
+ font-weight: 500 !important;
1634
+ }
1635
+
1636
+ .fortune-link-modify-modal.link-toolbar {
1637
+ display: flex;
1638
+ flex-direction: row;
1639
+ padding: 2px 8px 2px 16px;
1640
+ align-items: center;
1641
+ }
1642
+
1643
+ .fortune-link-modify-modal .link-content {
1644
+ margin-right: 6px;
1645
+ }
1646
+
1647
+ .fortune-link-modify-modal .link-content:hover {
1648
+ color: #2674fb;
1649
+ cursor: pointer;
1650
+ }
1651
+
1652
+ .fortune-link-modify-modal .divider {
1653
+ width: 1px;
1654
+ height: 16px;
1655
+ margin: 0px 6px;
1656
+ background-color: #e0e0e0;
1657
+ flex-shrink: 0;
1658
+ }
1659
+
1660
+ .fortune-link-modify-modal .fortune-toolbar-button {
1661
+ padding: 6px;
1662
+ }
1663
+
1664
+ .fortune-link-modify-modal .fortune-toolbar-button:hover {
1665
+ background-color: rgba(0, 0, 0, 0.06);
1666
+ cursor: pointer;
1667
+ }
1668
+
1669
+ .fortune-link-modify-modal.range-selection-modal {
1670
+ width: 380px;
1671
+ padding: 22px;
1672
+ -webkit-user-select: auto;
1673
+ -moz-user-select: auto;
1674
+ user-select: auto;
1675
+ background-color: #fff;
1676
+ }
1677
+
1678
+ .fortune-link-modify-line {
1679
+ padding-top: 16px;
1680
+ display: flex;
1681
+ flex-direction: column;
1682
+ gap: 8px;
1683
+ }
1684
+
1685
+ .fortune-link-modify-line:first-child {
1686
+ padding-top: 0;
1687
+ }
1688
+
1689
+ .fortune-link-modify-title {
1690
+ font-size: 14px;
1691
+ font-weight: 500;
1692
+ color: #333333;
1693
+ margin-bottom: 4px;
1694
+ }
1695
+
1696
+ .fortune-link-modify-input {
1697
+ width: 100% !important;
1698
+ }
1699
+
1700
+ .fortune-link-modify-select {
1701
+ width: 100% !important;
1702
+ }
1703
+
1704
+ .input-with-selector {
1705
+ position: relative;
1706
+ display: flex;
1707
+ align-items: center;
1708
+ }
1709
+
1710
+ .input-with-selector .fortune-link-modify-input {
1711
+ padding-right: 32px !important;
1712
+ }
1713
+
1714
+ .fortune-link-modify-cell-selector {
1715
+ position: absolute;
1716
+ right: 8px;
1717
+ top: 50%;
1718
+ transform: translateY(-50%);
1719
+ width: 20px;
1720
+ height: 20px;
1721
+ padding: 2px;
1722
+ display: flex;
1723
+ align-items: center;
1724
+ justify-content: center;
1725
+ border: none;
1726
+ cursor: pointer;
1727
+ background: transparent;
1728
+ border-radius: 4px;
1729
+ }
1730
+
1731
+ .fortune-link-modify-cell-selector:hover {
1732
+ background-color: rgba(0, 0, 0, 0.06);
1733
+ }
1734
+
1735
+ .fortune-link-modify-modal .modal-title {
1736
+ font-weight: 600;
1737
+ font-size: 18px;
1738
+ color: rgba(0, 0, 0, 0.88);
1739
+ margin-bottom: 16px;
1740
+ line-height: 24px;
1741
+ }
1742
+
1743
+ .fortune-link-modify-modal .range-selection-input {
1744
+ width: 100% !important;
1745
+ }
1746
+
1747
+ .fortune-link-modify-modal .modal-icon-close {
1748
+ position: absolute;
1749
+ right: 22px;
1750
+ top: 22px;
1751
+ cursor: pointer;
1752
+ width: 20px;
1753
+ height: 20px;
1754
+ display: flex;
1755
+ align-items: center;
1756
+ justify-content: center;
1757
+ border-radius: 4px;
1758
+ }
1759
+
1760
+ .fortune-link-modify-modal .modal-icon-close:hover {
1761
+ background-color: rgba(0, 0, 0, 0.06);
1762
+ }
1763
+
1764
+ .fortune-link-modify-modal .validation-input-tip {
1765
+ font-size: 12px;
1766
+ color: #ef4e2f;
1767
+ margin-top: 4px;
1768
+ }
1769
+
1770
+ .fortune-link-modify-modal .button-group {
1771
+ display: flex;
1772
+ gap: 12px;
1773
+ justify-content: flex-end;
1774
+ }
1775
+
1776
+ .fortune-link-modify-modal .modal-footer {
1777
+ display: flex;
1778
+ justify-content: flex-end;
1779
+ padding-top: 20px;
1780
+ margin-top: 8px;
1781
+ border-top: 1px solid #f0f0f0;
1782
+ }
1783
+
1784
+ .fortune-link-modify-modal.range-selection-modal .modal-footer {
1785
+ padding-top: 16px;
1786
+ border-top: 1px solid #f0f0f0;
1787
+ }
1788
+
1789
+ /* Error state styling for fileverse/ui components */
1790
+ .fortune-link-modify-modal .error-input input,
1791
+ .fortune-link-card .error-input input {
1792
+ border-color: #ef4e2f !important;
1793
+ }
1794
+
1795
+ .fortune-link-modify-modal .error-input input:focus,
1796
+ .fortune-link-card .error-input input:focus {
1797
+ border-color: #ef4e2f !important;
1798
+ box-shadow: 0 0 0 2px rgba(239, 78, 47, 0.2) !important;
1799
+ }
1800
+
1801
+ #fortune-data-verification {
1802
+ min-width: 510px;
1803
+ -webkit-user-select: none;
1804
+ -moz-user-select: none;
1805
+ user-select: none;
1806
+ }
1807
+
1808
+ #fortune-data-verification .title {
1809
+ font-size: 16px;
1810
+ }
1811
+
1812
+ #fortune-data-verification .box {
1813
+ font-size: 14px;
1814
+ }
1815
+
1816
+ #fortune-data-verification .box .box-item {
1817
+ padding: 10px;
1818
+ border-bottom: 1px solid #e1e4e8;
1819
+ }
1820
+
1821
+ #fortune-data-verification .box .box-item .box-item-title {
1822
+ font-size: 14px;
1823
+ font-weight: 600;
1824
+ margin-bottom: 10px;
1825
+ }
1826
+
1827
+ #fortune-data-verification .box .box-item .data-verification-range {
1828
+ width: 100%;
1829
+ height: 30px;
1830
+ border: 1px solid #d4d4d4;
1831
+ }
1832
+
1833
+ #fortune-data-verification .box .box-item .show-box-item {
1834
+ margin-top: 6px;
1835
+ font-size: 12px;
1836
+ }
1837
+
1838
+ #fortune-data-verification .box .box-item .show-box-item .check-box {
1839
+ height: 30px;
1840
+ line-height: 30px;
1841
+ margin-bottom: 10px;
1842
+ }
1843
+
1844
+ #fortune-data-verification .box .box-item .show-box-item .check-box input {
1845
+ height: 30px;
1846
+ padding: 0 10px;
1847
+ border: 1px solid #d4d4d4;
1848
+ box-sizing: border-box;
1849
+ }
1850
+
1851
+ #fortune-data-verification .input-box input {
1852
+ height: 30px;
1853
+ padding: 4px 10px 4px 10px;
1854
+ border: 1px solid #d4d4d4;
1855
+ box-sizing: border-box;
1856
+ margin-top: 6px;
1857
+ }
1858
+
1859
+ #fortune-data-verification .input-box span {
1860
+ margin: 0px 16px;
1861
+ }
1862
+
1863
+ .data-verification-range .formulaInputFocus {
1864
+ width: calc(100% - 30px);
1865
+ height: 30px;
1866
+ padding: 0 10px px;
1867
+ float: left;
1868
+ border: none;
1869
+ outline-style: none;
1870
+ box-sizing: border-box;
1871
+ }
1872
+
1873
+ .data-verification-range .icon {
1874
+ float: right;
1875
+ margin-top: 4px;
1876
+ margin-right: 5px;
1877
+ cursor: pointer;
1878
+ }
1879
+
1880
+ #fortune-data-verification .box .box-item .data-verification-type-select {
1881
+ width: 100%;
1882
+ height: 30px;
1883
+ border-color: #d4d4d4;
1884
+ outline-style: none;
1885
+ }
1886
+
1887
+ #fortune-data-verification .box .box-item .check {
1888
+ font-size: 12px;
1889
+ line-height: 24px;
1890
+ }
1891
+
1892
+ #fortune-data-verification .box .box-item .check input {
1893
+ vertical-align: text-top;
1894
+ }
1895
+
1896
+ #fortune-data-verification .button-basic {
1897
+ display: inline-block;
1898
+ margin-bottom: 0;
1899
+ font-weight: 400;
1900
+ text-align: center;
1901
+ vertical-align: middle;
1902
+ touch-action: manipulation;
1903
+ cursor: pointer;
1904
+ white-space: nowrap;
1905
+ padding: 4px 8px;
1906
+ font-size: 14px;
1907
+ line-height: 1.42857143;
1908
+ border-radius: 2px;
1909
+ -webkit-user-select: none;
1910
+ -moz-user-select: none;
1911
+ user-select: none;
1912
+ margin-top: 10px;
1913
+ }
1914
+
1915
+ #fortune-data-verification .button-primary {
1916
+ background: #0188fb;
1917
+ border: 1px solid #0188fb;
1918
+ color: #fff;
1919
+ margin-right: 10px;
1920
+ }
1921
+
1922
+ #fortune-data-verification .button-close {
1923
+ color: #333;
1924
+ background-color: #fff;
1925
+ border: 1px solid #ccc;
1926
+ margin-right: 10px;
1927
+ }
1928
+
1929
+ #range-dialog {
1930
+ box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
1931
+ background: #fff;
1932
+ border: 1px solid hsl(var(--color-border-default));
1933
+ outline: 0;
1934
+ position: absolute;
1935
+ z-index: 100003;
1936
+ left: 50%;
1937
+ top: 50%;
1938
+ transform: translate(-50%, -90%);
1939
+ -webkit-user-select: none;
1940
+ -moz-user-select: none;
1941
+ user-select: none;
1942
+ }
1943
+
1944
+ #range-dialog .dialog-title {
1945
+ background-color: #fff;
1946
+ color: #000;
1947
+ cursor: default;
1948
+ font-size: 16px;
1949
+ font-weight: normal;
1950
+ line-height: 24px;
1951
+ margin: 0 0 16px;
1952
+ }
1953
+
1954
+ #range-dialog input {
1955
+ height: 30px;
1956
+ padding: 0 10px;
1957
+ border: 1px solid #d4d4d4;
1958
+ outline-style: none;
1959
+ -webkit-user-select: none;
1960
+ -moz-user-select: none;
1961
+ user-select: none;
1962
+ }
1963
+
1964
+ #range-dialog .button-primary {
1965
+ background: #0188fb;
1966
+ border: 1px solid #0188fb;
1967
+ color: #fff;
1968
+ margin-right: 10px;
1969
+ }
1970
+
1971
+ #range-dialog .button-close {
1972
+ color: #333;
1973
+ background-color: #fff;
1974
+ border: 1px solid #ccc;
1975
+ margin-right: 10px;
1976
+ }
1977
+
1978
+ #luckysheet-dataVerification-dropdown-List {
1979
+ background-color: hsl(var(--color-bg-default));
1980
+ border: 1px solid hsl(var(--color-border-default));
1981
+ border-radius: 8px;
1982
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1983
+ transform: translateY(4px);
1984
+ position: absolute;
1985
+ z-index: 10000;
1986
+ box-sizing: border-box;
1987
+ font-size: 14px;
1988
+ padding: 8px;
1989
+ min-width: 160px;
1990
+ }
1991
+
1992
+ #luckysheet-dataVerification-dropdown-List .dropdown-List-item {
1993
+ padding: 4px 8px;
1994
+ box-sizing: border-box;
1995
+ cursor: pointer !important;
1996
+ border-radius: 4px;
1997
+ }
1998
+
1999
+ #luckysheet-dataVerification-dropdown-List .dropdown-List-item:hover {
2000
+ background-color: hsl(var(--color-bg-default-hover));
2001
+ transition: background-color 0.2s ease;
2002
+ }
2003
+
2004
+ [data-radix-popper-content-wrapper] {
2005
+ z-index: 10000 !important;
2006
+ }
2007
+
2008
+ .data-verification-checkbox-label {
2009
+ min-width: 100px;
2010
+ }
2011
+ .condition-format-sub-menu {
2012
+ position: absolute;
2013
+ top: -12px;
2014
+ box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
2015
+ background: #fff;
2016
+ border: 1px solid hsl(var(--color-border-default));
2017
+ border-radius: 8px;
2018
+ cursor: default;
2019
+ font-size: 14px;
2020
+ z-index: 1004;
2021
+ box-sizing: border-box;
2022
+ -webkit-user-select: none;
2023
+ -moz-user-select: none;
2024
+ user-select: none;
2025
+ outline: none;
2026
+ padding: 8px;
2027
+ min-width: 190px;
2028
+ }
2029
+
2030
+ .condition-format-item {
2031
+ display: flex;
2032
+ justify-content: space-between;
2033
+ padding: 8px;
2034
+ z-index: 1005;
2035
+ border-radius: 4px;
2036
+ cursor: pointer;
2037
+ }
2038
+
2039
+ .condition-format-item:hover {
2040
+ background: hsl(var(--color-bg-default-hover));
2041
+ transition: all 0.2s ease-in-out;
2042
+ }
2043
+
2044
+ .condition-format-item span {
2045
+ font-size: 14px;
2046
+ color: hsl(var(--color-text-secondary));
2047
+ font-weight: 400;
2048
+ }
2049
+
2050
+ .horizontal-line {
2051
+ border-top: 1px solid #ebebeb;
2052
+ margin-top: 6px;
2053
+ margin-bottom: 6px;
2054
+ }
2055
+
2056
+ .condition-rules .button-basic {
2057
+ display: inline-block;
2058
+ margin-bottom: 0;
2059
+ font-weight: 400;
2060
+ text-align: center;
2061
+ vertical-align: middle;
2062
+ touch-action: manipulation;
2063
+ cursor: pointer;
2064
+ white-space: nowrap;
2065
+ padding: 4px 8px;
2066
+ font-size: 14px;
2067
+ line-height: 1.42857143;
2068
+ border-radius: 2px;
2069
+ -webkit-user-select: none;
2070
+ -moz-user-select: none;
2071
+ user-select: none;
2072
+ margin-top: 10px;
2073
+ }
2074
+
2075
+ .condition-rules .button-primary {
2076
+ background: #0188fb;
2077
+ border: 1px solid #0188fb;
2078
+ color: #fff;
2079
+ margin-right: 10px;
2080
+ }
2081
+
2082
+ .condition-rules .button-close {
2083
+ color: #333;
2084
+ background-color: #fff;
2085
+ border: 1px solid #ccc;
2086
+ }
2087
+
2088
+ .condition-rules {
2089
+ /* padding: 0px 42px 34px 42px; */
2090
+ font-size: 14px;
2091
+ display: flex;
2092
+ flex-direction: column;
2093
+ gap: 16px;
2094
+ }
2095
+
2096
+ .condition-rules-title {
2097
+ color: #000;
2098
+ cursor: default;
2099
+ font-size: 16px;
2100
+ margin-bottom: 18px;
2101
+ }
2102
+
2103
+ .condition-rules-value {
2104
+ margin-bottom: 4px;
2105
+ }
2106
+
2107
+ .condition-rules-inpbox {
2108
+ width: 198px;
2109
+ height: 28px;
2110
+ border: 1px solid #d4d4d4;
2111
+ }
2112
+
2113
+ .condition-rules-input {
2114
+ width: 150px;
2115
+ height: 28px;
2116
+ padding: 0 10px;
2117
+ border: none;
2118
+ outline-style: none;
2119
+ float: left;
2120
+ }
2121
+
2122
+ .condition-relues-inputicon {
2123
+ float: right;
2124
+ margin-top: 2px;
2125
+ margin-right: 5px;
2126
+ cursor: pointer;
2127
+ }
2128
+
2129
+ .condition-rules-set-title {
2130
+ margin: 6px 0px;
2131
+ }
2132
+
2133
+ .condition-rules-setbox {
2134
+ display: flex;
2135
+ flex-direction: column;
2136
+ gap: 8px;
2137
+ }
2138
+
2139
+ .condition-rules-set {
2140
+ width: 100%;
2141
+ display: flex;
2142
+ align-items: center;
2143
+ gap: 8px;
2144
+ }
2145
+
2146
+ .condition-rules-color {
2147
+ display: flex;
2148
+ align-items: center;
2149
+ gap: 8px;
2150
+ }
2151
+
2152
+ .condition-rules-check {
2153
+ /* float: left; */
2154
+ /* margin-top: 10px; */
2155
+ }
2156
+
2157
+ .condition-rules-label {
2158
+ display: inline-block;
2159
+ width: 70px;
2160
+ -webkit-user-select: none;
2161
+ -moz-user-select: none;
2162
+ user-select: none;
2163
+ }
2164
+
2165
+ .condition-rules-select-color {
2166
+ background: hsl(var(--color-bg-default));
2167
+ width: 2.5rem;
2168
+ height: 1.5rem;
2169
+ border-radius: 4px;
2170
+ padding: 0;
2171
+ margin: 0;
2172
+ cursor: pointer;
2173
+ }
2174
+
2175
+ .condition-rules-between-box {
2176
+ display: flex;
2177
+ align-items: center;
2178
+ }
2179
+
2180
+ .condition-rules-between-inpbox {
2181
+ width: 108px;
2182
+ height: 28px;
2183
+ border: 1px solid #d4d4d4;
2184
+ }
2185
+
2186
+ .condition-rules-between-input {
2187
+ width: 60px;
2188
+ height: 28px;
2189
+ padding: 0 10px;
2190
+ border: none;
2191
+ outline-style: none;
2192
+ float: left;
2193
+ }
2194
+
2195
+ .condition-rules-date {
2196
+ width: 100%;
2197
+ }
2198
+
2199
+ .condition-rules-select {
2200
+ width: 100%;
2201
+ z-index: 999999;
2202
+ }
2203
+
2204
+ .condition-rules-project-box {
2205
+ display: flex;
2206
+ align-items: center;
2207
+ gap: 8px;
2208
+ }
2209
+
2210
+ .condition-rules-project-input {
2211
+ margin: 0px;
2212
+ width: -moz-fit-content;
2213
+ width: fit-content;
2214
+ max-width: 55px !important;
2215
+ }
2216
+
2217
+ /* Hide arrows for Chrome, Safari, Edge */
2218
+ input[type="number"].condition-rules-project-input::-webkit-outer-spin-button,
2219
+ input[type="number"].condition-rules-project-input::-webkit-inner-spin-button {
2220
+ -webkit-appearance: none;
2221
+ margin: 0;
2222
+ }
2223
+
2224
+ /* Hide arrows for Firefox */
2225
+ input[type="number"].condition-rules-project-input {
2226
+ -moz-appearance: textfield;
2227
+ }
2228
+
2229
+ .luckysheet-modal-dialog-controll {
2230
+ position: absolute;
2231
+ width: 100%;
2232
+ display: flex;
2233
+ justify-content: center;
2234
+ top: -40px;
2235
+ left: 0;
2236
+ z-index: 301;
2237
+ }
2238
+
2239
+ .fortune-iframe-boxes-delete-button {
2240
+ background-color: #ffffff;
2241
+ border: 1px solid #e8ebec;
2242
+ border-radius: 8px;
2243
+ box-shadow: 0px 4px 16px -4px #00000026;
2244
+ }
2245
+
2246
+ .fortune-toolbar {
2247
+ display: flex;
2248
+ flex-direction: row;
2249
+ /* background: #fafafc; */
2250
+ position: relative;
2251
+ padding: 4px 8px;
2252
+ border-bottom: 1px solid #d4d4d4;
2253
+ white-space: nowrap;
2254
+ align-items: center;
2255
+ gap: 4px;
2256
+ justify-content: space-between;
2257
+ }
2258
+
2259
+ .fortune-toolbar-divider {
2260
+ width: 1px;
2261
+ height: 20px;
2262
+ margin: 0 6px;
2263
+ background-color: #e0e0e0;
2264
+ flex-shrink: 0;
2265
+ }
2266
+
2267
+ .fortune-toolbar-menu-line {
2268
+ display: flex;
2269
+ align-items: center;
2270
+ justify-content: space-between;
2271
+ position: relative;
2272
+ }
2273
+
2274
+ .fortune-toolbar-menu-divider {
2275
+ width: "100%";
2276
+ height: 1px;
2277
+ margin: 8px 0px;
2278
+ background-color: #e0e0e0;
2279
+ }
2280
+
2281
+ .fortune-toolbar-button,
2282
+ .fortune-toolbar-combo {
2283
+ -webkit-border-radius: 4px;
2284
+ -moz-border-radius: 4px;
2285
+ border-radius: 4px;
2286
+ -webkit-user-select: none;
2287
+ -moz-user-select: none;
2288
+ -ms-user-select: none;
2289
+ user-select: none;
2290
+ background: 0;
2291
+ outline: none;
2292
+ padding: 2px;
2293
+ list-style: none;
2294
+ text-decoration: none;
2295
+ display: flex;
2296
+ justify-content: center;
2297
+ align-items: center;
2298
+ min-width: 30px;
2299
+ height: 30px;
2300
+ margin: 0;
2301
+ }
2302
+
2303
+ .fortune-toolbar-button svg,
2304
+ .fortune-toolbar-combo svg {
2305
+ width: 16px !important;
2306
+ height: 16px !important;
2307
+ }
2308
+
2309
+ .fortune-toolbar-combo-button,
2310
+ .fortune-toolbar-combo-arrow {
2311
+ display: flex;
2312
+ align-items: center;
2313
+ }
2314
+
2315
+ .fortune-toolbar-combo-button.show-arrow {
2316
+ border-radius: 4px 0px 0px 4px;
2317
+ }
2318
+
2319
+ .fortune-toolbar-button:hover {
2320
+ background-color: #f2f4f5;
2321
+ cursor: pointer;
2322
+ }
2323
+
2324
+ .fortune-toolbar-combo-arrow:hover {
2325
+ background-color: #f2f4f5;
2326
+ cursor: pointer;
2327
+ height: 30px;
2328
+ border-radius: 0px 4px 4px 0px;
2329
+ }
2330
+
2331
+ .fortune-toolbar-button:active,
2332
+ .fortune-toolbar-combo:active {
2333
+ /* background-color: rgba(0, 0, 0, 0.12); */
2334
+ cursor: pointer;
2335
+ }
2336
+
2337
+ .fortune-toobar-combo-container {
2338
+ position: relative;
2339
+ }
2340
+
2341
+ .fortune-toolbar-combo-popup {
2342
+ white-space: nowrap;
2343
+ max-width: 240px;
2344
+ }
2345
+
2346
+ .fortune-toolbar-select::-webkit-scrollbar {
2347
+ display: none;
2348
+ }
2349
+
2350
+ .fortune-toolbar-select {
2351
+ box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
2352
+ padding: 0.5rem;
2353
+ border: 1px solid hsl(var(--color-border-default));
2354
+ border-radius: 8px;
2355
+ background: white;
2356
+ min-width: 240px;
2357
+ }
2358
+
2359
+ .fortune-toolbar-color-picker {
2360
+ z-index: 50;
2361
+ height: auto;
2362
+ display: flex;
2363
+ flex-wrap: wrap;
2364
+ gap: 2px;
2365
+ overflow-y: auto;
2366
+ scroll-behavior: smooth;
2367
+ background: rgb(255, 255, 255);
2368
+ transition: all 0.2s ease;
2369
+ border-radius: 0px 0px 4px 4px;
2370
+ }
2371
+
2372
+ .fortune-toolbar-select {
2373
+ overflow: auto;
2374
+ max-height: 75vh;
2375
+ }
2376
+
2377
+ .fortune-toolbar-combo-button {
2378
+ font-size: 12px;
2379
+ }
2380
+
2381
+ .fortune-toolbar-select-option {
2382
+ font-size: 12px;
2383
+ min-width: 60px;
2384
+ padding: 8px;
2385
+ cursor: pointer;
2386
+ -webkit-user-select: none;
2387
+ -moz-user-select: none;
2388
+ user-select: none;
2389
+ }
2390
+
2391
+ .fortune-toolbar-select-option:hover {
2392
+ background: hsl(var(--color-bg-default-hover));
2393
+ border-radius: 4px;
2394
+ transition: all 0.2s ease-in-out;
2395
+ }
2396
+
2397
+ .fortune-toolbar-select::-webkit-scrollbar {
2398
+ display: none;
2399
+ }
2400
+
2401
+ .fortune-toolbar-color-picker-row {
2402
+ display: flex;
2403
+ flex-direction: row;
2404
+ }
2405
+
2406
+ .fortune-toolbar-combo-text {
2407
+ margin: 0 4px;
2408
+ font-weight: 500;
2409
+ font-size: 14px;
2410
+ line-height: 20px;
2411
+ }
2412
+
2413
+ .fortune-toolbar-color-picker-item {
2414
+ width: 20px;
2415
+ height: 20px;
2416
+ border-radius: 9999px;
2417
+ display: flex;
2418
+ align-items: center;
2419
+ justify-content: center;
2420
+ cursor: pointer;
2421
+ transition: transform 0.2s ease-in;
2422
+ margin: 1px;
2423
+ }
2424
+
2425
+ .fortune-toolbar-color-picker-item:hover {
2426
+ transform: scale(1.05);
2427
+ cursor: pointer;
2428
+ }
2429
+
2430
+ .fortune-tooltip {
2431
+ visibility: hidden;
2432
+ background-color: #666;
2433
+ color: #fff;
2434
+ text-align: center;
2435
+ border-radius: 2px;
2436
+ padding: 6px;
2437
+ font-size: 12px;
2438
+ position: absolute;
2439
+ z-index: 25;
2440
+ /* higher than toolbar tips */
2441
+ top: 40px;
2442
+ white-space: nowrap;
2443
+ }
2444
+
2445
+ .fortune-toolbar-button:hover .fortune-tooltip,
2446
+ .fortune-toolbar-combo:hover .fortune-tooltip {
2447
+ visibility: visible;
2448
+ }
2449
+
2450
+ .fortune-toolbar-more-container {
2451
+ position: absolute;
2452
+ display: flex;
2453
+ flex-direction: row;
2454
+ align-items: center;
2455
+ align-self: flex-end;
2456
+ top: 32px;
2457
+ right: 0px;
2458
+ max-width: 348px;
2459
+ box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
2460
+ background: white;
2461
+ flex-wrap: wrap;
2462
+ z-index: 1002;
2463
+ padding: 8px;
2464
+ border-radius: 8px;
2465
+ border: 1px solid hsl(var(--color-border-default));
2466
+ }
2467
+
2468
+ .fortune-toolbar-subtext {
2469
+ -webkit-transition: all 0.218s;
2470
+ -moz-transition: all 0.218s;
2471
+ -o-transition: all 0.218s;
2472
+ transition: all 0.218s;
2473
+ font-size: 12px;
2474
+ left: auto;
2475
+ padding-top: 1px;
2476
+ padding-left: 24px;
2477
+ text-align: right;
2478
+ opacity: 0.5;
2479
+ filter: alpha(opacity=50);
2480
+ color: #000;
2481
+ -webkit-user-select: none;
2482
+ -moz-user-select: none;
2483
+ user-select: none;
2484
+ font-family: Arial;
2485
+ line-height: 100%;
2486
+ }
2487
+
2488
+ .toolbar-item-sub-menu {
2489
+ position: absolute;
2490
+ box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
2491
+ background: #fff;
2492
+ border: 1px solid rgba(0, 0, 0, 0.2);
2493
+ cursor: default;
2494
+ font-size: 12px;
2495
+ z-index: 1004;
2496
+ box-sizing: border-box;
2497
+ -webkit-user-select: none;
2498
+ -moz-user-select: none;
2499
+ user-select: none;
2500
+ outline: none;
2501
+ border-radius: 6px;
2502
+ }
2503
+
2504
+ #fortune-custom-color {
2505
+ min-width: 164px;
2506
+ background: hsl(var(--color-bg-default));
2507
+ border-radius: 8px;
2508
+ border: 1px solid hsl(var(--color-border-default));
2509
+ font-size: 12px;
2510
+ padding: 8px;
2511
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
2512
+ max-height: 400px;
2513
+ width: -moz-fit-content;
2514
+ width: fit-content;
2515
+ display: flex;
2516
+ flex-direction: column;
2517
+ gap: 8px;
2518
+ }
2519
+
2520
+ #fortune-custom-color .color-reset {
2521
+ position: relative;
2522
+ color: #333;
2523
+ cursor: pointer;
2524
+ list-style: none;
2525
+ white-space: nowrap;
2526
+ vertical-align: middle;
2527
+ -webkit-user-select: none;
2528
+ -moz-user-select: none;
2529
+ user-select: none;
2530
+ background: white;
2531
+ padding: 4px 8px;
2532
+ height: 30px;
2533
+ border-radius: 4px;
2534
+ display: flex;
2535
+ align-items: center;
2536
+ gap: 10px;
2537
+ font-size: 14px;
2538
+ font-weight: 500;
2539
+ line-height: 20px;
2540
+ }
2541
+
2542
+ #fortune-custom-color .color-reset:hover {
2543
+ background: hsl(var(--color-bg-default-hover));
2544
+ transition: all 0.2s ease-in-out;
2545
+ }
2546
+
2547
+ #fortune-custom-color .custom-color {
2548
+ position: relative;
2549
+ margin: auto;
2550
+ padding: 10px;
2551
+ border-radius: 6px;
2552
+ background: white;
2553
+ display: flex;
2554
+ align-items: center;
2555
+ margin: 1px 0px;
2556
+ display: flex;
2557
+ justify-content: space-around;
2558
+ }
2559
+
2560
+ .button-basic {
2561
+ display: inline-block;
2562
+ margin-bottom: 0;
2563
+ font-weight: 400;
2564
+ text-align: center;
2565
+ vertical-align: middle;
2566
+ touch-action: manipulation;
2567
+ cursor: pointer;
2568
+ white-space: nowrap;
2569
+ padding: 4px 8px;
2570
+ font-size: 12px;
2571
+ line-height: 1.42857143;
2572
+ border-radius: 2px;
2573
+ -webkit-user-select: none;
2574
+ -moz-user-select: none;
2575
+ user-select: none;
2576
+ }
2577
+
2578
+ .button-primary {
2579
+ background: #0188fb;
2580
+ border: 1px solid #0188fb;
2581
+ color: #fff;
2582
+ margin-right: -4px;
2583
+ }
2584
+
2585
+ .fortune-border-select-menu {
2586
+ position: absolute;
2587
+ bottom: 0px;
2588
+ }
2589
+
2590
+ .fortune-border-color-preview {
2591
+ height: 3px;
2592
+ }
2593
+
2594
+ .fortune-border-select-option {
2595
+ font-size: 12px;
2596
+ height: 24px;
2597
+ line-height: 24px;
2598
+ min-width: 60px;
2599
+ padding: 8px 12px;
2600
+ }
2601
+
2602
+ .fortune-border-select-option:hover {
2603
+ background: #efefef;
2604
+ cursor: pointer;
2605
+ }
2606
+
2607
+ .fortune-border-style-preview {
2608
+ height: 3px;
2609
+ overflow: hidden;
2610
+ }
2611
+
2612
+ .fortune-border-style-picker-menu {
2613
+ padding: 0px 10px;
2614
+ }
2615
+
2616
+ .fortune-border-style-picker-menu:hover {
2617
+ background: #efefef;
2618
+ cursor: pointer;
2619
+ }
2620
+
2621
+ .fortune-border-grid {
2622
+ display: grid;
2623
+ grid-template-columns: repeat(5, 1fr);
2624
+ gap: 4px;
2625
+ padding: 8px;
2626
+ min-width: 200px;
2627
+ }
2628
+
2629
+ .fortune-border-grid-item {
2630
+ display: flex;
2631
+ align-items: center;
2632
+ justify-content: center;
2633
+ width: 32px;
2634
+ height: 32px;
2635
+ cursor: pointer;
2636
+ border-radius: 4px;
2637
+ transition: background-color 0.2s ease;
2638
+ }
2639
+
2640
+ .fortune-border-grid-item:hover {
2641
+ background-color: hsl(var(--color-bg-default-hover));
2642
+ }
2643
+
2644
+ .fortune-toolbar-left {
2645
+ display: flex;
2646
+ flex-direction: row;
2647
+ align-items: center;
2648
+ gap: 4px;
2649
+ position: relative;
2650
+ }
2651
+
2652
+ .fortune-toolbar-right {
2653
+ display: flex;
2654
+ flex-direction: row;
2655
+ align-items: center;
2656
+ gap: 4px;
2657
+ }
2658
+
2659
+ .custom-color-button > svg > path:first-child {
2660
+ display: none !important;
2661
+ }
2662
+
2663
+ #fortune-split-column {
2664
+ /* position: absolute;
2665
+ padding: 30px 42px;
2666
+ z-index: 1002; */
2667
+ /* min-width: 500px; */
2668
+ width: 464px;
2669
+
2670
+ input[type="checkbox"] {
2671
+ accent-color: black;
2672
+ -moz-appearance: none;
2673
+ appearance: none;
2674
+ -webkit-appearance: none;
2675
+ width: 16px;
2676
+ height: 16px;
2677
+ border: 1.5px solid black;
2678
+ border-radius: 3px;
2679
+ position: relative;
2680
+ cursor: pointer;
2681
+ }
2682
+
2683
+ input[type="checkbox"]:checked {
2684
+ background-color: black;
2685
+ border-color: black;
2686
+ }
2687
+
2688
+ /* Smaller tick mark */
2689
+ input[type="checkbox"]:checked::before {
2690
+ content: '';
2691
+ position: absolute;
2692
+ top: 2px;
2693
+ left: 4px;
2694
+ width: 4px; /* Reduced from default */
2695
+ height: 7px; /* Reduced from default */
2696
+ border: solid white;
2697
+ border-width: 0 1px 1px 0;
2698
+ transform: rotate(45deg);
2699
+ }
2700
+ }
2701
+ #fortune-split-column label {
2702
+ -webkit-user-select: none;
2703
+ -moz-user-select: none;
2704
+ user-select: none;
2705
+ }
2706
+ #fortune-split-column .title {
2707
+ font-size: 16px;
2708
+ }
2709
+ #fortune-split-column .splitDelimiters {
2710
+ margin-top: 20px;
2711
+ }
2712
+ .splitSymbols {
2713
+ width: 464px
2714
+ }
2715
+ #fortune-split-column .splitSymbols {
2716
+ position: relative;
2717
+ /* border: 1px solid #dfdfdf; */
2718
+ padding: 5px 5px 5px 0;
2719
+ margin: 5px 0px;
2720
+ }
2721
+ #fortune-split-column .splitSymbol {
2722
+ font-size: 14px;
2723
+ }
2724
+ #fortune-split-column .splitSimple {
2725
+ position: absolute;
2726
+ top: 114px;
2727
+ left: 0px;
2728
+ }
2729
+ #fortune-split-column #otherValue {
2730
+ margin-left: 5px;
2731
+ width: 50px;
2732
+ padding: 0 5px;
2733
+ }
2734
+ #fortune-split-column .splitDataPreview {
2735
+ font-size: 14px;
2736
+ /* margin-top: 26px; */
2737
+ margin-bottom: 12px;
2738
+ }
2739
+ #fortune-split-column .splitColumnData {
2740
+ border: 1px solid #dfdfdf;
2741
+ border-radius: 4px;
2742
+ background-color: #F8F9FA;
2743
+ padding: 5px;
2744
+ margin: 5px 0px;
2745
+ height: 100px;
2746
+ overflow-y: scroll;
2747
+ }
2748
+ #fortune-split-column .button-basic {
2749
+ display: inline-block;
2750
+ margin-bottom: 0;
2751
+ font-weight: 400;
2752
+ text-align: center;
2753
+ vertical-align: middle;
2754
+ touch-action: manipulation;
2755
+ cursor: pointer;
2756
+ white-space: nowrap;
2757
+ padding: 4px 8px;
2758
+ font-size: 14px;
2759
+ line-height: 1.42857143;
2760
+ border-radius: 2px;
2761
+ -webkit-user-select: none;
2762
+ -moz-user-select: none;
2763
+ user-select: none;
2764
+ }
2765
+ #fortune-split-column .button-primary {
2766
+ background: #0188fb;
2767
+ border: 1px solid #0188fb;
2768
+ color: #fff;
2769
+ margin-right: 10px;
2770
+ }
2771
+ #fortune-split-column .button-close {
2772
+ color: #333;
2773
+ background-color: #fff;
2774
+ border: 1px solid #ccc;
2775
+ }
2776
+ #fortune-split-column table {
2777
+ border-collapse: collapse;
2778
+ }
2779
+ #fortune-split-column tr {
2780
+ display: table-row;
2781
+ vertical-align: inherit;
2782
+ border-color: inherit;
2783
+ }
2784
+ #fortune-split-column td {
2785
+ border: 1px solid #333;
2786
+ display: table-cell;
2787
+ vertical-align: inherit;
2788
+ }
2789
+
2790
+ label {
2791
+ cursor: default;
2792
+ }
2793
+ #fortune-location-condition {
2794
+ min-width: 500px;
2795
+ }
2796
+ #fortune-location-condition .title {
2797
+ background-color: #fff;
2798
+ color: #000;
2799
+ cursor: default;
2800
+ font-size: 16px;
2801
+ font-weight: normal;
2802
+ line-height: 48px;
2803
+ }
2804
+ #fortune-location-condition .listbox {
2805
+ border: 1px solid #dfdfdf;
2806
+ padding: 10px;
2807
+ font-size: 14px;
2808
+ color: #000;
2809
+ }
2810
+ #fortune-location-condition .listbox .listItem {
2811
+ padding: 5px 0;
2812
+ }
2813
+ #fortune-location-condition .listbox .listItem input[type="radio"] {
2814
+ float: left;
2815
+ margin-top: 5px;
2816
+ }
2817
+ #fortune-location-condition .listItem {
2818
+ padding: 5px 0;
2819
+ }
2820
+ #fortune-location-condition .listItem .subItem {
2821
+ height: 30px;
2822
+ padding: 0 10px;
2823
+ display: block;
2824
+ }
2825
+ #fortune-location-condition input[type="radio"] {
2826
+ float: left;
2827
+ margin-top: 3px;
2828
+ }
2829
+ #fortune-location-condition .listbox .listItem .subbox {
2830
+ height: 30px;
2831
+ padding: 0 10px;
2832
+ }
2833
+ #fortune-location-condition .listbox .listItem .subbox .subItem {
2834
+ float: left;
2835
+ margin-right: 5px;
2836
+ }
2837
+ #fortune-location-condition .button-basic {
2838
+ display: inline-block;
2839
+ margin-bottom: 0;
2840
+ font-weight: 400;
2841
+ text-align: center;
2842
+ vertical-align: middle;
2843
+ touch-action: manipulation;
2844
+ cursor: pointer;
2845
+ white-space: nowrap;
2846
+ padding: 4px 8px;
2847
+ font-size: 14px;
2848
+ line-height: 1.42857143;
2849
+ border-radius: 2px;
2850
+ -webkit-user-select: none;
2851
+ -moz-user-select: none;
2852
+ user-select: none;
2853
+ margin-top: 10px;
2854
+ }
2855
+ #fortune-location-condition .button-primary {
2856
+ background: #0188fb;
2857
+ border: 1px solid #0188fb;
2858
+ color: #fff;
2859
+ margin-right: 10px;
2860
+ }
2861
+ #fortune-location-condition .button-close {
2862
+ color: #333;
2863
+ background-color: #fff;
2864
+ border: 1px solid #ccc;
2865
+ }
2866
+
2867
+ .listBox {
2868
+ display: flex;
2869
+ justify-content: space-between;
2870
+ }
2871
+
2872
+ .inpbox {
2873
+ margin-bottom: 10px;
2874
+ }
2875
+
2876
+ .decimal-places-input {
2877
+ width: 70px;
2878
+ }
2879
+
2880
+ .format-list {
2881
+ width: 300px;
2882
+ height: 170px;
2883
+ border: 1px solid #d4d4d4;
2884
+ overflow-y: scroll;
2885
+ }
2886
+
2887
+ .custom-overlay {
2888
+ position: absolute;
2889
+ top: 0;
2890
+ left: 0;
2891
+ z-index: 50;
2892
+ height: 100vh;
2893
+ width: 100%;
2894
+ display: grid;
2895
+ place-items: center;
2896
+ }
2897
+
2898
+ .input-modal {
2899
+ position: fixed;
2900
+ top: 17.5%;
2901
+ left: 50%;
2902
+ transform: translateX(-50%);
2903
+ border-radius: 0.75rem;
2904
+ background-color: #ffffff;
2905
+ padding: 0;
2906
+ border: none;
2907
+ box-shadow: 0px 8px 32px 0px #00000026;
2908
+ animation: fadeIn 0.2s ease-in-out;
2909
+ max-width: 480px;
2910
+ }
2911
+
2912
+ .modal-header {
2913
+ display: flex;
2914
+ gap: 0.5rem;
2915
+ align-items: center;
2916
+ padding: 0.75rem;
2917
+ border-bottom: 1px solid #e5e7eb;
2918
+ height: 52px;
2919
+ width: 100%;
2920
+ }
2921
+
2922
+ .modal-header svg {
2923
+ width: 20px;
2924
+ height: 20px;
2925
+ }
2926
+
2927
+ .fetch-url-button {
2928
+ cursor: pointer;
2929
+ }
2930
+
2931
+ .modal-input {
2932
+ border: none;
2933
+ padding: 0;
2934
+ outline: none;
2935
+ -webkit-user-select: text;
2936
+ -moz-user-select: text;
2937
+ user-select: text;
2938
+ max-width: 218px;
2939
+ flex: 1;
2940
+ }
2941
+
2942
+ @media (min-width: 768px) {
2943
+ .modal-input {
2944
+ max-width: 400px;
2945
+ width: 380px !important;
2946
+ }
2947
+ }
2948
+
2949
+ .modal-input:disabled {
2950
+ opacity: 1;
2951
+ }
2952
+
2953
+ @keyframes fadeIn {
2954
+ from {
2955
+ opacity: 0;
2956
+ transform: translateX(-50%) scale(0.95);
2957
+ }
2958
+ to {
2959
+ opacity: 1;
2960
+ transform: translateX(-50%) scale(1);
2961
+ }
2962
+ }
2963
+
2964
+ .modal-footer {
2965
+ display: flex;
2966
+ justify-content: flex-end;
2967
+ padding: 8px 16px;
2968
+ }
2969
+
2970
+ .modal-button {
2971
+ width: 100%;
2972
+ margin: 8px;
2973
+ }
2974
+
2975
+ .modal-error-message {
2976
+ color: #ef4e2f;
2977
+ background: #fff5f5;
2978
+ margin: 8px 16px;
2979
+ padding: 4px 8px;
2980
+ border-radius: 4px;
2981
+ display: flex;
2982
+ align-items: center;
2983
+ gap: 8px;
2984
+ font-size: 12px;
2985
+ font-weight: 400;
2986
+ }
2987
+
2988
+ .fortune-fx-editor {
2989
+ display: flex;
2990
+ flex-direction: row;
2991
+ height: 28px;
2992
+ border-bottom: 1px solid #d4d4d4;
2993
+ }
2994
+
2995
+ .fortune-fx-icon {
2996
+ display: flex;
2997
+ align-items: center;
2998
+ margin: 0 12px;
2999
+ }
3000
+
3001
+ .fortune-name-box-container {
3002
+ width: 99px;
3003
+ border-right: 1px solid #d4d4d4;
3004
+ font-size: 14px;
3005
+ display: flex;
3006
+ align-items: center;
3007
+ }
3008
+
3009
+ .fortune-name-box {
3010
+ width: 100%;
3011
+ text-align: center;
3012
+ margin: 0;
3013
+ outline: none;
3014
+ cursor: text;
3015
+ /* -webkit-user-modify: read-write-plaintext-only; */
3016
+ white-space: nowrap;
3017
+ overflow: hidden;
3018
+ -webkit-transform: translateZ(0);
3019
+ background-color: white;
3020
+ word-wrap: break-word;
3021
+ -webkit-nbsp-mode: space;
3022
+ -webkit-line-break: after-white-space;
3023
+ }
3024
+
3025
+ .fortune-fx-input-container {
3026
+ padding-left: 10px;
3027
+ overflow: visible;
3028
+ padding: 0;
3029
+ flex: 1;
3030
+ display: flex;
3031
+ align-items: center;
3032
+ position: relative;
3033
+ border-left: 1px solid #e5e5e5;
3034
+ }
3035
+
3036
+ .fortune-fx-input {
3037
+ flex: 1;
3038
+ height: 100%;
3039
+ overflow-y: scroll;
3040
+ padding-left: 2px;
3041
+ font-size: 14px;
3042
+ line-height: 14px;
3043
+ margin: 0;
3044
+ outline: none;
3045
+ cursor: text;
3046
+ white-space: pre-wrap;
3047
+ word-wrap: break-word;
3048
+ -webkit-transform: translateZ(0);
3049
+ -webkit-nbsp-mode: space;
3050
+ -webkit-line-break: after-white-space;
3051
+ background-color: white;
3052
+ padding-top: 7px;
3053
+ box-sizing: border-box;
3054
+ color: black;
3055
+ text-align: left;
3056
+ }
3057
+ .fortune-fx-input[contenteditable="true"] {
3058
+ -webkit-user-modify: read-write-plaintext-only;
3059
+ }
3060
+
3061
+ .luckysheet-sheet-area {
3062
+ width: 100%;
3063
+ box-sizing: border-box;
3064
+ background-color: #fafafc;
3065
+ color: #444;
3066
+ height: 31px;
3067
+ padding: 0 30px 0 44px;
3068
+ margin: 0;
3069
+ -webkit-touch-callout: none;
3070
+ cursor: default;
3071
+ transition: 0.3s ease all;
3072
+ display: flex;
3073
+ align-items: center;
3074
+ justify-content: space-between;
3075
+ position: relative;
3076
+ }
3077
+
3078
+ #luckysheet-sheet-content {
3079
+ width: 0;
3080
+ flex: 3;
3081
+ display: flex;
3082
+ align-items: center;
3083
+ }
3084
+
3085
+ #luckysheet-bottom-pager {
3086
+ width: 0;
3087
+ background-color: #fafafc;
3088
+ z-index: 1;
3089
+ flex: 2;
3090
+ text-align: right;
3091
+ white-space: nowrap;
3092
+ }
3093
+
3094
+ .luckysheet-sheet-area > div,
3095
+ .luckysheet-sheet-area .luckysheet-sheets-item {
3096
+ display: inline-block;
3097
+ /* margin-right: 6px;
3098
+ margin-top: 1px;
3099
+ padding: 1px 6px; */
3100
+ /* padding: 6px 10px; */
3101
+ }
3102
+
3103
+ .fortune-sheettab-container {
3104
+ padding: 0px 0px;
3105
+ margin-left: 0px;
3106
+ position: relative;
3107
+ max-width: 54%;
3108
+ vertical-align: bottom;
3109
+ display: inline-block;
3110
+ }
3111
+
3112
+ .fortune-sheettab-container .boundary {
3113
+ position: absolute;
3114
+ top: 0;
3115
+ width: 6px;
3116
+ height: 100%;
3117
+ z-index: 1;
3118
+ background: rgb(255, 255, 255);
3119
+ }
3120
+
3121
+ .fortune-sheettab-container .boundary-left {
3122
+ left: 0;
3123
+ background-image: linear-gradient(to right, var(--tw-gradient-stops));
3124
+ --tw-gradient-from: #4445;
3125
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, #8880);
3126
+ }
3127
+
3128
+ .fortune-sheettab-container .boundary-right {
3129
+ right: 0;
3130
+ background-image: linear-gradient(to left, var(--tw-gradient-stops));
3131
+ --tw-gradient-from: #4445;
3132
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, #8880);
3133
+ }
3134
+
3135
+ .fortune-sheettab-container .fortune-sheettab-container-c {
3136
+ padding: 0px 0px;
3137
+ margin-left: 0px;
3138
+ overflow: hidden;
3139
+ white-space: nowrap;
3140
+ position: relative;
3141
+ max-width: 100%;
3142
+ vertical-align: bottom;
3143
+ display: inline-block;
3144
+ }
3145
+
3146
+ .luckysheet-sheet-container-menu-hide .luckysheet-sheets-item {
3147
+ padding-right: 5px !important;
3148
+ }
3149
+
3150
+ .luckysheet-sheet-container-menu-hide .luckysheet-sheets-item-menu {
3151
+ display: none !important;
3152
+ }
3153
+
3154
+ .luckysheet-sheet-area div.luckysheet-sheets-item {
3155
+ padding: 2px 6px;
3156
+ height: 29px;
3157
+ line-height: 29px;
3158
+ background-color: #fafafc;
3159
+ color: #676464;
3160
+ min-width: 30px;
3161
+ top: 0px;
3162
+ position: relative;
3163
+ margin-right: -1px;
3164
+ cursor: pointer;
3165
+ transition: all 0.1s;
3166
+ font-size: 13px;
3167
+ padding: 2px 19px 0px 5px;
3168
+ box-sizing: border-box;
3169
+ border-left: 1px solid #e0e0e0;
3170
+ border-right: 1px solid #e0e0e0;
3171
+ vertical-align: middle;
3172
+ }
3173
+
3174
+ .luckysheet-sheet-area div.luckysheet-sheets-item:last-child {
3175
+ margin-right: 1px;
3176
+ }
3177
+
3178
+ .luckysheet-sheet-area div.luckysheet-sheets-item:hover {
3179
+ background-color: #efefef;
3180
+ /* border-color: #a5a5a5; */
3181
+ color: #490500;
3182
+ }
3183
+
3184
+ .luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-menu {
3185
+ margin-left: 2px;
3186
+ display: inline-block;
3187
+ top: -2px;
3188
+ position: relative;
3189
+ color: #a1a1a1;
3190
+ position: absolute;
3191
+ height: 100%;
3192
+ width: 15px;
3193
+ right: 0px;
3194
+ text-align: center;
3195
+ }
3196
+
3197
+ .luckysheet-sheet-area
3198
+ div.luckysheet-sheets-item
3199
+ .luckysheet-sheets-item-menu:hover {
3200
+ color: #2a2a2a;
3201
+ cursor: pointer;
3202
+ }
3203
+
3204
+ .luckysheet-sheet-area div.luckysheet-sheets-item .luckysheet-sheets-item-name {
3205
+ padding: 0px 3px;
3206
+ }
3207
+
3208
+ .luckysheet-sheets-item-color {
3209
+ width: 100%;
3210
+ height: 10%;
3211
+ position: absolute;
3212
+ bottom: 0;
3213
+ left: 0;
3214
+ }
3215
+
3216
+ .luckysheet-sheet-area
3217
+ div.luckysheet-sheets-item
3218
+ .luckysheet-sheets-item-name[contenteditable="true"] {
3219
+ border: 1px solid #d9d9d9;
3220
+ display: inline-block;
3221
+ height: 18px;
3222
+ line-height: 18px;
3223
+ min-width: 8px;
3224
+ margin: -4px -1px;
3225
+ -moz-user-modify: read-write-plaintext-only;
3226
+ -webkit-user-modify: read-write-plaintext-only;
3227
+ -moz-user-select: text !important;
3228
+ -ms-user-select: text !important;
3229
+ -webkit-user-select: text !important;
3230
+ }
3231
+
3232
+ .luckysheet-sheet-area
3233
+ div.luckysheet-sheets-item
3234
+ .luckysheet-sheets-item-name[contenteditable="true"]:focus {
3235
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
3236
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
3237
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
3238
+ border: 1px solid #4d90fe;
3239
+ outline: none;
3240
+ }
3241
+
3242
+ .luckysheet-sheet-area div.luckysheet-sheets-item-active {
3243
+ /* padding: 2px 8px; */
3244
+ height: 29px;
3245
+ line-height: 29px;
3246
+ background-color: #efefef;
3247
+ /* border-color: #aaa; */
3248
+ border-top-color: #fff;
3249
+ color: #222;
3250
+ /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
3251
+ cursor: default;
3252
+ /* top: -2px; */
3253
+ /* border-bottom: none; */
3254
+ /* padding-right: 20px; */
3255
+ }
3256
+
3257
+ .luckysheet-sheet-area div.luckysheet-sheets-item-active:hover {
3258
+ background-color: #ececec;
3259
+ /* border-color: #aaa; */
3260
+ color: #222;
3261
+ }
3262
+
3263
+ .fortune-sheettab-button {
3264
+ display: flex;
3265
+ align-items: center;
3266
+ justify-content: center;
3267
+ height: 29px;
3268
+ width: 29px;
3269
+ }
3270
+
3271
+ .fortune-sheettab-button:hover {
3272
+ display: flex;
3273
+ align-items: center;
3274
+ justify-content: center;
3275
+ height: 29px;
3276
+ width: 29px;
3277
+ background-color: #efefef;
3278
+ }
3279
+
3280
+ .luckysheet-noselected-text {
3281
+ -moz-user-select: -moz-test;
3282
+ -khtml-user-select: none;
3283
+ -webkit-user-select: none;
3284
+ -ms-user-select: none;
3285
+ user-select: none;
3286
+ }
3287
+
3288
+ .fortune-sheettab-scroll {
3289
+ display: flex;
3290
+ align-items: center;
3291
+ padding: 0 5px;
3292
+ height: 29px;
3293
+ cursor: pointer;
3294
+ }
3295
+
3296
+ .fortune-sheettab-scroll:hover {
3297
+ background-color: #e0e0e0;
3298
+ }
3299
+
3300
+ .fortune-sheettab-placeholder {
3301
+ display: inline-block;
3302
+ width: 30px;
3303
+ height: 29px;
3304
+ line-height: 29px;
3305
+ vertical-align: middle;
3306
+ }
3307
+
3308
+ .sheet-list-container {
3309
+ overflow: visible;
3310
+ display: flex;
3311
+ flex-direction: column;
3312
+ justify-content: flex-end;
3313
+ }
3314
+
3315
+ .luckysheet-sheet-selection-calInfo {
3316
+ display: flex;
3317
+ font-size: 12px;
3318
+ align-content: center;
3319
+ padding: 0 0 0 44px;
3320
+ height: 22px;
3321
+ align-self: flex-end;
3322
+ }
3323
+
3324
+ .luckysheet-sheet-selection-calInfo div {
3325
+ margin: auto 0;
3326
+ white-space: nowrap;
3327
+ margin-right: 7px;
3328
+ }
3329
+
3330
+ .luckysheet-sheets-item-function {
3331
+ width: 12px;
3332
+ height: 24px;
3333
+ position: absolute;
3334
+ top: 4px;
3335
+ right: 2px;
3336
+ }
3337
+
3338
+ .fortune-sheet-area-right {
3339
+ display: flex !important;
3340
+ }
3341
+
3342
+ .fortune-zoom-container {
3343
+ white-space: nowrap;
3344
+ overflow: visible;
3345
+ display: flex;
3346
+ align-items: center;
3347
+ -webkit-user-select: none;
3348
+ -moz-user-select: none;
3349
+ user-select: none;
3350
+ }
3351
+
3352
+ .fortune-zoom-button {
3353
+ display: flex;
3354
+ cursor: pointer;
3355
+ align-items: center;
3356
+ justify-content: center;
3357
+ width: 24px;
3358
+ height: 24px;
3359
+ }
3360
+
3361
+ .fortune-zoom-button:hover {
3362
+ background: #efefef;
3363
+ }
3364
+
3365
+ .fortune-zoom-ratio {
3366
+ position: relative;
3367
+ display: flex;
3368
+ justify-content: center;
3369
+ width: 48px;
3370
+ color: #1e1e1f;
3371
+ font-size: 12px;
3372
+ cursor: pointer;
3373
+ }
3374
+
3375
+ .fortune-zoom-ratio-current {
3376
+ width: 100%;
3377
+ }
3378
+
3379
+ .fortune-zoom-ratio-item:hover {
3380
+ background: #efefef;
3381
+ }
3382
+
3383
+ .fortune-zoom-ratio-menu {
3384
+ position: absolute;
3385
+ bottom: 30px;
3386
+ left: 0;
3387
+ line-height: 24px;
3388
+ box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
3389
+ padding: 10px 0px 10px 0px;
3390
+ border-radius: 6px;
3391
+ background: white;
3392
+ z-index: 1004;
3393
+ }
3394
+
3395
+ .fortune-zoom-ratio-text {
3396
+ padding: 0px 10px 0px 10px;
3397
+ }
3398
+
3399
+ .fortune-context-menu {
3400
+ min-width: 240px;
3401
+ max-height: 100%;
3402
+ overflow-y: auto;
3403
+ border-radius: 8px;
3404
+ box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
3405
+ transition: opacity 0.218s;
3406
+ background: #fff;
3407
+ border: 1px solid hsl(var(--color-border-default));
3408
+ cursor: default;
3409
+ margin: 0;
3410
+ outline: none;
3411
+ padding: 8px;
3412
+ position: absolute;
3413
+ z-index: 1004;
3414
+ box-sizing: border-box;
3415
+ -webkit-user-select: none;
3416
+ -moz-user-select: none;
3417
+ user-select: none;
3418
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
3419
+ font-size: 14px;
3420
+ /* max-width: 250px; */
3421
+ color: hsl(var(--color-text-default));
3422
+ line-height: 20px;
3423
+ }
3424
+
3425
+ .context-item {
3426
+ display: flex;
3427
+ align-items: center;
3428
+ height: 20px;
3429
+ cursor: pointer;
3430
+ border-radius: 4px;
3431
+ gap: 12px;
3432
+ }
3433
+
3434
+ .context-item:hover {
3435
+ background: hsl(var(--color-bg-default-hover));
3436
+ transition: all 0.2s ease-in-out;
3437
+ }
3438
+
3439
+ .context-item svg {
3440
+ width: 18px !important;
3441
+ height: 18px !important;
3442
+ }
3443
+
3444
+ .fortune-context-menu input.luckysheet-mousedown-cancel {
3445
+ width: 35px;
3446
+ text-align: center;
3447
+ margin-left: 5px;
3448
+ margin-right: 5px;
3449
+ }
3450
+
3451
+ .fortune-context-menu-divider {
3452
+ width: "100%";
3453
+ height: 1px;
3454
+ margin: 4px 0;
3455
+ background-color: #e0e0e0;
3456
+ }
3457
+
3458
+ .luckysheet-cols-menu .luckysheet-cols-menuitem {
3459
+ position: relative;
3460
+ color: #333;
3461
+ cursor: pointer;
3462
+ list-style: none;
3463
+ margin: 0;
3464
+ white-space: nowrap;
3465
+ vertical-align: middle;
3466
+ -webkit-user-select: none;
3467
+ -moz-user-select: none;
3468
+ user-select: none;
3469
+ border-radius: 4px;
3470
+ }
3471
+
3472
+ /* 右击菜单项目 hover背景色 */
3473
+ .luckysheet-cols-menu .luckysheet-cols-menuitem:hover,
3474
+ .luckysheet-cols-menu .luckysheet-cols-menuitem-hover {
3475
+ background: hsl(var(--color-bg-default-hover));
3476
+ transition: all 0.2s ease-in-out;
3477
+ }
3478
+
3479
+ .luckysheet-cols-menu
3480
+ .luckysheet-cols-menuitem
3481
+ .luckysheet-cols-menuitem-content {
3482
+ position: relative;
3483
+ color: #333;
3484
+ cursor: pointer;
3485
+ list-style: none;
3486
+ margin: 0;
3487
+ padding: 8px !important;
3488
+ white-space: nowrap;
3489
+ -webkit-user-select: none;
3490
+ -moz-user-select: none;
3491
+ user-select: none;
3492
+ display: flex;
3493
+ align-items: center;
3494
+ gap: 8px;
3495
+ }
3496
+
3497
+ .fortune-filter-menu .luckysheet-cols-menuitem {
3498
+ padding: 0px;
3499
+ }
3500
+
3501
+ .fortune-filter-menu
3502
+ .luckysheet-cols-menuitem
3503
+ .luckysheet-cols-menuitem-content {
3504
+ padding: 7px 24px;
3505
+ }
3506
+
3507
+ .fortune-menuitem-row {
3508
+ display: flex;
3509
+ white-space: pre;
3510
+ align-items: center;
3511
+ gap: 8px;
3512
+ justify-content: flex-end;
3513
+ }
3514
+
3515
+ .fortune-byvalue-btn {
3516
+ cursor: pointer;
3517
+ color: blue;
3518
+ text-decoration: underline;
3519
+ }
3520
+
3521
+ .luckysheet-filter-bycolor-submenu .button-basic,
3522
+ .fortune-filter-menu .button-basic {
3523
+ display: flex;
3524
+ flex-flow: row nowrap;
3525
+ justify-content: center;
3526
+ align-items: center;
3527
+ font-size: 14px;
3528
+ padding: 4px 8px;
3529
+ border-radius: 4px;
3530
+ cursor: pointer;
3531
+ }
3532
+
3533
+ .luckysheet-filter-bycolor-submenu .button-basic {
3534
+ margin: 5px 20px;
3535
+ }
3536
+
3537
+ .luckysheet-filter-bycolor-submenu .button-default,
3538
+ .fortune-filter-menu .button-default {
3539
+ color: rgb(38, 42, 51);
3540
+ background-color: rgb(255, 255, 255);
3541
+ border: 1px solid rgb(235, 235, 235);
3542
+ margin-left: 10px;
3543
+ }
3544
+
3545
+ .luckysheet-filter-bycolor-submenu .button-default:hover,
3546
+ .fortune-filter-menu .button-default:hover {
3547
+ background-color: #e6e6e6;
3548
+ }
3549
+
3550
+ .luckysheet-filter-bycolor-submenu .button-primary,
3551
+ .fortune-filter-menu .button-primary {
3552
+ color: white;
3553
+ background-color: #0188fb;
3554
+ }
3555
+
3556
+ .luckysheet-filter-bycolor-submenu .button-primary:hover,
3557
+ .fortune-filter-menu .button-primary:hover {
3558
+ background: #5391ff;
3559
+ }
3560
+
3561
+ .fortune-filter-menu .button-danger {
3562
+ color: white;
3563
+ background-color: #d9534f;
3564
+ margin-left: 10px;
3565
+ }
3566
+
3567
+ .fortune-filter-menu .button-danger:hover {
3568
+ background-color: #c9302c;
3569
+ }
3570
+
3571
+ .filter-bycolor-container {
3572
+ display: flex;
3573
+ justify-content: space-between;
3574
+ align-items: center;
3575
+ }
3576
+
3577
+ .filtermenu-input-container {
3578
+ padding: 0px;
3579
+ }
3580
+
3581
+ .filtermenu-input-container input.luckysheet-mousedown-cancel {
3582
+ margin: 0px 20px;
3583
+ width: 230px;
3584
+ box-sizing: border-box;
3585
+ height: 26px;
3586
+ border-radius: 3px;
3587
+ border: 1px solid #d9d9d9;
3588
+ font-size: 12px;
3589
+ padding: 1px 8px;
3590
+ outline: none;
3591
+ -webkit-user-select: auto;
3592
+ -moz-user-select: auto;
3593
+ -ms-user-select: auto;
3594
+ user-select: auto;
3595
+ text-align: start;
3596
+ }
3597
+
3598
+ .filtermenu-input-container input.luckysheet-mousedown-cancel {
3599
+ border: 1px solid #a1a1a1;
3600
+ }
3601
+
3602
+ .filtermenu-input-container input.luckysheet-mousedown-cancel:focus {
3603
+ border: 1px solid rgb(1, 136, 251);
3604
+ outline: none;
3605
+ }
3606
+
3607
+ .byvalue-btn-row {
3608
+ justify-content: space-between;
3609
+ padding-bottom: 0px;
3610
+ align-items: flex-start;
3611
+ }
3612
+
3613
+ .filter-caret {
3614
+ width: 0;
3615
+ height: 0;
3616
+ display: inline-block;
3617
+ border: 4px solid transparent;
3618
+ }
3619
+
3620
+ .filter-caret.right {
3621
+ margin-left: 2px;
3622
+ margin-right: 3px;
3623
+ border-left-color: #000000;
3624
+ }
3625
+
3626
+ .filter-caret.down {
3627
+ margin-top: 5px;
3628
+ margin-right: 5px;
3629
+ border-top-color: #000000;
3630
+ }
3631
+
3632
+ .filter-checkbox {
3633
+ margin-left: 0px;
3634
+ margin-right: 5px;
3635
+ }
3636
+
3637
+ #luckysheet-filter-byvalue-select {
3638
+ position: relative;
3639
+ min-height: 100px;
3640
+ max-height: 210px;
3641
+ overflow-y: auto;
3642
+ overflow-x: hidden;
3643
+ padding: 8px;
3644
+ display: flex;
3645
+ flex-direction: column;
3646
+ gap: 8px;
3647
+ border-radius: 4px;
3648
+ border: 1px solid hsl(var(--color-border-default));
3649
+ }
3650
+
3651
+ #luckysheet-filter-byvalue-select .count,
3652
+ #luckysheet-pivotTableFilter-byvalue-select .count {
3653
+ color: hsl(var(--color-text-secondary));
3654
+ font-size: 14px;
3655
+ }
3656
+
3657
+ #luckysheet-filter-byvalue-select .select-item {
3658
+ display: flex;
3659
+ align-items: center;
3660
+ justify-content: space-between;
3661
+ gap: 8px;
3662
+ font-size: 14px;
3663
+ }
3664
+
3665
+ /*颜色筛选 -- pan*/
3666
+ .luckysheet-filter-bycolor-submenu {
3667
+ position: absolute;
3668
+ min-width: 170px;
3669
+ font-size: 12px;
3670
+ padding: 5px 0;
3671
+ z-index: 1004;
3672
+ border: 1px solid rgba(0, 0, 0, 0.2);
3673
+ background-color: #ffffff;
3674
+ }
3675
+
3676
+ .luckysheet-filter-bycolor-submenu .title {
3677
+ padding: 10px;
3678
+ font-weight: 600;
3679
+ color: #333;
3680
+ background-color: #f4f4f4;
3681
+ text-align: center;
3682
+ }
3683
+
3684
+ .luckysheet-filter-bycolor-submenu .one-color-tip {
3685
+ padding: 7px 30px;
3686
+ text-align: center;
3687
+ }
3688
+
3689
+ .luckysheet-filter-bycolor-submenu .color-list {
3690
+ max-height: 128px;
3691
+ overflow: auto;
3692
+ }
3693
+
3694
+ .luckysheet-filter-bycolor-submenu .item {
3695
+ padding: 5px 40px 5px 20px;
3696
+ cursor: pointer;
3697
+ position: relative;
3698
+ background-color: #ffffff;
3699
+ }
3700
+
3701
+ .luckysheet-filter-bycolor-submenu .item:hover {
3702
+ background-color: #d3d3d3;
3703
+ }
3704
+
3705
+ .luckysheet-filter-bycolor-submenu .item .color-label {
3706
+ display: block;
3707
+ width: 70px;
3708
+ height: 20px;
3709
+ border: 1px solid #d1d1d1;
3710
+ }
3711
+
3712
+ .luckysheet-filter-bycolor-submenu .item input[type="checkbox"] {
3713
+ position: absolute;
3714
+ right: 10px;
3715
+ top: 6px;
3716
+ }
3717
+
3718
+ .change-color-triangle {
3719
+ position: absolute;
3720
+ top: 3px;
3721
+ right: -18px;
3722
+ }
3723
+
3724
+ .tippy-box {
3725
+ background-color: transparent !important;
3726
+ }
3727
+
3728
+ .tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
3729
+ #fortune-change-color {
3730
+ min-width: 164px;
3731
+ background: hsl(var(--color-bg-default));
3732
+ position: absolute;
3733
+ top: -100px;
3734
+ left: 232px;
3735
+ border-radius: 6px;
3736
+ padding: 8px;
3737
+ box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
3738
+ border: 1px solid hsl(var(--color-border-default));
3739
+ display: flex;
3740
+ flex-direction: column;
3741
+ gap: 8px;
3742
+ }
3743
+
3744
+ #fortune-change-color .color-reset {
3745
+ position: relative;
3746
+ color: hsl(var(--color-text-default));
3747
+ cursor: pointer;
3748
+ list-style: none;
3749
+ padding: 4px 8px;
3750
+ white-space: nowrap;
3751
+ vertical-align: middle;
3752
+ padding-right: 24px;
3753
+ -webkit-user-select: none;
3754
+ -moz-user-select: none;
3755
+ user-select: none;
3756
+ border-radius: 4px;
3757
+ background: hsl(var(--color-bg-default));
3758
+ height: 30px;
3759
+ display: flex;
3760
+ align-items: center;
3761
+ gap: 10px;
3762
+ font-size: 14px;
3763
+ font-weight: 500;
3764
+ line-height: 20px;
3765
+ }
3766
+
3767
+ #fortune-change-color .color-reset:hover {
3768
+ background: hsl(var(--color-bg-default-hover));
3769
+ transition: all 0.2s ease-in-out;
3770
+ }
3771
+
3772
+ #fortune-change-color .custom-color {
3773
+ position: relative;
3774
+ margin: auto;
3775
+ padding: 10px;
3776
+ border-radius: 6px;
3777
+ background: white;
3778
+ display: flex;
3779
+ align-items: center;
3780
+ margin: 1px 0px;
3781
+ display: flex;
3782
+ justify-content: space-around;
3783
+ }
3784
+
3785
+ .button-basic {
3786
+ display: inline-block;
3787
+ margin-bottom: 0;
3788
+ font-weight: 400;
3789
+ text-align: center;
3790
+ vertical-align: middle;
3791
+ touch-action: manipulation;
3792
+ cursor: pointer;
3793
+ white-space: nowrap;
3794
+ padding: 4px 8px;
3795
+ font-size: 12px;
3796
+ line-height: 1.42857143;
3797
+ border-radius: 2px;
3798
+ -webkit-user-select: none;
3799
+ -moz-user-select: none;
3800
+ user-select: none;
3801
+ }
3802
+
3803
+ .button-primary {
3804
+ background: #0188fb;
3805
+ border: 1px solid #0188fb;
3806
+ color: #fff;
3807
+ margin-right: -4px;
3808
+ }
3809
+
3810
+ .fortune-sheet-list {
3811
+ overflow-y: auto;
3812
+ overflow-x: hidden;
3813
+ min-width: 120px;
3814
+ position: absolute;
3815
+ z-index: 10002;
3816
+ bottom: 53px;
3817
+ margin-left: 72px;
3818
+ max-height: 60%;
3819
+ }
3820
+
3821
+ .fortune-sheet-list-item {
3822
+ height: 30px;
3823
+ line-height: 30px;
3824
+ width: 100%;
3825
+ cursor: pointer;
3826
+ border-radius: 4px;
3827
+ }
3828
+
3829
+ .fortune-sheet-list-item-name {
3830
+ margin-right: 15px;
3831
+ position: relative;
3832
+ }
3833
+
3834
+ .fortune-sheet-list-item-name .luckysheet-sheets-list-item-color {
3835
+ width: 6%;
3836
+ height: 100%;
3837
+ position: absolute;
3838
+ bottom: 0;
3839
+ left: -6px;
3840
+ }
3841
+
3842
+ .fortune-sheet-list :hover {
3843
+ background-color: hsl(var(--color-bg-default-hover));
3844
+ transition: background-color 0.2s ease-in-out;
3845
+ }
3846
+
3847
+ .fortune-sheet-hidden-button {
3848
+ margin-right: 15px;
3849
+ display: inline-flex;
3850
+ position: absolute;
3851
+ right: 0;
3852
+ justify-content: flex-end;
3853
+ }
3854
+
3855
+ .fortune-sheet-hidden-button :hover {
3856
+ background-color: #d0d0d0;
3857
+ }
3858
+
3859
+ .fortune-dune-preview {
3860
+ position: absolute;
3861
+ background-color: #fff;
3862
+ border: 1px solid #e8ebec;
3863
+ border-radius: 4px;
3864
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
3865
+ width: 270px;
3866
+ z-index: 1000;
3867
+ display: flex;
3868
+ flex-direction: column;
3869
+ padding: 8px;
3870
+ gap: 8px;
3871
+ }
3872
+
3873
+ .fortune-dune-preview-header {
3874
+ display: flex;
3875
+ justify-content: space-between;
3876
+ align-items: center;
3877
+ }
3878
+
3879
+ .fortune-dune-preview-title {
3880
+ font-size: 14px;
3881
+ font-weight: 500;
3882
+ color: #363b3f;
3883
+ }
3884
+
3885
+ .fortune-dune-preview-content {
3886
+ flex: 1;
3887
+ overflow: hidden;
3888
+ position: relative;
3889
+ border-radius: 4px;
3890
+ border: 1px solid #f8f9fa;
3891
+ }
3892
+
3893
+ .fortune-dune-preview-footer {
3894
+ display: flex;
3895
+ justify-content: flex-end;
3896
+ gap: 10px;
3897
+ }
3898
+
3899
+ .fortune-dune-preview-button {
3900
+ padding: 4px 12px;
3901
+ border-radius: 4px;
3902
+ font-size: 14px;
3903
+ cursor: pointer;
3904
+ transition: all 0.2s ease;
3905
+ min-width: 80px;
3906
+ }
3907
+
3908
+ .fortune-dune-preview-button:hover {
3909
+ background-color: #f5f5f5;
3910
+ }
3911
+
3912
+ .fortune-dune-preview-button.primary {
3913
+ background-color: #000000;
3914
+ color: #fff;
3915
+ }