@ticatec/uniface-element 0.1.9

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 (542) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +4 -0
  3. package/dist/UnifaceResource.d.ts +43 -0
  4. package/dist/UnifaceResource.js +57 -0
  5. package/dist/accordion/Accordion.svelte +43 -0
  6. package/dist/accordion/Accordion.svelte.d.ts +29 -0
  7. package/dist/accordion/AccordionItem.d.ts +14 -0
  8. package/dist/accordion/AccordionItem.js +1 -0
  9. package/dist/accordion/AccordionItemView.svelte +34 -0
  10. package/dist/accordion/AccordionItemView.svelte.d.ts +33 -0
  11. package/dist/accordion/index.d.ts +4 -0
  12. package/dist/accordion/index.js +2 -0
  13. package/dist/action-bar/ActionBar.svelte +24 -0
  14. package/dist/action-bar/ActionBar.svelte.d.ts +32 -0
  15. package/dist/action-bar/ButtonAction.d.ts +25 -0
  16. package/dist/action-bar/ButtonAction.js +1 -0
  17. package/dist/action-bar/index.d.ts +5 -0
  18. package/dist/action-bar/index.js +2 -0
  19. package/dist/app-layout/ClassicLayout.svelte +75 -0
  20. package/dist/app-layout/ClassicLayout.svelte.d.ts +46 -0
  21. package/dist/app-layout/HeaderLayout.svelte +44 -0
  22. package/dist/app-layout/HeaderLayout.svelte.d.ts +37 -0
  23. package/dist/app-layout/SidebarLayout.svelte +43 -0
  24. package/dist/app-layout/SidebarLayout.svelte.d.ts +37 -0
  25. package/dist/app-layout/index.d.ts +4 -0
  26. package/dist/app-layout/index.js +4 -0
  27. package/dist/app-top-bar/AppTopBar.svelte +25 -0
  28. package/dist/app-top-bar/AppTopBar.svelte.d.ts +34 -0
  29. package/dist/app-top-bar/index.d.ts +2 -0
  30. package/dist/app-top-bar/index.js +2 -0
  31. package/dist/assets/arrow_down.svg +1 -0
  32. package/dist/assets/arrow_up.svg +1 -0
  33. package/dist/assets/calendar_icon.svg +1 -0
  34. package/dist/assets/delete_icon.svg +1 -0
  35. package/dist/assets/icon-dropdown.svg +1 -0
  36. package/dist/assets/icon_left.svg +1 -0
  37. package/dist/assets/icon_right.svg +1 -0
  38. package/dist/assets/loading.gif +0 -0
  39. package/dist/assets/pickup-options.svg +1 -0
  40. package/dist/assets/retry.png +0 -0
  41. package/dist/attachment-files/AttachmentFile.d.ts +26 -0
  42. package/dist/attachment-files/AttachmentFile.js +59 -0
  43. package/dist/attachment-files/AttachmentFilesField.svelte +77 -0
  44. package/dist/attachment-files/AttachmentFilesField.svelte.d.ts +32 -0
  45. package/dist/attachment-files/FileRender.svelte +65 -0
  46. package/dist/attachment-files/FileRender.svelte.d.ts +23 -0
  47. package/dist/attachment-files/FileUpload.d.ts +22 -0
  48. package/dist/attachment-files/FileUpload.js +1 -0
  49. package/dist/attachment-files/FileUploadBar.svelte +66 -0
  50. package/dist/attachment-files/FileUploadBar.svelte.d.ts +22 -0
  51. package/dist/attachment-files/FileUploadPanel.svelte +130 -0
  52. package/dist/attachment-files/FileUploadPanel.svelte.d.ts +28 -0
  53. package/dist/attachment-files/UploadFile.d.ts +43 -0
  54. package/dist/attachment-files/UploadFile.js +80 -0
  55. package/dist/attachment-files/excel.svg +1 -0
  56. package/dist/attachment-files/file.svg +1 -0
  57. package/dist/attachment-files/image.svg +1 -0
  58. package/dist/attachment-files/index.d.ts +10 -0
  59. package/dist/attachment-files/index.js +8 -0
  60. package/dist/attachment-files/pdf.svg +1 -0
  61. package/dist/attachment-files/ppt.svg +1 -0
  62. package/dist/attachment-files/sound.svg +1 -0
  63. package/dist/attachment-files/video.svg +1 -0
  64. package/dist/attachment-files/word.svg +1 -0
  65. package/dist/base-calendar/CalendarBase.svelte +116 -0
  66. package/dist/base-calendar/CalendarBase.svelte.d.ts +34 -0
  67. package/dist/base-calendar/CalendarDay.d.ts +7 -0
  68. package/dist/base-calendar/CalendarDay.js +1 -0
  69. package/dist/base-calendar/DateContext.d.ts +27 -0
  70. package/dist/base-calendar/DateContext.js +109 -0
  71. package/dist/base-calendar/MonthPickupPanel.svelte +29 -0
  72. package/dist/base-calendar/MonthPickupPanel.svelte.d.ts +22 -0
  73. package/dist/base-calendar/MonthlyCalendar.svelte +118 -0
  74. package/dist/base-calendar/MonthlyCalendar.svelte.d.ts +34 -0
  75. package/dist/base-calendar/YearPickupPanel.svelte +53 -0
  76. package/dist/base-calendar/YearPickupPanel.svelte.d.ts +23 -0
  77. package/dist/base-calendar/dateUtils.d.ts +9 -0
  78. package/dist/base-calendar/dateUtils.js +34 -0
  79. package/dist/base-calendar/index.d.ts +5 -0
  80. package/dist/base-calendar/index.js +5 -0
  81. package/dist/box/Box.svelte +24 -0
  82. package/dist/box/Box.svelte.d.ts +34 -0
  83. package/dist/box/index.d.ts +2 -0
  84. package/dist/box/index.js +2 -0
  85. package/dist/button/Button.svelte +41 -0
  86. package/dist/button/Button.svelte.d.ts +37 -0
  87. package/dist/button/ButtonType.d.ts +1 -0
  88. package/dist/button/ButtonType.js +1 -0
  89. package/dist/button/IconButton.svelte +31 -0
  90. package/dist/button/IconButton.svelte.d.ts +34 -0
  91. package/dist/button/README.md +0 -0
  92. package/dist/button/TextButton.svelte +34 -0
  93. package/dist/button/TextButton.svelte.d.ts +35 -0
  94. package/dist/button/index.d.ts +8 -0
  95. package/dist/button/index.js +6 -0
  96. package/dist/card/Card.svelte +37 -0
  97. package/dist/card/Card.svelte.d.ts +37 -0
  98. package/dist/card/CardAction.d.ts +5 -0
  99. package/dist/card/CardAction.js +1 -0
  100. package/dist/card/CardHeader.svelte +8 -0
  101. package/dist/card/CardHeader.svelte.d.ts +20 -0
  102. package/dist/card/CommonCardActionBar.svelte +27 -0
  103. package/dist/card/CommonCardActionBar.svelte.d.ts +21 -0
  104. package/dist/card/index.d.ts +4 -0
  105. package/dist/card/index.js +2 -0
  106. package/dist/cascade-options-select/CascadeOptionSelect.svelte +111 -0
  107. package/dist/cascade-options-select/CascadeOptionSelect.svelte.d.ts +1 -0
  108. package/dist/cascade-options-select/CascadePanel.svelte +52 -0
  109. package/dist/cascade-options-select/CascadePanel.svelte.d.ts +26 -0
  110. package/dist/cascade-options-select/OptionsBox.svelte +24 -0
  111. package/dist/cascade-options-select/OptionsBox.svelte.d.ts +26 -0
  112. package/dist/cascade-options-select/README.md +3 -0
  113. package/dist/cascade-options-select/index.d.ts +2 -0
  114. package/dist/cascade-options-select/index.js +2 -0
  115. package/dist/checkbox/CheckBox.svelte +48 -0
  116. package/dist/checkbox/CheckBox.svelte.d.ts +29 -0
  117. package/dist/checkbox/README.md +0 -0
  118. package/dist/checkbox/index.d.ts +2 -0
  119. package/dist/checkbox/index.js +2 -0
  120. package/dist/common/CommonPicker.svelte +56 -0
  121. package/dist/common/CommonPicker.svelte.d.ts +48 -0
  122. package/dist/common/DateFormats.d.ts +5 -0
  123. package/dist/common/DateFormats.js +6 -0
  124. package/dist/common/DisplayMode.d.ts +4 -0
  125. package/dist/common/DisplayMode.js +5 -0
  126. package/dist/common/FullscreenOverlay.svelte +18 -0
  127. package/dist/common/FullscreenOverlay.svelte.d.ts +29 -0
  128. package/dist/common/ModalPopover.svelte +28 -0
  129. package/dist/common/ModalPopover.svelte.d.ts +30 -0
  130. package/dist/common/MouseClickHandler.d.ts +1 -0
  131. package/dist/common/MouseClickHandler.js +1 -0
  132. package/dist/common/OnChangeHandler.d.ts +1 -0
  133. package/dist/common/OnChangeHandler.js +1 -0
  134. package/dist/common/OnSelectHandler.d.ts +1 -0
  135. package/dist/common/OnSelectHandler.js +1 -0
  136. package/dist/common/Popover.svelte +110 -0
  137. package/dist/common/Popover.svelte.d.ts +35 -0
  138. package/dist/common/ShowHint.d.ts +1 -0
  139. package/dist/common/ShowHint.js +1 -0
  140. package/dist/common/date-utils.d.ts +5 -0
  141. package/dist/common/date-utils.js +7 -0
  142. package/dist/common/uniface-utils.d.ts +3 -0
  143. package/dist/common/uniface-utils.js +18 -0
  144. package/dist/common/utils.d.ts +13 -0
  145. package/dist/common/utils.js +141 -0
  146. package/dist/common-editor/CommonEditor.svelte +68 -0
  147. package/dist/common-editor/CommonEditor.svelte.d.ts +48 -0
  148. package/dist/common-editor/DateInput.svelte +27 -0
  149. package/dist/common-editor/DateInput.svelte.d.ts +29 -0
  150. package/dist/common-editor/NumberInput.svelte +104 -0
  151. package/dist/common-editor/NumberInput.svelte.d.ts +35 -0
  152. package/dist/common-range-editor/CommonRangeEditor.svelte +30 -0
  153. package/dist/common-range-editor/CommonRangeEditor.svelte.d.ts +44 -0
  154. package/dist/common-range-editor/index.d.ts +2 -0
  155. package/dist/common-range-editor/index.js +2 -0
  156. package/dist/context-menu/ContextMenu.svelte +85 -0
  157. package/dist/context-menu/ContextMenu.svelte.d.ts +23 -0
  158. package/dist/context-menu/ContextMenuItem.d.ts +15 -0
  159. package/dist/context-menu/ContextMenuItem.js +1 -0
  160. package/dist/context-menu/index.d.ts +5 -0
  161. package/dist/context-menu/index.js +2 -0
  162. package/dist/criteria-field/CriteriaField.svelte +22 -0
  163. package/dist/criteria-field/CriteriaField.svelte.d.ts +36 -0
  164. package/dist/criteria-field/index.d.ts +2 -0
  165. package/dist/criteria-field/index.js +2 -0
  166. package/dist/data-table/DataTable.svelte +89 -0
  167. package/dist/data-table/DataTable.svelte.d.ts +30 -0
  168. package/dist/data-table/UniDataTable.d.ts +28 -0
  169. package/dist/data-table/UniDataTable.js +79 -0
  170. package/dist/data-table/assets/loading.gif +0 -0
  171. package/dist/data-table/index.d.ts +10 -0
  172. package/dist/data-table/index.js +2 -0
  173. package/dist/data-table/lib/ActionsColumn.d.ts +15 -0
  174. package/dist/data-table/lib/ActionsColumn.js +1 -0
  175. package/dist/data-table/lib/AdvColumn.d.ts +36 -0
  176. package/dist/data-table/lib/AdvColumn.js +1 -0
  177. package/dist/data-table/lib/CommonHeaderCell.d.ts +37 -0
  178. package/dist/data-table/lib/CommonHeaderCell.js +1 -0
  179. package/dist/data-table/lib/CompareFunction.d.ts +3 -0
  180. package/dist/data-table/lib/CompareFunction.js +2 -0
  181. package/dist/data-table/lib/DataColumn.d.ts +58 -0
  182. package/dist/data-table/lib/DataColumn.js +1 -0
  183. package/dist/data-table/lib/FixedColumns.d.ts +15 -0
  184. package/dist/data-table/lib/FixedColumns.js +1 -0
  185. package/dist/data-table/lib/FormatCell.d.ts +2 -0
  186. package/dist/data-table/lib/FormatCell.js +1 -0
  187. package/dist/data-table/lib/HrefLink.d.ts +12 -0
  188. package/dist/data-table/lib/HrefLink.js +1 -0
  189. package/dist/data-table/lib/IndicatorColumn.d.ts +27 -0
  190. package/dist/data-table/lib/IndicatorColumn.js +1 -0
  191. package/dist/data-table/lib/OrderDirection.d.ts +4 -0
  192. package/dist/data-table/lib/OrderDirection.js +5 -0
  193. package/dist/data-table/lib/RowAction.d.ts +21 -0
  194. package/dist/data-table/lib/RowAction.js +1 -0
  195. package/dist/data-table/lib/TabContext.d.ts +4 -0
  196. package/dist/data-table/lib/TabContext.js +4 -0
  197. package/dist/data-table/lib/TableColumns.d.ts +9 -0
  198. package/dist/data-table/lib/TableColumns.js +12 -0
  199. package/dist/data-table/lib/TableUtils.d.ts +4 -0
  200. package/dist/data-table/lib/TableUtils.js +18 -0
  201. package/dist/data-table/lib/clickOutSide.d.ts +3 -0
  202. package/dist/data-table/lib/clickOutSide.js +16 -0
  203. package/dist/data-table/parts/ActionsPanel.svelte +59 -0
  204. package/dist/data-table/parts/ActionsPanel.svelte.d.ts +26 -0
  205. package/dist/data-table/parts/ActionsRow.svelte +105 -0
  206. package/dist/data-table/parts/ActionsRow.svelte.d.ts +26 -0
  207. package/dist/data-table/parts/ContentPanel.svelte +148 -0
  208. package/dist/data-table/parts/ContentPanel.svelte.d.ts +33 -0
  209. package/dist/data-table/parts/DataCell.svelte +41 -0
  210. package/dist/data-table/parts/DataCell.svelte.d.ts +24 -0
  211. package/dist/data-table/parts/DataRow.svelte +29 -0
  212. package/dist/data-table/parts/DataRow.svelte.d.ts +25 -0
  213. package/dist/data-table/parts/FixedColumnsPanel.svelte +49 -0
  214. package/dist/data-table/parts/FixedColumnsPanel.svelte.d.ts +31 -0
  215. package/dist/data-table/parts/FixedHeaderPanel.svelte +45 -0
  216. package/dist/data-table/parts/FixedHeaderPanel.svelte.d.ts +26 -0
  217. package/dist/data-table/parts/FixedRow.svelte +50 -0
  218. package/dist/data-table/parts/FixedRow.svelte.d.ts +31 -0
  219. package/dist/data-table/parts/HrefCell.svelte +22 -0
  220. package/dist/data-table/parts/HrefCell.svelte.d.ts +22 -0
  221. package/dist/data-table/parts/LinkButton.svelte +19 -0
  222. package/dist/data-table/parts/LinkButton.svelte.d.ts +22 -0
  223. package/dist/data-table/parts/PopupMenu.svelte +45 -0
  224. package/dist/data-table/parts/PopupMenu.svelte.d.ts +30 -0
  225. package/dist/data-table/parts/TableHeaderPanel.svelte +109 -0
  226. package/dist/data-table/parts/TableHeaderPanel.svelte.d.ts +34 -0
  227. package/dist/data-table/parts/TableRow.d.ts +14 -0
  228. package/dist/data-table/parts/TableRow.js +35 -0
  229. package/dist/data-table/parts/TableRows.d.ts +9 -0
  230. package/dist/data-table/parts/TableRows.js +15 -0
  231. package/dist/data-table/parts/TextCell.svelte +35 -0
  232. package/dist/data-table/parts/TextCell.svelte.d.ts +22 -0
  233. package/dist/date-picker/DatePicker.svelte +85 -0
  234. package/dist/date-picker/DatePicker.svelte.d.ts +37 -0
  235. package/dist/date-picker/DateTimePicker.svelte +138 -0
  236. package/dist/date-picker/DateTimePicker.svelte.d.ts +38 -0
  237. package/dist/date-picker/README.md +0 -0
  238. package/dist/date-picker/ScrollBar.svelte +113 -0
  239. package/dist/date-picker/ScrollBar.svelte.d.ts +24 -0
  240. package/dist/date-picker/TimePanel.svelte +39 -0
  241. package/dist/date-picker/TimePanel.svelte.d.ts +26 -0
  242. package/dist/date-picker/index.d.ts +4 -0
  243. package/dist/date-picker/index.js +4 -0
  244. package/dist/date-range/DateRangeEditor.svelte +82 -0
  245. package/dist/date-range/DateRangeEditor.svelte.d.ts +31 -0
  246. package/dist/date-range/index.d.ts +2 -0
  247. package/dist/date-range/index.js +2 -0
  248. package/dist/dialog/Dialog.svelte +80 -0
  249. package/dist/dialog/Dialog.svelte.d.ts +39 -0
  250. package/dist/dialog/DialogActions.d.ts +16 -0
  251. package/dist/dialog/DialogActions.js +1 -0
  252. package/dist/dialog/DialogBoard.svelte +45 -0
  253. package/dist/dialog/DialogBoard.svelte.d.ts +22 -0
  254. package/dist/dialog/DialogBox.svelte +25 -0
  255. package/dist/dialog/DialogBox.svelte.d.ts +22 -0
  256. package/dist/dialog/DialogCloseConfirm.d.ts +1 -0
  257. package/dist/dialog/DialogCloseConfirm.js +1 -0
  258. package/dist/dialog/IDialog.d.ts +5 -0
  259. package/dist/dialog/IDialog.js +6 -0
  260. package/dist/dialog/index.d.ts +13 -0
  261. package/dist/dialog/index.js +6 -0
  262. package/dist/drawer/Drawer.svelte +41 -0
  263. package/dist/drawer/Drawer.svelte.d.ts +37 -0
  264. package/dist/drawer/README-CN.md +1 -0
  265. package/dist/drawer/README.md +1 -0
  266. package/dist/drawer/index.d.ts +2 -0
  267. package/dist/drawer/index.js +2 -0
  268. package/dist/form-field/FormField.svelte +38 -0
  269. package/dist/form-field/FormField.svelte.d.ts +38 -0
  270. package/dist/form-field/index.d.ts +2 -0
  271. package/dist/form-field/index.js +2 -0
  272. package/dist/form-panel/flex-form/CellField.svelte +30 -0
  273. package/dist/form-panel/flex-form/CellField.svelte.d.ts +36 -0
  274. package/dist/form-panel/flex-form/EmptyCell.svelte +21 -0
  275. package/dist/form-panel/flex-form/EmptyCell.svelte.d.ts +20 -0
  276. package/dist/form-panel/flex-form/FlexForm.svelte +8 -0
  277. package/dist/form-panel/flex-form/FlexForm.svelte.d.ts +29 -0
  278. package/dist/form-panel/flex-form/RowBreak.svelte +5 -0
  279. package/dist/form-panel/flex-form/RowBreak.svelte.d.ts +18 -0
  280. package/dist/form-panel/flex-form/index.d.ts +6 -0
  281. package/dist/form-panel/flex-form/index.js +6 -0
  282. package/dist/form-panel/flex-row-form/Cell.svelte +24 -0
  283. package/dist/form-panel/flex-row-form/Cell.svelte.d.ts +33 -0
  284. package/dist/form-panel/flex-row-form/FormContainer.svelte +13 -0
  285. package/dist/form-panel/flex-row-form/FormContainer.svelte.d.ts +32 -0
  286. package/dist/form-panel/flex-row-form/Row.svelte +9 -0
  287. package/dist/form-panel/flex-row-form/Row.svelte.d.ts +32 -0
  288. package/dist/form-panel/flex-row-form/index.d.ts +7 -0
  289. package/dist/form-panel/flex-row-form/index.js +7 -0
  290. package/dist/form-panel/grid-form/EmptyCell.svelte +20 -0
  291. package/dist/form-panel/grid-form/EmptyCell.svelte.d.ts +23 -0
  292. package/dist/form-panel/grid-form/GridField.svelte +29 -0
  293. package/dist/form-panel/grid-form/GridField.svelte.d.ts +38 -0
  294. package/dist/form-panel/grid-form/GridForm.svelte +8 -0
  295. package/dist/form-panel/grid-form/GridForm.svelte.d.ts +29 -0
  296. package/dist/form-panel/grid-form/index.d.ts +5 -0
  297. package/dist/form-panel/grid-form/index.js +5 -0
  298. package/dist/form-panel/index.d.ts +4 -0
  299. package/dist/form-panel/index.js +4 -0
  300. package/dist/group-box/group-check-box/GroupCheckBox.svelte +107 -0
  301. package/dist/group-box/group-check-box/GroupCheckBox.svelte.d.ts +37 -0
  302. package/dist/group-box/group-check-box/index.d.ts +2 -0
  303. package/dist/group-box/group-check-box/index.js +2 -0
  304. package/dist/group-box/group-radio-box/GroupRadioBox.svelte +47 -0
  305. package/dist/group-box/group-radio-box/GroupRadioBox.svelte.d.ts +33 -0
  306. package/dist/group-box/group-radio-box/index.d.ts +2 -0
  307. package/dist/group-box/group-radio-box/index.js +2 -0
  308. package/dist/i18nContext.d.ts +21 -0
  309. package/dist/i18nContext.js +29 -0
  310. package/dist/icon/Icon.svelte +27 -0
  311. package/dist/icon/Icon.svelte.d.ts +26 -0
  312. package/dist/icon/index.d.ts +2 -0
  313. package/dist/icon/index.js +2 -0
  314. package/dist/image-files/ImageFile.d.ts +12 -0
  315. package/dist/image-files/ImageFile.js +1 -0
  316. package/dist/image-files/ImageFilesField.svelte +92 -0
  317. package/dist/image-files/ImageFilesField.svelte.d.ts +33 -0
  318. package/dist/image-files/ImagePreview.svelte +99 -0
  319. package/dist/image-files/ImagePreview.svelte.d.ts +23 -0
  320. package/dist/image-files/ImageRender.svelte +36 -0
  321. package/dist/image-files/ImageRender.svelte.d.ts +24 -0
  322. package/dist/image-files/index.d.ts +4 -0
  323. package/dist/image-files/index.js +2 -0
  324. package/dist/index.d.ts +26 -0
  325. package/dist/index.js +4 -0
  326. package/dist/indicator/Indicator.d.ts +8 -0
  327. package/dist/indicator/Indicator.js +7 -0
  328. package/dist/indicator/IndicatorBoard.svelte +44 -0
  329. package/dist/indicator/IndicatorBoard.svelte.d.ts +23 -0
  330. package/dist/indicator/index.d.ts +4 -0
  331. package/dist/indicator/index.js +2 -0
  332. package/dist/input-options-select/InputOptionsSelect.svelte +107 -0
  333. package/dist/input-options-select/InputOptionsSelect.svelte.d.ts +39 -0
  334. package/dist/input-options-select/README.md +0 -0
  335. package/dist/input-options-select/index.d.ts +2 -0
  336. package/dist/input-options-select/index.js +2 -0
  337. package/dist/layout/flex/FlexBlock.svelte +17 -0
  338. package/dist/layout/flex/FlexBlock.svelte.d.ts +38 -0
  339. package/dist/layout/flex/index.d.ts +2 -0
  340. package/dist/layout/flex/index.js +2 -0
  341. package/dist/layout/index.d.ts +1 -0
  342. package/dist/layout/index.js +1 -0
  343. package/dist/list-box/ListBox.svelte +184 -0
  344. package/dist/list-box/ListBox.svelte.d.ts +50 -0
  345. package/dist/list-box/ListViewItem.svelte +6 -0
  346. package/dist/list-box/ListViewItem.svelte.d.ts +18 -0
  347. package/dist/list-box/README.md +0 -0
  348. package/dist/list-box/index.d.ts +5 -0
  349. package/dist/list-box/index.js +2 -0
  350. package/dist/list-box/types.d.ts +6 -0
  351. package/dist/list-box/types.js +1 -0
  352. package/dist/lookup-editor/LookupEditor.svelte +45 -0
  353. package/dist/lookup-editor/LookupEditor.svelte.d.ts +36 -0
  354. package/dist/lookup-editor/README.md +0 -0
  355. package/dist/lookup-editor/index.d.ts +2 -0
  356. package/dist/lookup-editor/index.js +2 -0
  357. package/dist/memo-editor/MemoEditor.svelte +85 -0
  358. package/dist/memo-editor/MemoEditor.svelte.d.ts +43 -0
  359. package/dist/memo-editor/README.md +0 -0
  360. package/dist/memo-editor/index.d.ts +2 -0
  361. package/dist/memo-editor/index.js +2 -0
  362. package/dist/message-box/IMessageBox.d.ts +23 -0
  363. package/dist/message-box/IMessageBox.js +22 -0
  364. package/dist/message-box/MessageBoxBoard.svelte +145 -0
  365. package/dist/message-box/MessageBoxBoard.svelte.d.ts +20 -0
  366. package/dist/message-box/index.d.ts +5 -0
  367. package/dist/message-box/index.js +4 -0
  368. package/dist/nav-menu/MenuItem.d.ts +27 -0
  369. package/dist/nav-menu/MenuItem.js +1 -0
  370. package/dist/nav-menu/NavigatorMenu.svelte +22 -0
  371. package/dist/nav-menu/NavigatorMenu.svelte.d.ts +24 -0
  372. package/dist/nav-menu/NavigatorMenuItem.svelte +47 -0
  373. package/dist/nav-menu/NavigatorMenuItem.svelte.d.ts +24 -0
  374. package/dist/nav-menu/index.d.ts +5 -0
  375. package/dist/nav-menu/index.js +2 -0
  376. package/dist/nav-menu/readme.MD +1 -0
  377. package/dist/navigator/NavItemStatus.d.ts +5 -0
  378. package/dist/navigator/NavItemStatus.js +6 -0
  379. package/dist/navigator/Navigator.svelte +31 -0
  380. package/dist/navigator/Navigator.svelte.d.ts +25 -0
  381. package/dist/navigator/index.d.ts +4 -0
  382. package/dist/navigator/index.js +4 -0
  383. package/dist/number-editor/NumberEditor.svelte +55 -0
  384. package/dist/number-editor/NumberEditor.svelte.d.ts +43 -0
  385. package/dist/number-editor/README.md +26 -0
  386. package/dist/number-editor/index.d.ts +2 -0
  387. package/dist/number-editor/index.js +2 -0
  388. package/dist/number-range/NumberRange.svelte +35 -0
  389. package/dist/number-range/NumberRange.svelte.d.ts +29 -0
  390. package/dist/number-range/index.d.ts +2 -0
  391. package/dist/number-range/index.js +2 -0
  392. package/dist/options-multi-select/OptionsMultiSelect.svelte +118 -0
  393. package/dist/options-multi-select/OptionsMultiSelect.svelte.d.ts +39 -0
  394. package/dist/options-multi-select/README.md +0 -0
  395. package/dist/options-multi-select/index.d.ts +2 -0
  396. package/dist/options-multi-select/index.js +2 -0
  397. package/dist/options-select/OptionsSelect.svelte +92 -0
  398. package/dist/options-select/OptionsSelect.svelte.d.ts +42 -0
  399. package/dist/options-select/README.md +0 -0
  400. package/dist/options-select/index.d.ts +2 -0
  401. package/dist/options-select/index.js +2 -0
  402. package/dist/page/Page.svelte +29 -0
  403. package/dist/page/Page.svelte.d.ts +39 -0
  404. package/dist/page/PageHeader.svelte +15 -0
  405. package/dist/page/PageHeader.svelte.d.ts +30 -0
  406. package/dist/page/index.d.ts +4 -0
  407. package/dist/page/index.js +4 -0
  408. package/dist/pagination/OnPageChange.d.ts +1 -0
  409. package/dist/pagination/OnPageChange.js +1 -0
  410. package/dist/pagination/Pagination.svelte +80 -0
  411. package/dist/pagination/Pagination.svelte.d.ts +26 -0
  412. package/dist/pagination/index.d.ts +2 -0
  413. package/dist/pagination/index.js +2 -0
  414. package/dist/pagination-panel/GenerateTotalInfo.d.ts +1 -0
  415. package/dist/pagination-panel/GenerateTotalInfo.js +1 -0
  416. package/dist/pagination-panel/OnRowCountChanged.d.ts +1 -0
  417. package/dist/pagination-panel/OnRowCountChanged.js +1 -0
  418. package/dist/pagination-panel/PaginationPanel.svelte +54 -0
  419. package/dist/pagination-panel/PaginationPanel.svelte.d.ts +35 -0
  420. package/dist/pagination-panel/index.d.ts +6 -0
  421. package/dist/pagination-panel/index.js +2 -0
  422. package/dist/popup-hint/PopupHint.svelte +50 -0
  423. package/dist/popup-hint/PopupHint.svelte.d.ts +23 -0
  424. package/dist/progress-bar/ProgressBar.svelte +84 -0
  425. package/dist/progress-bar/ProgressBar.svelte.d.ts +26 -0
  426. package/dist/progress-bar/ProgressStatus.d.ts +6 -0
  427. package/dist/progress-bar/ProgressStatus.js +8 -0
  428. package/dist/progress-bar/index.d.ts +4 -0
  429. package/dist/progress-bar/index.js +4 -0
  430. package/dist/progress-step-bar/ProgressStep.d.ts +19 -0
  431. package/dist/progress-step-bar/ProgressStep.js +6 -0
  432. package/dist/progress-step-bar/ProgressStepBar.svelte +21 -0
  433. package/dist/progress-step-bar/ProgressStepBar.svelte.d.ts +24 -0
  434. package/dist/progress-step-bar/ProgressStepBlock.svelte +37 -0
  435. package/dist/progress-step-bar/ProgressStepBlock.svelte.d.ts +27 -0
  436. package/dist/progress-step-bar/index.d.ts +6 -0
  437. package/dist/progress-step-bar/index.js +5 -0
  438. package/dist/prompts-text-editor/PromptsTextEditor.svelte +94 -0
  439. package/dist/prompts-text-editor/PromptsTextEditor.svelte.d.ts +41 -0
  440. package/dist/prompts-text-editor/README.md +0 -0
  441. package/dist/prompts-text-editor/README_CN.md +0 -0
  442. package/dist/prompts-text-editor/index.d.ts +2 -0
  443. package/dist/prompts-text-editor/index.js +2 -0
  444. package/dist/property-editor/MetaEditorType.d.ts +51 -0
  445. package/dist/property-editor/MetaEditorType.js +31 -0
  446. package/dist/property-editor/PropertyEditor.svelte +77 -0
  447. package/dist/property-editor/PropertyEditor.svelte.d.ts +23 -0
  448. package/dist/property-editor/component/PropertyDatePickup.svelte +22 -0
  449. package/dist/property-editor/component/PropertyDatePickup.svelte.d.ts +22 -0
  450. package/dist/property-editor/component/PropertyDateTimePickup.svelte +22 -0
  451. package/dist/property-editor/component/PropertyDateTimePickup.svelte.d.ts +22 -0
  452. package/dist/property-editor/component/PropertyNumberEditor.svelte +22 -0
  453. package/dist/property-editor/component/PropertyNumberEditor.svelte.d.ts +22 -0
  454. package/dist/property-editor/component/PropertyOptionsSelector.svelte +22 -0
  455. package/dist/property-editor/component/PropertyOptionsSelector.svelte.d.ts +22 -0
  456. package/dist/property-editor/component/PropertyPromptsTextEditor.svelte +22 -0
  457. package/dist/property-editor/component/PropertyPromptsTextEditor.svelte.d.ts +22 -0
  458. package/dist/property-editor/component/PropertyTextEditor.svelte +22 -0
  459. package/dist/property-editor/component/PropertyTextEditor.svelte.d.ts +22 -0
  460. package/dist/property-editor/index.d.ts +1 -0
  461. package/dist/property-editor/index.js +1 -0
  462. package/dist/radio-button/README.md +0 -0
  463. package/dist/radio-button/RadioButton.svelte +32 -0
  464. package/dist/radio-button/RadioButton.svelte.d.ts +26 -0
  465. package/dist/radio-button/index.d.ts +2 -0
  466. package/dist/radio-button/index.js +2 -0
  467. package/dist/search-box/SearchBox.svelte +49 -0
  468. package/dist/search-box/SearchBox.svelte.d.ts +26 -0
  469. package/dist/search-box/index.d.ts +2 -0
  470. package/dist/search-box/index.js +2 -0
  471. package/dist/separator/Separator.svelte +10 -0
  472. package/dist/separator/Separator.svelte.d.ts +21 -0
  473. package/dist/separator/index.d.ts +2 -0
  474. package/dist/separator/index.js +2 -0
  475. package/dist/split/Split.svelte +48 -0
  476. package/dist/split/Split.svelte.d.ts +22 -0
  477. package/dist/split/index.d.ts +2 -0
  478. package/dist/split/index.js +2 -0
  479. package/dist/switch/README.md +0 -0
  480. package/dist/switch/Switch.svelte +27 -0
  481. package/dist/switch/Switch.svelte.d.ts +24 -0
  482. package/dist/switch/index.d.ts +2 -0
  483. package/dist/switch/index.js +2 -0
  484. package/dist/tabs/Tabs.svelte +147 -0
  485. package/dist/tabs/Tabs.svelte.d.ts +44 -0
  486. package/dist/tabs/index.d.ts +4 -0
  487. package/dist/tabs/index.js +2 -0
  488. package/dist/tabs/types.d.ts +3 -0
  489. package/dist/tabs/types.js +1 -0
  490. package/dist/tag/Tag.svelte +27 -0
  491. package/dist/tag/Tag.svelte.d.ts +30 -0
  492. package/dist/tag/index.d.ts +2 -0
  493. package/dist/tag/index.js +2 -0
  494. package/dist/text-editor/PasswordEditor.svelte +46 -0
  495. package/dist/text-editor/PasswordEditor.svelte.d.ts +32 -0
  496. package/dist/text-editor/README.md +0 -0
  497. package/dist/text-editor/TextEditor.svelte +63 -0
  498. package/dist/text-editor/TextEditor.svelte.d.ts +48 -0
  499. package/dist/text-editor/index.d.ts +4 -0
  500. package/dist/text-editor/index.js +4 -0
  501. package/dist/ticatec-uniface-web.css +4056 -0
  502. package/dist/time-editor/README.md +26 -0
  503. package/dist/time-editor/TimeEditor.svelte +186 -0
  504. package/dist/time-editor/TimeEditor.svelte.d.ts +38 -0
  505. package/dist/time-editor/index.d.ts +2 -0
  506. package/dist/time-editor/index.js +2 -0
  507. package/dist/toast/Toast.d.ts +6 -0
  508. package/dist/toast/Toast.js +6 -0
  509. package/dist/toast/ToastBoard.svelte +61 -0
  510. package/dist/toast/ToastBoard.svelte.d.ts +24 -0
  511. package/dist/toast/index.d.ts +4 -0
  512. package/dist/toast/index.js +2 -0
  513. package/dist/transfer-field/README.md +0 -0
  514. package/dist/transfer-field/TransferField.svelte +91 -0
  515. package/dist/transfer-field/TransferField.svelte.d.ts +36 -0
  516. package/dist/transfer-field/index.d.ts +2 -0
  517. package/dist/transfer-field/index.js +2 -0
  518. package/dist/transfer-field/types.d.ts +6 -0
  519. package/dist/transfer-field/types.js +1 -0
  520. package/dist/tree-view/README.md +0 -0
  521. package/dist/tree-view/TreeNode.d.ts +52 -0
  522. package/dist/tree-view/TreeNode.js +1 -0
  523. package/dist/tree-view/TreeNodeView.svelte +96 -0
  524. package/dist/tree-view/TreeNodeView.svelte.d.ts +30 -0
  525. package/dist/tree-view/TreeUtils.d.ts +10 -0
  526. package/dist/tree-view/TreeUtils.js +36 -0
  527. package/dist/tree-view/TreeView.svelte +36 -0
  528. package/dist/tree-view/TreeView.svelte.d.ts +32 -0
  529. package/dist/tree-view/index.d.ts +7 -0
  530. package/dist/tree-view/index.js +4 -0
  531. package/dist/unit-number-editor/README.md +26 -0
  532. package/dist/unit-number-editor/UnitNumberEditor.svelte +130 -0
  533. package/dist/unit-number-editor/UnitNumberEditor.svelte.d.ts +42 -0
  534. package/dist/unit-number-editor/UnitOption.d.ts +26 -0
  535. package/dist/unit-number-editor/UnitOption.js +1 -0
  536. package/dist/unit-number-editor/index.d.ts +4 -0
  537. package/dist/unit-number-editor/index.js +3 -0
  538. package/dist/utils/exclude.d.ts +1 -0
  539. package/dist/utils/exclude.js +3 -0
  540. package/dist/utils/prefixFilter.d.ts +2 -0
  541. package/dist/utils/prefixFilter.js +15 -0
  542. package/package.json +325 -0
@@ -0,0 +1,4056 @@
1
+ @charset "UTF-8";
2
+ :root {
3
+ --uniface-primary-color: #0061FF;
4
+ --uniface-secondary-color: #22BDFF;
5
+ --uniface-third-color: #2DC071;
6
+ --uniface-forth-color: #FAD85D;
7
+ --uniface-h1-text-color: #07123C;
8
+ --uniface-h2-text-color: #374151;
9
+ --uniface-h3-text-color: #6B7280;
10
+ --uniface-h4-text-color: #B3BCCA;
11
+ --uniface-hint-color: #0061FF;
12
+ --uniface-dangerous-color: #FF685B;
13
+ --uniface-warning-color: #FFC53D;
14
+ --uniface-successful-color: #2DC071;
15
+ --uniface-text-h1-size: 38px;
16
+ --uniface-text-h1-line-height: 46px;
17
+ --uniface-text-h2-size: 30px;
18
+ --uniface-text-h2-line-height: 40px;
19
+ --uniface-text-h3-size: 24px;
20
+ --uniface-text-h3-line-height: 32px;
21
+ --uniface-text-h4-size: 20px;
22
+ --uniface-text-h4-line-height: 26px;
23
+ --uniface-text-h5-size: 16px;
24
+ --uniface-text-h5-line-height: 22px;
25
+ --uniface-primary-hover-color: #298DEF;
26
+ --uniface-active-editor-border-color: #42A5F5;
27
+ --uniface-invalid-editor-border-color: #ff3e00;
28
+ /*定义全局变量*/
29
+ /*定义全局按钮的颜色*/
30
+ --uniface-plain-background-color: #f0f0f0;
31
+ --uniface-plain-border-color: #f0f0f0;
32
+ --uniface-plain-color: #333333;
33
+ --uniface-plain-disabled-background-color: #f0f0f070;
34
+ --uniface-plain-disabled-border-color: #f0f0f070;
35
+ --uniface-plain-disabled-color: #33333370;
36
+ --uniface-plain-hover-background-color: #ecf5ff;
37
+ --uniface-plain-hover-border-color: #b3d8ff;
38
+ --uniface-plain-hover-color: #42A5F5;
39
+ /*按钮类别*/
40
+ --uniface-button-common-bg: #f0f0f0;
41
+ --uniface-button-common-border-color: #f0f0f0;
42
+ --uniface-button-common-color: #374151;
43
+ --uniface-button-common-reverse-color: #ffffff;
44
+ --uniface-button-plain-disabled-color: #B3BCCA;
45
+ --uniface-text-button-plain-hover-color: #374151B0;
46
+ --uniface-button-plain-background-color: #f0f0f0;
47
+ --uniface-button-plain-border-color: #f0f0f0;
48
+ --uniface-button-plain-text-color: #374151;
49
+ --uniface-button-plain-hover-color: #f0f0f0B0;
50
+ --uniface-button-plainy-active-color: #f0f0f0;
51
+ --uniface-button-primary-background-color: #42A5F5;
52
+ --uniface-button-primary-border-color: #42B5DB;
53
+ --uniface-button-primary-text-color: #ffffff;
54
+ --uniface-button-primary-hover-color: #42A5F5B0;
55
+ --uniface-button-primary-active-color: #42A5F5;
56
+ --uniface-text-button-primary-hover-color: #42A5F5B0;
57
+ --uniface-button-secondary-background-color: #FF685B;
58
+ --uniface-button-secondary-border-color: #FF7875;
59
+ --uniface-button-secondary-text-color: #ffffff;
60
+ --uniface-button-secondary-hover-color: #FF685BB0;
61
+ --uniface-button-secondary-active-color: #FF4D4F;
62
+ --uniface-text-button-secondary-hover-color: #D32F2FB0;
63
+ --uniface-button-third-background-color: #2DC071;
64
+ --uniface-button-third-border-color: #2DD08B;
65
+ --uniface-button-third-text-color: #ffffff;
66
+ --uniface-button-third-hover-color: #2DD057B0;
67
+ --uniface-button-third-active-color: #2DC071;
68
+ --uniface-text-button-third-hover-color: #2DC071B0;
69
+ --uniface-button-forth-background-color: #FAD85D;
70
+ --uniface-button-forth-border-color: #FAE877;
71
+ --uniface-button-forth-text-color: #374151;
72
+ --uniface-button-forth-hover-color: #FAD85DB0;
73
+ --uniface-button-forth-active-color: #FAD85D;
74
+ --uniface-text-button-forth-hover-color: #FAD85DB0;
75
+ --uniface-disabled-button-color: #F1F5F9;
76
+ --uniface-disabled-button-border-color: #E2E8F0;
77
+ --uniface-disabled-button-text-color: #B3BCCA;
78
+ --uniface-text-button-color: #42A5F5;
79
+ --uniface-text-button-hover-color: #1e648d;
80
+ --uniface-active-border-color: #42A5F5;
81
+ --uniface-hover-item-background: #f7f7f7;
82
+ --uniface-hover-item-color: #42A5F5;
83
+ --uniface-inside-border-color: #f0f0f0;
84
+ --uniface-dropdown-color: #e1e1e1;
85
+ --uniface-secondary-dropdown-color: #b7b7b7;
86
+ --uniface-navigator-menu-hover-background-color: #90CAF9;
87
+ --uniface-navigator-menu-hover-color: #333333;
88
+ --uniface-navigator-menu-active-background-color: #81D4FA;
89
+ --uniface-navigator-menu-active-color: #333333;
90
+ --uniface-application-bg: #ffffff;
91
+ --uniface-page-margin-bg: #F8FAFC;
92
+ --uniface-primary-hover-text-color: #298DFF;
93
+ --uniface-primary-active-text-weight: 600;
94
+ --uniface-active-label-text-color: #0061FF;
95
+ --uniface-primary-border-color: #E2E8F0;
96
+ --uniface-mask-overlay-bg: #f0f0f0f0;
97
+ --uniface-default-page-content-bg: #ffffff;
98
+ --uniface-default-text-color: #374151;
99
+ --uniface-default-text-hover-color: #298DFF;
100
+ --uniface-default-active-text-color: #0061FF;
101
+ --uniface-default-hover-bg: #42A5F51A;
102
+ --uniface-default-active-border-color: #0061FF80;
103
+ --uniface-calendar-today-border-color: #298DFF30;
104
+ --uniface-editor-clean-icon-bg: #B3BCCA;
105
+ --uniface-editor-clean-icon-color: #ffffff;
106
+ --uniface-editor-text-color: #374151;
107
+ --uniface-editor-line-height: 16px;
108
+ --uniface-editor-padding: 0 4px;
109
+ --uniface-editor-border-color: #E2E8F0;
110
+ --uniface-editor-outlined-disabled-backgournd-color: #F1F5F9;
111
+ --uniface-editor-outlined-disabled-text-color: #B3BCCA;
112
+ --uniface-editor-outlined-radius: 4px;
113
+ --uniface-editor-outlined-active-border-color: #298DFF;
114
+ --uniface-editor-filled-backgournd-color: #F8FAFC;
115
+ --uniface-editor-action-icon-color: #ffffff;
116
+ --uniface-editor-action-icon-hover-color: #374151;
117
+ --uniface-editor-action-icon-background-color: #B3BCCA;
118
+ --uniface-editor-indicator-color: #B3BCCA;
119
+ --uniface-editor-inline-action-icon-color: #37415170;
120
+ --uniface-editor-inline-action-icon-hover-color: #374151;
121
+ --uniface-editor-inline-action-icon-hover-bg: #42A5F51A;
122
+ --uniface-memo-padding: 6px 8px;
123
+ --uniface-dialog-border-color: #0000000D;
124
+ --uniface-dialog-action-button-hover-background-color: #E2E8F0;
125
+ --uniface-dialog-action-button-color: #6B7280;
126
+ --uniface-dialog-topic-text-color: #07123C;
127
+ --uniface-toast-text-color: #ffffff;
128
+ --uniface-toast-error-background-color: #FF685B;
129
+ --uniface-toast-info-background-color: #0061FF;
130
+ --uniface-toast-successful-background-color: #2DC071;
131
+ --uniface-progress-bar-color: #22BDFF;
132
+ --uniface-progress-bar-text-color: #374151;
133
+ --uniface-progress-bar-success-color: #2DC071;
134
+ --uniface-progress-bar-failure-color: #FF685B;
135
+ --uniface-progress-bar-canceled-color: #FFC53D;
136
+ --uniface-progress-bar-bg: #E2E8F0;
137
+ --uniface-progress-step-bar-bg: #FFFFFF;
138
+ --uniface-progress-step-processing-color: #0061FF;
139
+ --uniface-progress-step-pending-color: #B3BCCA;
140
+ --uniface-progress-step-completed-color: #374151;
141
+ --uniface-progress-step-completed-icon-bg: #0061FF1A;
142
+ --uniface-progress-step-completed-icon-color: #0061FF;
143
+ --uniface-tabs-header-background-color: #FFFFFF;
144
+ --uniface-tab-active-text-color: #0061FF;
145
+ --uniface-tab-active-background-color: #FFFFFF;
146
+ --uniface-tab-inactive-text-color: #374151;
147
+ --uniface-tab-inactive-background-color: #FFFFFF;
148
+ --uniface-tab-border-color: #E2E8F0;
149
+ --uniface-tab-bg: #F8FAFC;
150
+ --uniface-tab-action-background: #FFFFFF;
151
+ --uniface-tab-hover-text-color: #298DFF;
152
+ --uniface-tab-header-radius: 4px;
153
+ --uniface-navigator-background-color: #F8FAFC;
154
+ --uniface-navigator-vertical-padding: 16px;
155
+ --uniface-navigator-completed-text-color: #374151;
156
+ --uniface-navigator-not-start-text-color: #6B7280;
157
+ --uniface-navigator-warning-dot-color: #C62828;
158
+ --uniface-dividing-line-bg: #E2E8F0;
159
+ --uniface-card-primary-text-color: #374151;
160
+ --uniface-card-border-color: #E2E8F0;
161
+ --uniface-card-hover-border-color: #E2E8F0;
162
+ --uniface-card-divid-border-color: #42A5F570;
163
+ --uniface-card-header-height: 54px;
164
+ --uniface-card-header-padding: 0 24px;
165
+ --uniface-card-icon-color: #374151;
166
+ --uniface-card-icon-hover-color: #37415170;
167
+ --uniface-card-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
168
+ --uniface-accordion-header-line-height: 24px;
169
+ --uniface-accordion-compact-header-line-height: 16px;
170
+ --uniface-accordion-header-padding: 8px 12px;
171
+ --uniface-accordion-compact-header-padding: 4px 6px;
172
+ --uniface-accordion-title-bg: #F8FAFC;
173
+ --uniface-accordion-title-hober-bg: #F8FAFCB0;
174
+ --uniface-accordion-header-border-color: #CBD5E1;
175
+ --uniface-separator-color: #E2E8F0;
176
+ --uniface-separator-margin: 2px;
177
+ --uniface-page-border-radius: 12px;
178
+ --uniface-page-header-comment-color: #6B7280;
179
+ --uniface-page-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
180
+ --uniface-page-margin-color: #F8FAFD;
181
+ --uniface-page-margin-size: 12px;
182
+ --uniface-listbox-separator-color: #F0F0F0;
183
+ --uniface-list-box-hover-bg: #FFFFE1;
184
+ --uniface-list-box-selected-bg: #b1c8f6;
185
+ --uniface-data-table-header-hight: 48px;
186
+ --uniface-data-table-separator-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
187
+ --uniface-data-table-spearator-color: #f0f0f0;
188
+ --uniface-data-table-header-separator-color: #CBD5E1;
189
+ --uniface-data-table-alter-row-bg: #f7f7f7;
190
+ --uniface-data-table-header-bg: #F8FAFC;
191
+ --uniface-data-table-shadow-gap: 2px;
192
+ --uniface-data-table-inline-row-panel-border: 1px solid #F8FAFC;
193
+ --uniface-data-table-inline-row-panel-bg: #F1F5F9;
194
+ --uniface-scroll-color: #e1e1e180;
195
+ --uniface-data-table-inline-border-color: #e1e1e180;
196
+ --uniface-treeview-icon-color: #8AA7FF;
197
+ --uniface-treeview-icon-hover-color: #0057FE;
198
+ --uniface-treeview-item-bg: #EEF4FF;
199
+ --uniface-treeview-item-selected-color: #0061FF;
200
+ --uniface-popup-hint-bg: #FFFFE1;
201
+ --uniface-popup-hint-color: #374151;
202
+ --uniface-context-menu-bg: #ffffff;
203
+ --uniface-context-menu-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
204
+ }
205
+
206
+ .uniface-common-picker .editor-dropdown {
207
+ visibility: hidden;
208
+ margin-left: 8px;
209
+ }
210
+ .uniface-common-picker .action-icon {
211
+ display: none;
212
+ box-sizing: border-box;
213
+ font-size: 18px;
214
+ color: var(--uniface-editor-text-color, #374151);
215
+ align-self: center;
216
+ margin-right: 4px;
217
+ cursor: pointer;
218
+ }
219
+ .uniface-common-picker .action-icon:active {
220
+ color: var(--uniface-active-dropdown-color, #9d9d9d);
221
+ }
222
+ .uniface-common-picker:hover .action-icon, .uniface-common-picker:focus-within .action-icon, .uniface-common-picker:focus .action-icon {
223
+ display: block;
224
+ visibility: visible;
225
+ }
226
+ .uniface-common-picker:hover .uniface-editor-clean-icon, .uniface-common-picker:focus-within .uniface-editor-clean-icon, .uniface-common-picker:focus .uniface-editor-clean-icon {
227
+ display: block;
228
+ visibility: visible;
229
+ }
230
+
231
+ .uniface-popover-wrapper {
232
+ position: absolute;
233
+ display: block;
234
+ z-index: 100;
235
+ opacity: 1;
236
+ visibility: visible;
237
+ transition: opacity 0.3s ease-in-out;
238
+ }
239
+ .uniface-popover-wrapper.hidden {
240
+ visibility: hidden;
241
+ opacity: 0;
242
+ }
243
+
244
+ .uniface-popover {
245
+ position: relative;
246
+ width: 100%;
247
+ box-sizing: border-box;
248
+ }
249
+ .uniface-popover > div {
250
+ position: absolute;
251
+ display: block;
252
+ }
253
+ .uniface-popover > div .contents {
254
+ background: var(--uniface-app-background-color, #ffffff);
255
+ box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
256
+ padding-top: 0;
257
+ opacity: 1;
258
+ transform: scale(1);
259
+ display: block;
260
+ }
261
+ .uniface-popover > div .contents .contents-inner {
262
+ overflow: auto;
263
+ }
264
+
265
+ @supports (-webkit-appearance: none) or (-moz-appearance: none) {
266
+ .uniface-checkbox {
267
+ display: inline-block;
268
+ padding: 4px 4px;
269
+ box-sizing: border-box;
270
+ white-space: nowrap;
271
+ overflow: hidden;
272
+ text-overflow: ellipsis;
273
+ }
274
+ .uniface-checkbox label {
275
+ display: inline-block;
276
+ width: 100%;
277
+ text-overflow: ellipsis;
278
+ overflow: hidden;
279
+ cursor: pointer;
280
+ }
281
+ .uniface-checkbox label > span {
282
+ line-height: 21px;
283
+ padding-left: 2px;
284
+ padding-right: 6px;
285
+ }
286
+ .uniface-checkbox.disabled label {
287
+ color: #9d9d9d;
288
+ cursor: not-allowed;
289
+ }
290
+ .uniface-checkbox input[type=checkbox] {
291
+ --active: var(----uniface-active-border-color, #409eff);
292
+ --active-inner: #fff;
293
+ --focus: 2px rgba(39, 94, 254, .3);
294
+ --border: #BBC1E1;
295
+ --border-hover: var(----uniface-active-border-color, #409eff);
296
+ --background: #fff;
297
+ --disabled: #F6F8FF;
298
+ --disabled-inner: #E1E6F9;
299
+ -webkit-appearance: none;
300
+ -moz-appearance: none;
301
+ height: 21px;
302
+ outline: none;
303
+ display: inline-block;
304
+ vertical-align: top;
305
+ position: relative;
306
+ margin: 0;
307
+ cursor: pointer;
308
+ border: 1px solid var(--bc, var(--border));
309
+ background: var(--b, var(--background));
310
+ transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
311
+ }
312
+ .uniface-checkbox input[type=checkbox]:indeterminate {
313
+ background: rgba(39, 94, 254, 0.3);
314
+ }
315
+ .uniface-checkbox input[type=checkbox]:indeterminate:before {
316
+ width: 19px;
317
+ line-height: 19px;
318
+ display: inline-block;
319
+ text-align: center;
320
+ content: "–";
321
+ color: #ffffff;
322
+ font-weight: bold;
323
+ }
324
+ .uniface-checkbox input[type=checkbox]:after {
325
+ content: "";
326
+ display: block;
327
+ left: 0;
328
+ top: 0;
329
+ position: absolute;
330
+ transition: transform 0.3s ease, opacity 0.2s;
331
+ }
332
+ .uniface-checkbox input[type=checkbox]:checked {
333
+ --b: var(--active);
334
+ --bc: var(--active);
335
+ --d-o: .3s;
336
+ --d-t: .6s;
337
+ --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
338
+ }
339
+ .uniface-checkbox input[type=checkbox]:disabled {
340
+ --b: var(--disabled);
341
+ cursor: not-allowed;
342
+ opacity: 0.9;
343
+ }
344
+ .uniface-checkbox input[type=checkbox]:disabled:checked {
345
+ --b: var(--disabled-inner);
346
+ --bc: var(--border);
347
+ }
348
+ .uniface-checkbox input[type=checkbox]:disabled + label {
349
+ cursor: not-allowed;
350
+ }
351
+ .uniface-checkbox input[type=checkbox]:hover:not(:checked):not(:disabled) {
352
+ --bc: var(--border-hover);
353
+ }
354
+ .uniface-checkbox input[type=checkbox]:focus {
355
+ /*box-shadow: 0 0 0 var(--focus);*/
356
+ }
357
+ .uniface-checkbox input[type=checkbox]:not(.switch) {
358
+ width: 21px;
359
+ border-radius: 2px;
360
+ }
361
+ .uniface-checkbox input[type=checkbox]:not(.switch):after {
362
+ opacity: var(--o, 0);
363
+ width: 5px;
364
+ height: 9px;
365
+ border: 2px solid var(--active-inner);
366
+ border-top: 0;
367
+ border-left: 0;
368
+ left: 7px;
369
+ top: 4px;
370
+ transform: rotate(var(--r, 20deg));
371
+ }
372
+ .uniface-checkbox input[type=checkbox]:not(.switch):checked {
373
+ --o: 1;
374
+ --r: 43deg;
375
+ }
376
+ .uniface-checkbox input[type=checkbox] + label {
377
+ display: inline-block;
378
+ vertical-align: middle;
379
+ cursor: pointer;
380
+ margin-left: 4px;
381
+ }
382
+ .uniface-checkbox.compact {
383
+ padding: 0;
384
+ }
385
+ .uniface-checkbox.compact input[type=checkbox] {
386
+ height: 17px;
387
+ }
388
+ .uniface-checkbox.compact input[type=checkbox]:indeterminate:before {
389
+ width: 15px;
390
+ line-height: 15px;
391
+ }
392
+ .uniface-checkbox.compact input[type=checkbox]:not(.switch) {
393
+ width: 17px;
394
+ border-radius: 2px;
395
+ }
396
+ .uniface-checkbox.compact input[type=checkbox]:not(.switch):after {
397
+ width: 5px;
398
+ height: 9px;
399
+ left: 5px;
400
+ top: 2px;
401
+ }
402
+ .uniface-checkbox.compact label > span {
403
+ line-height: 17px;
404
+ }
405
+ .uniface-checkbox *:before, .uniface-checkbox *:after {
406
+ box-sizing: inherit;
407
+ }
408
+ }
409
+ .uniface-memo-editor {
410
+ background-color: transparent;
411
+ border: 0 solid transparent;
412
+ box-sizing: border-box;
413
+ font-size: 1em;
414
+ line-height: 1.5em;
415
+ color: var(--uniface-default-text-color, #374151);
416
+ padding: var(--uniface-memo-padding, 6px 8px);
417
+ }
418
+ .uniface-memo-editor:focus {
419
+ outline: none;
420
+ }
421
+ .uniface-memo-editor.plain {
422
+ border: none;
423
+ }
424
+ .uniface-memo-editor.outlined {
425
+ border: 1px solid var(--uniface-editor-border-color, #E2E8F0);
426
+ border-radius: var(--uniface-field-round, 4px);
427
+ }
428
+ .uniface-memo-editor.outlined:focus {
429
+ border-color: var(--uniface-editor-outlined-active-border-color, #298DFF);
430
+ }
431
+ .uniface-memo-editor:disabled {
432
+ color: var(--uniface-editor-outlined-disabled-text-color, #B3BCCA);
433
+ background-color: var(--uniface-editor-outlined-disabled-backgournd-color, #F1F5F9);
434
+ }
435
+ .uniface-memo-editor.filled {
436
+ border-top-right-radius: var(--uniface-field-round, 4px);
437
+ border-top-left-radius: var(--uniface-field-round, 4px);
438
+ border-bottom: 1px solid var(--uniface-editor-border-color, #E2E8F0);
439
+ background-color: var(--uniface-editor-filled-backgournd-color, #F8FAFC);
440
+ }
441
+ .uniface-memo-editor.filled:focus {
442
+ border-bottom-color: var(--uniface-editor-outlined-active-border-color, #298DFF);
443
+ }
444
+
445
+ .uniface-memo-indicator {
446
+ padding: 4px 6px;
447
+ box-sizing: border-box;
448
+ text-align: right;
449
+ font-size: 0.9em;
450
+ color: var(--uniface-editor-indicator-color, #B3BCCA);
451
+ user-select: none;
452
+ }
453
+
454
+ .uniface-memo-editor-wrapper .action-button-wrapper {
455
+ display: none;
456
+ }
457
+ .uniface-memo-editor-wrapper .action-button-wrapper .uniface-editor-clean-icon {
458
+ position: absolute;
459
+ top: 6px;
460
+ padding: 0;
461
+ right: 0;
462
+ visibility: visible;
463
+ margin-right: 6px;
464
+ }
465
+ .uniface-memo-editor-wrapper .action-button-wrapper .uniface-editor-clean-icon:active {
466
+ position: absolute;
467
+ top: 7px;
468
+ }
469
+ .uniface-memo-editor-wrapper:focus-within .action-button-wrapper {
470
+ display: block;
471
+ }
472
+ .uniface-memo-editor-wrapper:hover .action-button-wrapper {
473
+ display: block;
474
+ }
475
+
476
+ /*输入框中的清除按钮*/
477
+ .uniface-editor-clean-icon {
478
+ flex: 0 0 auto;
479
+ display: none;
480
+ text-align: center;
481
+ color: var(--uniface-editor-clean-icon-color, #ffffff);
482
+ }
483
+ .uniface-editor-clean-icon i {
484
+ display: inline-block;
485
+ box-sizing: border-box;
486
+ text-align: center;
487
+ font-size: 10px;
488
+ line-height: 15px;
489
+ border-radius: 50%;
490
+ width: 14px;
491
+ height: 14px;
492
+ background-color: var(--uniface-editor-clean-icon-bg, #B3BCCA);
493
+ }
494
+ .uniface-editor-clean-icon:active {
495
+ position: relative;
496
+ top: 1px;
497
+ }
498
+ .uniface-editor-clean-icon:hover i {
499
+ color: var(--uniface-editor-inline-action-icon-hover-color, #374151);
500
+ background-color: var(--uniface-editor-inline-action-icon-hover-bg, rgba(66, 165, 245, 0.4392156863));
501
+ }
502
+
503
+ .uniface-common-editor {
504
+ border-bottom: 1px solid var(--uniface-editor-border-color, #298DFF);
505
+ padding: var(--uniface-editor-padding, 0 4px);
506
+ box-sizing: border-box;
507
+ overflow: hidden;
508
+ width: 100%;
509
+ position: relative;
510
+ height: 38px;
511
+ line-height: var(--uniface-editor-line-height, 16px);
512
+ display: inline-flex;
513
+ flex-direction: row;
514
+ align-items: center;
515
+ gap: 8px;
516
+ }
517
+ .uniface-common-editor .editor-embed-icon {
518
+ padding-left: 4px;
519
+ padding-right: 4px;
520
+ }
521
+ .uniface-common-editor .editor-embed-icon img {
522
+ width: 28px;
523
+ height: 28px;
524
+ }
525
+ .uniface-common-editor input[type=text], .uniface-common-editor input[type=password], .uniface-common-editor input[type=number] {
526
+ width: 100%;
527
+ }
528
+ .uniface-common-editor input {
529
+ background-color: transparent;
530
+ border: 0 solid;
531
+ box-sizing: border-box;
532
+ font-size: 1em;
533
+ height: 36px;
534
+ padding: 0 4px;
535
+ color: var(--uniface-editor-text-color, #374151);
536
+ }
537
+ .uniface-common-editor input:focus {
538
+ outline: none;
539
+ }
540
+ .uniface-common-editor input:disabled {
541
+ color: var(--uniface-editor-outlined-disabled-text-color, #B3BCCA);
542
+ }
543
+ .uniface-common-editor input[type=number] {
544
+ -moz-appearance: textfield;
545
+ }
546
+ .uniface-common-editor input[type=number]::-webkit-outer-spin-button, .uniface-common-editor input[type=number]::-webkit-inner-spin-button {
547
+ -webkit-appearance: none;
548
+ margin: 0;
549
+ }
550
+ .uniface-common-editor.compact {
551
+ height: 30px;
552
+ }
553
+ .uniface-common-editor.compact input {
554
+ height: 28px;
555
+ }
556
+ .uniface-common-editor:focus-within {
557
+ outline: none;
558
+ border-bottom: 1px solid var(--uniface-editor-outlined-active-border-color, #298DFF);
559
+ }
560
+ .uniface-common-editor:focus-within .uniface-editor-clean-icon {
561
+ display: block;
562
+ }
563
+ .uniface-common-editor:focus-within .uniface-editor-clean-icon.hidden {
564
+ display: none;
565
+ }
566
+ .uniface-common-editor:focus-within .editor-action-icon {
567
+ visibility: visible;
568
+ }
569
+ .uniface-common-editor:hover .uniface-editor-clean-icon {
570
+ display: block;
571
+ }
572
+ .uniface-common-editor:hover .uniface-editor-clean-icon.hidden {
573
+ display: none;
574
+ }
575
+ .uniface-common-editor.outlined {
576
+ border: 1px solid var(--uniface-editor-border-color, #E2E8F0);
577
+ border-radius: var(--uniface-editor-outlined-radius, 4px);
578
+ }
579
+ .uniface-common-editor.outlined:focus-within {
580
+ border-color: var(--uniface-editor-outlined-active-border-color, #298DFF);
581
+ }
582
+ .uniface-common-editor.outlined:has(input:disabled) {
583
+ background-color: var(--uniface-editor-outlined-disabled-backgournd-color, #F1F5F9);
584
+ }
585
+ .uniface-common-editor.filled {
586
+ border-top-right-radius: var(--uniface-editor-outlined-radius, 4px);
587
+ border-top-left-radius: var(--uniface-editor-outlined-radius, 4px);
588
+ background-color: var(--uniface-editor-filled-backgournd-color, #F8FAFC);
589
+ }
590
+ .uniface-common-editor.plain {
591
+ border: none;
592
+ }
593
+ .uniface-common-editor.plain:focus-within {
594
+ border-bottom-color: transparent;
595
+ }
596
+ .uniface-common-editor .editor-prefix, .uniface-common-editor .editor-suffix {
597
+ color: #6B7280;
598
+ font-size: 1em;
599
+ line-height: normal;
600
+ box-sizing: border-box;
601
+ }
602
+ .uniface-common-editor .editor-prefix {
603
+ margin-left: 4px;
604
+ }
605
+ .uniface-common-editor .editor-suffix {
606
+ margin-left: 4px;
607
+ }
608
+ .uniface-common-editor .password-icon {
609
+ color: var(--uniface-editor-action-icon-color, #ffffff);
610
+ }
611
+ .uniface-common-editor .password-icon:hover {
612
+ color: var(--uniface-editor-text-color, #374151);
613
+ cursor: pointer;
614
+ }
615
+ .uniface-common-editor input:hover + .password-icon {
616
+ color: var(--uniface-editor-text-color, #374151);
617
+ }
618
+ .uniface-common-editor input:disabled + .password-icon {
619
+ color: #d9d9d9;
620
+ }
621
+ .uniface-common-editor input:read-only + .password-icon {
622
+ color: #d9d9d9;
623
+ }
624
+
625
+ .switch-box input[type=checkbox] {
626
+ visibility: hidden;
627
+ display: none;
628
+ }
629
+ .switch-box*, .switch-box::after, .switch-box::before {
630
+ box-sizing: border-box;
631
+ }
632
+ .switch-box .switch {
633
+ font-size: 15px;
634
+ position: relative;
635
+ display: inline-block;
636
+ width: 100px;
637
+ height: 30px;
638
+ }
639
+ .switch-box .switch .text {
640
+ position: absolute;
641
+ line-height: 30px;
642
+ right: 10px;
643
+ color: #333333;
644
+ user-select: none;
645
+ }
646
+ .switch-box .switch input {
647
+ opacity: 0;
648
+ width: 0;
649
+ height: 0;
650
+ }
651
+ .switch-box .switch .slider {
652
+ position: absolute;
653
+ cursor: pointer;
654
+ top: 0;
655
+ left: 0;
656
+ right: 0;
657
+ bottom: 0;
658
+ background-color: #fff;
659
+ border: 1px solid #adb5bd;
660
+ transition: 0.4s;
661
+ border-radius: 30px;
662
+ }
663
+ .switch-box .switch .slider:before {
664
+ position: absolute;
665
+ content: "";
666
+ height: 22px;
667
+ width: 22px;
668
+ border-radius: 11px;
669
+ left: 5px;
670
+ bottom: 3px;
671
+ background-color: #adb5bd;
672
+ transition: 0.4s;
673
+ }
674
+ .switch-box input:checked ~ .text {
675
+ color: #fff;
676
+ left: 10px;
677
+ right: unset;
678
+ }
679
+ .switch-box .disabled .text {
680
+ color: #333;
681
+ }
682
+ .switch-box input:checked + .slider {
683
+ background-color: #007bff;
684
+ border: 1px solid #007bff;
685
+ }
686
+ .switch-box input:focus + .slider {
687
+ box-shadow: 0 0 1px #007bff;
688
+ }
689
+ .switch-box input:checked + .slider:before {
690
+ transform: translateX(65px);
691
+ background-color: #fff;
692
+ }
693
+ .switch-box .readonly .slider {
694
+ cursor: default;
695
+ }
696
+ .switch-box .disabled .slider {
697
+ background-color: #E1E1E1;
698
+ cursor: default;
699
+ }
700
+ .switch-box .disabled input:checked + .slider {
701
+ background-color: #E1E1E1;
702
+ border: 1px solid #E1E1E1;
703
+ }
704
+
705
+ /* The switch - the box around the slider */
706
+ /* Hide default HTML checkbox */
707
+ /* The slider
708
+
709
+
710
+ .switch-box input:checked + .slider {
711
+ background-color: #007bff;
712
+ border: 1px solid #007bff;
713
+ }
714
+
715
+ .switch-box input:focus + .slider {
716
+ box-shadow: 0 0 1px #007bff;
717
+ }
718
+
719
+ .switch-box input:checked + .slider:before {
720
+ transform: translateX(2.4em);
721
+ background-color: #fff;
722
+ }*/
723
+ .uniface-display-field {
724
+ width: 100%;
725
+ padding: 8px 6px 2px 6px;
726
+ box-sizing: border-box;
727
+ border-bottom: 1px solid var(--uniface-editor-border-color, #E2E8F0);
728
+ color: var(--uniface-editor-text-color, #374151);
729
+ }
730
+
731
+ .uniface-form-field {
732
+ box-sizing: border-box;
733
+ display: block;
734
+ position: relative;
735
+ }
736
+ .uniface-form-field .required-indicator {
737
+ color: #ff3e00;
738
+ }
739
+ .uniface-form-field .field-label {
740
+ color: var(--uniface-primary-label-color, #333333);
741
+ font-size: 0.8em;
742
+ font-weight: 500;
743
+ box-sizing: border-box;
744
+ line-height: 1.1em;
745
+ user-select: none;
746
+ }
747
+ .uniface-form-field .uniface-field-text {
748
+ width: 100%;
749
+ padding: 4px 0;
750
+ border-bottom: 1px solid var(--uniface-primary-label-color, #333333);
751
+ min-height: 20px;
752
+ }
753
+ .uniface-form-field.vertical .form-content {
754
+ height: 100%;
755
+ display: flex;
756
+ flex-direction: column;
757
+ }
758
+ .uniface-form-field.vertical .form-content .field-label {
759
+ width: 100%;
760
+ padding: 0 4px 4px 4px;
761
+ white-space: nowrap;
762
+ overflow: hidden;
763
+ text-overflow: ellipsis;
764
+ flex: 0 0 auto;
765
+ }
766
+ .uniface-form-field.vertical .form-content .field-hint {
767
+ flex: 0 0 auto;
768
+ }
769
+ .uniface-form-field.vertical .form-content .field {
770
+ flex: 1 1 auto;
771
+ }
772
+ .uniface-form-field.horizontal .form-content {
773
+ display: flex;
774
+ flex-direction: row;
775
+ box-sizing: border-box;
776
+ }
777
+ .uniface-form-field.horizontal .form-content .field-label {
778
+ flex: 0 0 auto;
779
+ width: 120px;
780
+ text-align: right;
781
+ padding-right: 8px;
782
+ box-sizing: border-box;
783
+ line-height: 14px;
784
+ }
785
+ .uniface-form-field.horizontal .form-content .field {
786
+ flex: 1 1 auto;
787
+ position: relative;
788
+ box-sizing: border-box;
789
+ }
790
+ .uniface-form-field .field-hint {
791
+ width: 100%;
792
+ box-sizing: border-box;
793
+ padding: 4px;
794
+ font-size: 0.9em;
795
+ font-style: italic;
796
+ color: var(--uniface-invalid-message-color, #ff3e00);
797
+ }
798
+
799
+ .flex-block {
800
+ position: relative;
801
+ }
802
+ .flex-block.flex {
803
+ width: 100%;
804
+ height: 100%;
805
+ display: flex;
806
+ flex-direction: column;
807
+ position: relative;
808
+ box-sizing: border-box;
809
+ overflow: auto;
810
+ }
811
+ .flex-block.flex .flex-block {
812
+ flex-grow: 0;
813
+ flex-shrink: 0;
814
+ flex-basis: auto;
815
+ overflow: auto;
816
+ }
817
+ .flex-block.flex .flex-block.auto_fit {
818
+ flex-grow: 1;
819
+ flex-shrink: 1;
820
+ }
821
+ .flex-block.flex .flex-block.grow {
822
+ flex-grow: 1;
823
+ }
824
+ .flex-block.flex .flex-block.shrink {
825
+ flex-shrink: 1;
826
+ }
827
+ .flex-block.flex.horizontal {
828
+ flex-direction: row;
829
+ }
830
+
831
+ .uniface-option-select {
832
+ display: inline-block;
833
+ height: 38px;
834
+ position: relative;
835
+ width: 100%;
836
+ }
837
+ .uniface-option-select > div {
838
+ display: flex;
839
+ flex-direction: row;
840
+ justify-items: center;
841
+ }
842
+ .uniface-option-select input {
843
+ cursor: default;
844
+ }
845
+ .uniface-option-select .option-field {
846
+ flex: 1 1 auto;
847
+ overflow: hidden;
848
+ text-overflow: ellipsis;
849
+ }
850
+ .uniface-option-select .option-action {
851
+ display: none;
852
+ box-sizing: border-box;
853
+ font-size: 16px;
854
+ line-height: 22px;
855
+ color: #9d9d9d;
856
+ align-self: center;
857
+ }
858
+ .uniface-option-select:hover .option-action {
859
+ display: block;
860
+ }
861
+ .uniface-option-select .option-dropdown {
862
+ box-sizing: border-box;
863
+ font-size: 22px;
864
+ line-height: 22px;
865
+ color: var(--uniface-dropdown-color, #e1e1e1);
866
+ align-self: center;
867
+ cursor: pointer;
868
+ }
869
+ .uniface-option-select .filled .option-dropdown {
870
+ color: var(--uniface-secondary-dropdown-color, #b9b9b9);
871
+ }
872
+ .uniface-option-select.compact {
873
+ height: 28px;
874
+ }
875
+ .uniface-option-select.compact .option-field input {
876
+ height: 28px;
877
+ }
878
+ .uniface-option-select.compact .uniface-common-editor {
879
+ height: 30px;
880
+ }
881
+ .uniface-option-select.compact .option-dropdown {
882
+ padding: 0;
883
+ font-size: 20px;
884
+ height: 20px;
885
+ width: 20px;
886
+ }
887
+
888
+ .options-popover {
889
+ user-select: none;
890
+ max-height: 30vh;
891
+ }
892
+ .options-popover > div {
893
+ width: 100%;
894
+ box-sizing: border-box;
895
+ padding: 4px 6px;
896
+ cursor: pointer;
897
+ font-size: 1.1em;
898
+ line-height: 1.5em;
899
+ }
900
+ .options-popover > div:hover {
901
+ background-color: var(--uniface-hover-item-background, #f7f7f7);
902
+ color: var(--uniface-hover-item-color, #42A5F5);
903
+ }
904
+ .options-popover > div.disabled {
905
+ color: var(--uniface-disabled-color, #7f7f7f);
906
+ cursor: default;
907
+ }
908
+ .options-popover > div.disabled:hover {
909
+ background-color: unset;
910
+ }
911
+
912
+ .uniface-group-box {
913
+ border-bottom: 1px solid var(--uniface-border-color, #9d9d9d);
914
+ padding: var(--uniface-box-padding, 0 4px);
915
+ width: 100%;
916
+ box-sizing: border-box;
917
+ position: relative;
918
+ display: inline-flex;
919
+ flex-wrap: wrap;
920
+ min-height: 38px;
921
+ align-content: center;
922
+ }
923
+ .uniface-group-box:focus-within, .uniface-group-box:focus, .uniface-group-box:active {
924
+ outline: none;
925
+ border-bottom-color: var(--uniface-active-border-color, #ff3e00);
926
+ }
927
+ .uniface-group-box.disabled:focus-within, .uniface-group-box.disabled:focus, .uniface-group-box.disabled:active {
928
+ border-bottom-color: var(--uniface-border-color, #9d9d9d);
929
+ }
930
+ .uniface-group-box.plain {
931
+ border: none;
932
+ }
933
+ .uniface-group-box.outlined {
934
+ border: 1px solid var(--uniface-border-color, #9d9d9d);
935
+ border-radius: var(--uniface-field-round, 4px);
936
+ }
937
+ .uniface-group-box.outlined:focus-within, .uniface-group-box.outlined:focus, .uniface-group-box.outlined:active {
938
+ border-color: var(--uniface-active-border-color, #ff3e00);
939
+ }
940
+ .uniface-group-box.outlined.disabled:focus-within, .uniface-group-box.outlined.disabled:focus, .uniface-group-box.outlined.disabled:active {
941
+ border-color: var(--uniface-border-color, #9d9d9d);
942
+ }
943
+ .uniface-group-box.filled {
944
+ border-top-right-radius: var(--uniface-field-round, 4px);
945
+ border-top-left-radius: var(--uniface-field-round, 4px);
946
+ background-color: var(--uniface-filled-color, #f7f7f7);
947
+ }
948
+ .uniface-group-box.compact {
949
+ min-height: 28px;
950
+ padding: var(--uniface-editor-compact-padding, 3px 4px);
951
+ }
952
+
953
+ .uniface-radio-button {
954
+ display: inline-block;
955
+ height: 26px;
956
+ line-height: 26px;
957
+ padding: 0 8px 0 30px;
958
+ box-sizing: border-box;
959
+ position: relative;
960
+ cursor: pointer;
961
+ font-size: 1em;
962
+ -webkit-user-select: none;
963
+ -moz-user-select: none;
964
+ -ms-user-select: none;
965
+ user-select: none;
966
+ }
967
+ .uniface-radio-button:hover input ~ span {
968
+ border-color: #99caff;
969
+ }
970
+ .uniface-radio-button > span {
971
+ position: absolute;
972
+ top: 4px;
973
+ left: 4px;
974
+ height: 18px;
975
+ width: 18px;
976
+ background-color: white;
977
+ border: 1px solid #d9d9d9;
978
+ border-radius: 50%;
979
+ cursor: pointer;
980
+ }
981
+ .uniface-radio-button > span:after {
982
+ content: "";
983
+ position: absolute;
984
+ top: 4px;
985
+ left: 4px;
986
+ width: 10px;
987
+ height: 10px;
988
+ border-radius: 50%;
989
+ background: var(----uniface-active-border-color, #409eff);
990
+ display: none;
991
+ }
992
+ .uniface-radio-button input {
993
+ position: absolute;
994
+ opacity: 0;
995
+ cursor: pointer;
996
+ }
997
+ .uniface-radio-button input:checked ~ span:after {
998
+ -webkit-transition: all 0.2s ease;
999
+ transition: all 0.2s ease;
1000
+ display: block;
1001
+ }
1002
+ .uniface-radio-button.disabled {
1003
+ cursor: not-allowed;
1004
+ }
1005
+ .uniface-radio-button.disabled:hover input ~ span {
1006
+ border-color: #d9d9d9;
1007
+ }
1008
+ .uniface-radio-button.disabled > span {
1009
+ background-color: #f0f0f0;
1010
+ }
1011
+ .uniface-radio-button.disabled > span:after {
1012
+ background: #99caff;
1013
+ }
1014
+ .uniface-radio-button.compact {
1015
+ height: 22px;
1016
+ line-height: 22px;
1017
+ padding: 0 4px 0 28px;
1018
+ font-size: 0.9em;
1019
+ }
1020
+ .uniface-radio-button.compact > span {
1021
+ position: absolute;
1022
+ top: 1px;
1023
+ left: 1px;
1024
+ height: 16px;
1025
+ width: 16px;
1026
+ }
1027
+ .uniface-radio-button.compact > span:after {
1028
+ content: "";
1029
+ position: absolute;
1030
+ top: 3px;
1031
+ left: 3px;
1032
+ width: 10px;
1033
+ height: 10px;
1034
+ }
1035
+
1036
+ .uniface-dialog-board {
1037
+ position: fixed;
1038
+ top: 0;
1039
+ left: 0;
1040
+ bottom: 0;
1041
+ right: 0;
1042
+ background-color: rgba(255, 255, 255, 0.1254901961);
1043
+ z-index: 20;
1044
+ }
1045
+
1046
+ .uniface-dialog {
1047
+ position: fixed;
1048
+ top: 0;
1049
+ left: 0;
1050
+ bottom: 0;
1051
+ right: 0;
1052
+ }
1053
+ .uniface-dialog > div {
1054
+ display: flex;
1055
+ flex-direction: column;
1056
+ position: relative;
1057
+ width: 100%;
1058
+ height: 100%;
1059
+ background-color: rgba(255, 255, 255, 0.062745098);
1060
+ justify-content: center;
1061
+ }
1062
+ .uniface-dialog .uniface-dialog-box {
1063
+ margin: 0 auto;
1064
+ background-color: #ffffff;
1065
+ position: relative;
1066
+ border-radius: 4px;
1067
+ border: 1px solid var(--uniface-dialog-border-color, rgba(0, 0, 0, 0.0509803922));
1068
+ box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
1069
+ overflow: hidden;
1070
+ display: flex;
1071
+ flex-direction: column;
1072
+ }
1073
+ .uniface-dialog .uniface-dialog-box .title-bar {
1074
+ position: relative;
1075
+ width: 100%;
1076
+ box-sizing: border-box;
1077
+ padding: 0 24px;
1078
+ font-size: 1.25em;
1079
+ height: 54px;
1080
+ flex: 0 0 auto;
1081
+ display: flex;
1082
+ flex-direction: row;
1083
+ align-items: center;
1084
+ user-select: none;
1085
+ border-bottom: 1px solid var(--uniface-dialog-divider-color, #F0F0F0);
1086
+ color: var(--uniface-dialog-header-color, #07123C);
1087
+ }
1088
+ .uniface-dialog .uniface-dialog-box .title-bar .dialog-action-button {
1089
+ cursor: pointer;
1090
+ color: var(--uniface-dialog-action-button-color, #B3BCCA);
1091
+ }
1092
+ .uniface-dialog .uniface-dialog-box .title-bar .dialog-action-button:hover {
1093
+ background-color: var(--uniface-dialog-action-button-hover-background-color, #E2E8F0);
1094
+ border-radius: 4px;
1095
+ }
1096
+ .uniface-dialog .uniface-dialog-box .title-bar .dialog-action-button:active {
1097
+ position: relative;
1098
+ top: 1px;
1099
+ }
1100
+ .uniface-dialog .uniface-dialog-box .dialog-content {
1101
+ flex: 1 1 auto;
1102
+ overflow: auto;
1103
+ box-sizing: border-box;
1104
+ }
1105
+ .uniface-dialog .uniface-dialog-box .control-bar {
1106
+ height: 54px;
1107
+ flex: 0 0 auto;
1108
+ width: 100%;
1109
+ box-sizing: border-box;
1110
+ text-align: center;
1111
+ user-select: none;
1112
+ display: flex;
1113
+ flex-direction: row;
1114
+ padding: 0 24px;
1115
+ align-items: center;
1116
+ justify-content: flex-end;
1117
+ border-top: 1px solid var(--uniface-dialog-divider-color, #F0F0F0);
1118
+ }
1119
+
1120
+ /*通用按钮设置*/
1121
+ .uniface-button {
1122
+ display: inline-block;
1123
+ box-sizing: border-box;
1124
+ cursor: pointer;
1125
+ text-align: center;
1126
+ -webkit-user-select: none;
1127
+ -moz-user-select: none;
1128
+ -ms-user-select: none;
1129
+ user-select: none;
1130
+ font-size: 12px;
1131
+ letter-spacing: 1px;
1132
+ transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
1133
+ /*普通按钮*/
1134
+ }
1135
+ .uniface-button.common-button.default, .uniface-button.icon-button.default {
1136
+ background-color: var(--uniface-button-plain-background-color, #f0f0f0);
1137
+ border-color: var(--uniface-button-plain-border-color, #f0f0f0);
1138
+ color: var(--uniface-button-plain-text-color, #374151);
1139
+ }
1140
+ .uniface-button.common-button.default:hover, .uniface-button.icon-button.default:hover {
1141
+ background-color: var(--uniface-button-plain-hover-color, rgba(240, 240, 240, 0.6901960784));
1142
+ }
1143
+ .uniface-button.common-button.default:active, .uniface-button.icon-button.default:active {
1144
+ background-color: var(--uniface-button-primary-active-color, #f0f0f0);
1145
+ }
1146
+ .uniface-button.common-button.primary, .uniface-button.icon-button.primary {
1147
+ background-color: var(--uniface-button-primary-background-color, #42A5F5);
1148
+ border-color: var(--uniface-button-primary-border-color, #42B5DB);
1149
+ color: var(--uniface-button-primary-text-color, #ffffff);
1150
+ }
1151
+ .uniface-button.common-button.primary:hover, .uniface-button.icon-button.primary:hover {
1152
+ background-color: var(--uniface-text-button-primary-hover-color, rgba(66, 165, 245, 0.6901960784));
1153
+ }
1154
+ .uniface-button.common-button.primary:active, .uniface-button.icon-button.primary:active {
1155
+ background-color: var(--uniface-button-primary-active-color, #42A5F5);
1156
+ }
1157
+ .uniface-button.common-button.secondary, .uniface-button.icon-button.secondary {
1158
+ background-color: var(--uniface-button-secondary-background-color, #FF685B);
1159
+ border-color: var(--uniface-button-secondary-border-color, #FF7875);
1160
+ color: var(--uniface-button-secondary-text-color, #ffffff);
1161
+ }
1162
+ .uniface-button.common-button.secondary:hover, .uniface-button.icon-button.secondary:hover {
1163
+ background-color: var(--uniface-button-secondary-hover-color, rgba(255, 104, 91, 0.6901960784));
1164
+ }
1165
+ .uniface-button.common-button.secondary:active, .uniface-button.icon-button.secondary:active {
1166
+ background-color: var(--uniface-button-secondary-active-color, #FF685B);
1167
+ }
1168
+ .uniface-button.common-button.third, .uniface-button.icon-button.third {
1169
+ background-color: var(--uniface-button-third-background-color, #2DC071);
1170
+ border-color: var(--uniface-button-third-border-color, #2DD08B);
1171
+ color: var(--uniface-button-third-text-color, #ffffff);
1172
+ }
1173
+ .uniface-button.common-button.third:hover, .uniface-button.icon-button.third:hover {
1174
+ background-color: var(--uniface-button-third-hover-color, rgba(45, 176, 139, 0.6901960784));
1175
+ }
1176
+ .uniface-button.common-button.third:active, .uniface-button.icon-button.third:active {
1177
+ background-color: var(--uniface-button-third-active-color, #2DC071);
1178
+ }
1179
+ .uniface-button.common-button.forth, .uniface-button.icon-button.forth {
1180
+ background-color: var(--uniface-button-forth-background-color, #FAD85D);
1181
+ border-color: var(--uniface-button-forth-border-color, #FAE877);
1182
+ color: var(--uniface-button-forth-text-color, #374151);
1183
+ }
1184
+ .uniface-button.common-button.forth:hover, .uniface-button.icon-button.forth:hover {
1185
+ background-color: var(--uniface-button-forth-hover-color, rgba(250, 216, 93, 0.6901960784));
1186
+ }
1187
+ .uniface-button.common-button.forth:active, .uniface-button.icon-button.forth:active {
1188
+ background-color: var(--uniface-button-forth-active-color, #FAD85D);
1189
+ }
1190
+ .uniface-button.common-button:active, .uniface-button.icon-button:active {
1191
+ position: relative;
1192
+ top: 1px;
1193
+ }
1194
+ .uniface-button.common-button.disabled, .uniface-button.icon-button.disabled {
1195
+ cursor: not-allowed;
1196
+ background-color: var(--uniface-disabled-button-color, #F1F5F9);
1197
+ border-color: var(--uniface-disabled-button-border-color, #E2E8F0);
1198
+ color: var(--uniface-disabled-button-text-color, #B3BCCA);
1199
+ }
1200
+ .uniface-button.common-button.disabled:active, .uniface-button.icon-button.disabled:active {
1201
+ top: 0;
1202
+ }
1203
+ .uniface-button.common-button.disabled:hover, .uniface-button.icon-button.disabled:hover {
1204
+ background-color: var(--uniface-disabled-button-color, #F1F5F9);
1205
+ color: var(--uniface-disabled-button-text-color, #B3BCCA);
1206
+ }
1207
+ .uniface-button.common-button {
1208
+ padding: 6px 16px;
1209
+ border-radius: 4px;
1210
+ }
1211
+ .uniface-button.common-button > span {
1212
+ padding: 0 4px;
1213
+ }
1214
+ .uniface-button.common-button.big {
1215
+ padding: 10px 20px;
1216
+ font-size: 1.1em;
1217
+ }
1218
+ .uniface-button.common-button.mini {
1219
+ padding: 4px 10px;
1220
+ font-size: 0.9em;
1221
+ }
1222
+ .uniface-button.common-button.plain {
1223
+ border-radius: 0;
1224
+ }
1225
+ .uniface-button.common-button.round {
1226
+ border-radius: 18px;
1227
+ }
1228
+ .uniface-button.common-button.round.big {
1229
+ border-radius: 24px;
1230
+ }
1231
+ .uniface-button.common-button.round.mini {
1232
+ border-radius: 12px;
1233
+ }
1234
+ .uniface-button.icon-button {
1235
+ width: 32px;
1236
+ height: 32px;
1237
+ padding: 2px;
1238
+ border-radius: 50%;
1239
+ }
1240
+ .uniface-button.icon-button i {
1241
+ line-height: 28px;
1242
+ font-size: 16px;
1243
+ }
1244
+ .uniface-button.icon-button.big {
1245
+ width: 48px;
1246
+ height: 48px;
1247
+ padding: 4px;
1248
+ }
1249
+ .uniface-button.icon-button.big i {
1250
+ line-height: 40px;
1251
+ font-size: 24px;
1252
+ }
1253
+ .uniface-button.icon-button.mini {
1254
+ width: 24px;
1255
+ height: 24px;
1256
+ padding: 2px;
1257
+ }
1258
+ .uniface-button.icon-button.mini i {
1259
+ line-height: 20px;
1260
+ font-size: 12px;
1261
+ }
1262
+ .uniface-button.text-button {
1263
+ padding: 3px 6px;
1264
+ cursor: pointer;
1265
+ text-align: center;
1266
+ background-color: transparent;
1267
+ color: var(--uniface-button-plain-text-color, #374151);
1268
+ user-select: none;
1269
+ }
1270
+ .uniface-button.text-button.big {
1271
+ font-size: 1.2em;
1272
+ padding: 4px 8px;
1273
+ }
1274
+ .uniface-button.text-button.mini {
1275
+ font-size: 0.9em;
1276
+ padding: 2px 4px;
1277
+ }
1278
+ .uniface-button.text-button:hover {
1279
+ color: var(--uniface-text-button-plain-hover-color, rgba(55, 65, 81, 0.6901960784));
1280
+ }
1281
+ .uniface-button.text-button:active {
1282
+ position: relative;
1283
+ top: 1px;
1284
+ }
1285
+ .uniface-button.text-button.primary {
1286
+ color: var(--uniface-button-primary-background-color, #42A5F5);
1287
+ }
1288
+ .uniface-button.text-button.primary:hover {
1289
+ color: var(--uniface-text-button-primary-hover-color, rgba(66, 165, 245, 0.4392156863));
1290
+ }
1291
+ .uniface-button.text-button.primary:active {
1292
+ color: var(--uniface-button-primary-background-color, #42A5F5);
1293
+ }
1294
+ .uniface-button.text-button.secondary {
1295
+ color: var(--uniface-button-secondary-background-color, #D32F2F);
1296
+ }
1297
+ .uniface-button.text-button.secondary:hover {
1298
+ color: var(--uniface-text-button-secondary-hover-color, rgba(211, 47, 47, 0.4392156863));
1299
+ }
1300
+ .uniface-button.text-button.secondary:active {
1301
+ color: var(--uniface-button-secondary-background-color, #D32F2F);
1302
+ }
1303
+ .uniface-button.text-button.third {
1304
+ color: var(--uniface-button-third-background-color, #2DC071);
1305
+ }
1306
+ .uniface-button.text-button.third:hover {
1307
+ color: var(--uniface-text-button-third-hover-color, rgba(45, 192, 113, 0.6901960784));
1308
+ }
1309
+ .uniface-button.text-button.third:active {
1310
+ color: var(--uniface-button-third-background-color, #2DC071);
1311
+ }
1312
+ .uniface-button.text-button.forth {
1313
+ color: var(--uniface-button-forth-background-color, #FAD85D);
1314
+ }
1315
+ .uniface-button.text-button.forth:hover {
1316
+ color: var(--uniface-text-button-forth-hover-color, rgba(250, 216, 93, 0.6901960784));
1317
+ }
1318
+ .uniface-button.text-button.forth:active {
1319
+ color: var(--uniface-button-forth-background-color, #FAD85D);
1320
+ }
1321
+ .uniface-button.text-button.disabled {
1322
+ cursor: not-allowed;
1323
+ color: var(--uniface-disabled-button-text-color, #B3BCCA);
1324
+ }
1325
+ .uniface-button.text-button.disabled:hover {
1326
+ color: var(--uniface-disabled-button-text-color, #B3BCCA);
1327
+ }
1328
+ .uniface-button.text-button.disabled:active {
1329
+ top: 0;
1330
+ color: var(--uniface-disabled-button-text-color, #B3BCCA);
1331
+ }
1332
+
1333
+ .uniface-indicator-board {
1334
+ position: fixed;
1335
+ top: 0;
1336
+ left: 0;
1337
+ bottom: 0;
1338
+ right: 0;
1339
+ background-color: rgba(255, 255, 255, 0.1254901961);
1340
+ display: flex;
1341
+ flex-direction: column;
1342
+ justify-content: center;
1343
+ z-index: 100;
1344
+ }
1345
+ .uniface-indicator-board > div {
1346
+ margin: 0 auto;
1347
+ min-width: 300px;
1348
+ line-height: 32px;
1349
+ padding: 16px 24px;
1350
+ box-sizing: border-box;
1351
+ border: 1px solid #d9d9d9;
1352
+ background-color: var(--uniface-background-color, #ffffff);
1353
+ color: #7f7f7f;
1354
+ border-radius: 8px;
1355
+ box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
1356
+ display: flex;
1357
+ flex-direction: column;
1358
+ }
1359
+ .uniface-indicator-board > div .card-content {
1360
+ flex: 1 1 auto;
1361
+ overflow: auto;
1362
+ width: 100%;
1363
+ }
1364
+ .uniface-indicator-board > div .card-action-bar {
1365
+ flex: 0 0 auto;
1366
+ }
1367
+
1368
+ .uniface-toast-board {
1369
+ position: fixed;
1370
+ left: 0;
1371
+ right: 0;
1372
+ background-color: rgba(255, 255, 255, 0.1254901961);
1373
+ display: block;
1374
+ text-align: center;
1375
+ z-index: 40;
1376
+ color: var(--uniface-toast-text-color, #ffffff);
1377
+ }
1378
+ .uniface-toast-board .error {
1379
+ background-color: var(--uniface-toast-error-background-color, #FF685B);
1380
+ }
1381
+ .uniface-toast-board .info {
1382
+ background-color: var(--uniface-toast-info-background-color, #0061FF);
1383
+ }
1384
+ .uniface-toast-board .success {
1385
+ background-color: var(--uniface-toast-successful-background-color, #2DC071);
1386
+ }
1387
+ .uniface-toast-board > div {
1388
+ display: inline-block;
1389
+ min-width: 300px;
1390
+ padding: 0 60px;
1391
+ line-height: 42px;
1392
+ box-sizing: border-box;
1393
+ border-radius: 4px;
1394
+ font-size: 15px;
1395
+ }
1396
+
1397
+ .uniface-message-board {
1398
+ position: fixed;
1399
+ top: 0;
1400
+ left: 0;
1401
+ bottom: 0;
1402
+ right: 0;
1403
+ background-color: rgba(255, 255, 255, 0.2509803922);
1404
+ user-select: none;
1405
+ z-index: 30;
1406
+ }
1407
+ .uniface-message-board > div {
1408
+ display: flex;
1409
+ flex-direction: column;
1410
+ position: relative;
1411
+ width: 100%;
1412
+ height: 100%;
1413
+ background-color: rgba(255, 255, 255, 0.062745098);
1414
+ justify-content: center;
1415
+ }
1416
+ .uniface-message-board .uniface-message-box > div {
1417
+ margin: 0 auto;
1418
+ width: 480px;
1419
+ position: relative;
1420
+ background-color: #ffffff;
1421
+ border-radius: 12px;
1422
+ border: 1px solid var(--uniface-dialog-border-color, rgba(0, 0, 0, 0.0509803922));
1423
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
1424
+ overflow: hidden;
1425
+ display: flex;
1426
+ flex-direction: column;
1427
+ font-size: 15px;
1428
+ }
1429
+ .uniface-message-board .uniface-message-box .box-icon {
1430
+ flex: 0 0 auto;
1431
+ width: 64px;
1432
+ box-sizing: border-box;
1433
+ padding: 8px 12px;
1434
+ margin-right: 24px;
1435
+ }
1436
+ .uniface-message-board .uniface-message-box .box-icon.warning {
1437
+ color: orange;
1438
+ }
1439
+ .uniface-message-board .uniface-message-box .box-icon.info {
1440
+ color: var(--uniface-button-primary-background-color, #333333);
1441
+ }
1442
+ .uniface-message-board .uniface-message-box .title-bar {
1443
+ width: 100%;
1444
+ height: 32px;
1445
+ box-sizing: border-box;
1446
+ font-size: 18px;
1447
+ color: var(--uniface-dialog-action-button-color, #6B7280);
1448
+ padding: 4px 8px;
1449
+ flex: 0 0 auto;
1450
+ text-align: right;
1451
+ justify-items: center;
1452
+ display: flex;
1453
+ flex-direction: column;
1454
+ justify-content: flex-end;
1455
+ }
1456
+ .uniface-message-board .uniface-message-box .title-bar .dialog-action-button {
1457
+ cursor: pointer;
1458
+ color: var(--uniface-dialog-action-button-color, #B3BCCA);
1459
+ }
1460
+ .uniface-message-board .uniface-message-box .title-bar .dialog-action-button:hover {
1461
+ background-color: var(--uniface-dialog-action-button-hover-background-color, #E2E8F0);
1462
+ border-radius: 4px;
1463
+ }
1464
+ .uniface-message-board .uniface-message-box .title-bar .dialog-action-button:active {
1465
+ position: relative;
1466
+ top: 1px;
1467
+ }
1468
+ .uniface-message-board .box-content {
1469
+ flex: 1 1 auto;
1470
+ overflow: auto;
1471
+ display: flex;
1472
+ flex-direction: row;
1473
+ justify-items: center;
1474
+ padding: 0 24px;
1475
+ box-sizing: border-box;
1476
+ line-height: 22px;
1477
+ }
1478
+ .uniface-message-board .box-content .message-topic {
1479
+ color: var(--uniface-dialog-topic-text-color, #07123C);
1480
+ font-weight: 600;
1481
+ padding: 4px 0;
1482
+ margin-bottom: 16px;
1483
+ }
1484
+ .uniface-message-board .control-bar {
1485
+ flex: 0 0 auto;
1486
+ text-align: right;
1487
+ padding: 4px 24px;
1488
+ box-sizing: border-box;
1489
+ margin-bottom: 24px;
1490
+ margin-top: 16px;
1491
+ }
1492
+
1493
+ .uniface-card {
1494
+ display: block;
1495
+ }
1496
+ .uniface-card > div {
1497
+ display: block;
1498
+ width: 240px;
1499
+ box-sizing: border-box;
1500
+ border-radius: 12px;
1501
+ position: relative;
1502
+ background-color: var(--uniface-card-bg, #ffffff);
1503
+ flex-direction: row;
1504
+ border: 1px solid var(--uniface-card-border-color, #E2E8F0);
1505
+ }
1506
+ .uniface-card > div:hover {
1507
+ border-color: var(--uniface-card-divid-border-color, rgba(66, 165, 245, 0.4392156863));
1508
+ }
1509
+ .uniface-card > div .card-header {
1510
+ height: var(--uniface-card-header-height, 54px);
1511
+ border-bottom: 1px solid var(--uniface-card-inside-border-color, #E2E8F0);
1512
+ box-sizing: border-box;
1513
+ }
1514
+ .uniface-card > div .card-header.simple {
1515
+ line-height: var(--uniface-card-header-height, 54px);
1516
+ padding: var(--uniface-card-header-padding, 0 24px);
1517
+ width: 100%;
1518
+ overflow: hidden;
1519
+ text-overflow: ellipsis;
1520
+ color: var(--uniface-card-primary-text-color, #374151);
1521
+ white-space: nowrap;
1522
+ }
1523
+ .uniface-card > div .card-action-bar {
1524
+ display: flex;
1525
+ height: 40px;
1526
+ padding: 4px 6px;
1527
+ box-sizing: border-box;
1528
+ text-align: center;
1529
+ border-top: 1px solid var(--uniface-card-inside-border-color, #E2E8F0);
1530
+ }
1531
+ .uniface-card > div .card-action-bar.simple {
1532
+ display: flex;
1533
+ justify-content: space-around;
1534
+ align-items: center;
1535
+ padding: 10px;
1536
+ }
1537
+ .uniface-card > div .card-action-bar.simple .action-item {
1538
+ display: flex;
1539
+ align-items: center;
1540
+ justify-content: center;
1541
+ flex: 1;
1542
+ position: relative;
1543
+ padding: 10px;
1544
+ }
1545
+ .uniface-card > div .card-action-bar.simple .action-item:not(:first-child)::before {
1546
+ content: "";
1547
+ position: absolute;
1548
+ left: 0;
1549
+ height: 60%;
1550
+ width: 1px;
1551
+ background: var(--uniface-card-inside-border-color, #E2E8F0);
1552
+ }
1553
+ .uniface-card > div .card-action-bar.simple .action-item i {
1554
+ cursor: pointer;
1555
+ color: var(--uniface-card-primary-text-color, #374151);
1556
+ }
1557
+ .uniface-card > div .card-action-bar.simple .action-item i:hover {
1558
+ color: var(--uniface-card-icon-hover-color, rgba(55, 65, 81, 0.4392156863));
1559
+ }
1560
+ .uniface-card > div .card-action-bar.simple .action-item i:active {
1561
+ position: relative;
1562
+ top: 1px;
1563
+ }
1564
+ .uniface-card > div .card-content {
1565
+ overflow: hidden;
1566
+ }
1567
+ .uniface-card.shadowBox > div {
1568
+ box-shadow: var(--uniface-card-shadow, rgba(0, 0, 0, 0.16) 0px 1px 4px);
1569
+ }
1570
+
1571
+ .uniface-tab-panel {
1572
+ width: 100%;
1573
+ box-sizing: border-box;
1574
+ position: relative;
1575
+ }
1576
+ .uniface-tab-panel > div {
1577
+ display: flex;
1578
+ flex-direction: column;
1579
+ height: 100%;
1580
+ }
1581
+ .uniface-tab-panel .tab-content {
1582
+ border: 1px solid var(--uniface-tab-border-color, #E2E8F0);
1583
+ background-color: var(--uniface-tab-bg, #F8FAFC);
1584
+ }
1585
+
1586
+ .uniface-tabs-wrap {
1587
+ width: 100%;
1588
+ box-sizing: border-box;
1589
+ display: flex;
1590
+ flex-direction: row;
1591
+ background-color: transparent;
1592
+ flex: 0 0 auto;
1593
+ align-items: center;
1594
+ user-select: none;
1595
+ }
1596
+ .uniface-tabs-wrap .scroll-right, .uniface-tabs-wrap .scroll-left {
1597
+ width: 24px;
1598
+ text-align: center;
1599
+ cursor: pointer;
1600
+ }
1601
+ .uniface-tabs-wrap .scroll-right:hover, .uniface-tabs-wrap .scroll-left:hover {
1602
+ color: var(--uniface-primary-hover-text-color, #298DFF);
1603
+ }
1604
+ .uniface-tabs-wrap .scroll-right:active, .uniface-tabs-wrap .scroll-left:active {
1605
+ position: relative;
1606
+ top: 1px;
1607
+ }
1608
+ .uniface-tabs-wrap .tabs-panel {
1609
+ flex: 1 1 auto;
1610
+ overflow: hidden;
1611
+ position: relative;
1612
+ white-space: nowrap;
1613
+ bottom: -1px;
1614
+ }
1615
+ .uniface-tabs-wrap .tabs-panel .uniface-tab {
1616
+ display: inline-block;
1617
+ padding: 8px 20px 4px 20px;
1618
+ margin-left: 4px;
1619
+ border-left: 1px solid var(--uniface-tab-border-color, #E2E8F0);
1620
+ border-right: 1px solid var(--uniface-tab-border-color, #E2E8F0);
1621
+ border-top: 1px solid var(--uniface-tab-border-color, #E2E8F0);
1622
+ border-bottom: 1px solid var(--uniface-tab-border-color, #E2E8F0);
1623
+ cursor: pointer;
1624
+ position: relative;
1625
+ border-top-left-radius: var(--uniface-tab-header-radius, 0);
1626
+ border-top-right-radius: var(--uniface-tab-header-radius, 0);
1627
+ background-color: var(--uniface-tab-inactive-background-color, #FFFFFF);
1628
+ }
1629
+ .uniface-tabs-wrap .tabs-panel .uniface-tab .tab-refresh {
1630
+ position: absolute;
1631
+ display: none;
1632
+ left: 3px;
1633
+ top: 3px;
1634
+ font-size: 12px;
1635
+ width: 12px;
1636
+ height: 12px;
1637
+ }
1638
+ .uniface-tabs-wrap .tabs-panel .uniface-tab .tab-refresh:active {
1639
+ top: 4px;
1640
+ }
1641
+ .uniface-tabs-wrap .tabs-panel .uniface-tab .tab-action {
1642
+ position: absolute;
1643
+ display: none;
1644
+ right: 2px;
1645
+ top: 2px;
1646
+ font-size: 12px;
1647
+ line-height: 12px;
1648
+ width: 12px;
1649
+ height: 12px;
1650
+ border-radius: 50%;
1651
+ }
1652
+ .uniface-tabs-wrap .tabs-panel .uniface-tab .tab-action:active {
1653
+ top: 3px;
1654
+ }
1655
+ .uniface-tabs-wrap .tabs-panel .uniface-tab:hover {
1656
+ color: var(--uniface-tab-hover-text-color, #298DFF);
1657
+ }
1658
+ .uniface-tabs-wrap .tabs-panel .uniface-tab:hover .tab-action {
1659
+ display: block;
1660
+ cursor: pointer;
1661
+ }
1662
+ .uniface-tabs-wrap .tabs-panel .uniface-tab.active {
1663
+ color: var(--uniface-tab-active-text-color, #0061FF);
1664
+ background-color: var(--uniface-tab-bg, #F8FAFC);
1665
+ border-bottom: 1px solid var(--uniface-tab-bg, #333333);
1666
+ font-weight: 600;
1667
+ cursor: default;
1668
+ }
1669
+ .uniface-tabs-wrap .tabs-panel .uniface-tab.active .tab-action {
1670
+ background-color: var(--uniface-tab-action-background, #ffffff);
1671
+ }
1672
+ .uniface-tabs-wrap .tabs-panel .uniface-tab.active .tab-refresh {
1673
+ display: block;
1674
+ }
1675
+ .uniface-tabs-wrap .tabs-panel .uniface-tab.active:hover {
1676
+ color: var(--uniface-tab-active-text-color, #0061FF);
1677
+ }
1678
+ .uniface-tabs-wrap .tabs-panel .uniface-tab.active:hover .tab-action {
1679
+ display: block;
1680
+ }
1681
+ .uniface-tabs-wrap.simple .tabs-panel {
1682
+ bottom: 0;
1683
+ }
1684
+ .uniface-tabs-wrap.simple .tabs-panel .uniface-tab {
1685
+ margin-left: 4px;
1686
+ border-bottom: 2px solid transparent;
1687
+ background-color: transparent;
1688
+ padding: 8px 8px 4px 8px;
1689
+ border-left: none;
1690
+ border-right: none;
1691
+ border-top: none;
1692
+ }
1693
+ .uniface-tabs-wrap.simple .tabs-panel .uniface-tab .tab-action {
1694
+ display: none;
1695
+ }
1696
+ .uniface-tabs-wrap.simple .tabs-panel .uniface-tab.active {
1697
+ color: var(--uniface-tab-active-text-color, #0061FF);
1698
+ border-bottom: 2px solid var(--uniface-tab-active-text-color, #0061FF);
1699
+ font-weight: 600;
1700
+ cursor: default;
1701
+ }
1702
+ .uniface-tabs-wrap.simple .tabs-panel .uniface-tab.active .tab-refresh {
1703
+ display: none;
1704
+ }
1705
+ .uniface-tabs-wrap.simple .tabs-panel .uniface-tab.active:hover {
1706
+ color: var(--uniface-tab-active-text-color, #0061FF);
1707
+ }
1708
+ .uniface-tabs-wrap.simple .tabs-panel .uniface-tab.active:hover .tab-action {
1709
+ display: none;
1710
+ }
1711
+
1712
+ .uniface-filter-field {
1713
+ box-sizing: border-box;
1714
+ display: block;
1715
+ position: relative;
1716
+ padding: 0 4px;
1717
+ width: 100px;
1718
+ vertical-align: top;
1719
+ }
1720
+ .uniface-filter-field.x15 {
1721
+ width: 150px;
1722
+ }
1723
+ .uniface-filter-field.x20 {
1724
+ width: 200px;
1725
+ }
1726
+ .uniface-filter-field.x25 {
1727
+ width: 250px;
1728
+ }
1729
+ .uniface-filter-field.x30 {
1730
+ width: 300px;
1731
+ }
1732
+ .uniface-filter-field.x35 {
1733
+ width: 350px;
1734
+ }
1735
+ .uniface-filter-field.x40 {
1736
+ width: 400px;
1737
+ }
1738
+ .uniface-filter-field .field-label {
1739
+ color: var(--uniface-primary-label-color, #333333);
1740
+ font-size: 0.9em;
1741
+ font-weight: 500;
1742
+ box-sizing: border-box;
1743
+ }
1744
+ .uniface-filter-field.vertical > div {
1745
+ width: 100%;
1746
+ position: relative;
1747
+ text-align: left;
1748
+ }
1749
+ .uniface-filter-field.vertical .field-label {
1750
+ width: 100%;
1751
+ padding: 0 4px 4px 4px;
1752
+ white-space: nowrap;
1753
+ overflow: hidden;
1754
+ text-overflow: ellipsis;
1755
+ }
1756
+ .uniface-filter-field.vertical .field {
1757
+ position: relative;
1758
+ display: flex;
1759
+ flex-direction: row;
1760
+ justify-items: center;
1761
+ width: 100%;
1762
+ }
1763
+ .uniface-filter-field.vertical .field > div {
1764
+ width: 100%;
1765
+ }
1766
+ .uniface-filter-field.horizontal > div {
1767
+ display: grid;
1768
+ width: 100%;
1769
+ position: relative;
1770
+ grid-template-columns: auto auto;
1771
+ align-items: center;
1772
+ box-sizing: border-box;
1773
+ }
1774
+ .uniface-filter-field.horizontal > div .field-label {
1775
+ text-align: right;
1776
+ width: 80px;
1777
+ padding-right: 4px;
1778
+ box-sizing: border-box;
1779
+ overflow: hidden;
1780
+ }
1781
+ .uniface-filter-field.horizontal > div .field {
1782
+ position: relative;
1783
+ box-sizing: border-box;
1784
+ }
1785
+
1786
+ .multiple .option-field {
1787
+ flex: 1 1 auto;
1788
+ display: flex;
1789
+ flex-direction: row;
1790
+ height: 100%;
1791
+ align-items: center;
1792
+ box-sizing: border-box;
1793
+ padding: 0 4px;
1794
+ }
1795
+ .multiple.disabled {
1796
+ color: var(--uniface-disabled-color, #7f7f7f);
1797
+ }
1798
+ .multiple.disabled .uniface-common-editor:focus-within {
1799
+ border-bottom-color: transparent;
1800
+ }
1801
+ .multiple .option-item {
1802
+ position: relative;
1803
+ display: block;
1804
+ padding: 2px 4px;
1805
+ flex: 0 0 auto;
1806
+ }
1807
+ .multiple .option-item i {
1808
+ position: absolute;
1809
+ background-color: #ffffff;
1810
+ color: #9d9d9d;
1811
+ left: -3px;
1812
+ top: -3px;
1813
+ font-size: 12px;
1814
+ text-align: center;
1815
+ height: 15px;
1816
+ width: 15px;
1817
+ border-radius: 8px;
1818
+ display: none;
1819
+ cursor: pointer;
1820
+ }
1821
+ .multiple .option-item:hover i {
1822
+ display: block;
1823
+ }
1824
+
1825
+ .uniface-tree-view {
1826
+ position: relative;
1827
+ background-color: var(--uniface-default-page-content-bg, #ffffff);
1828
+ color: var(--uniface-default-text-color, #374151);
1829
+ box-sizing: border-box;
1830
+ overflow: hidden;
1831
+ }
1832
+ .uniface-tree-view > div {
1833
+ width: 100%;
1834
+ height: 100%;
1835
+ box-sizing: border-box;
1836
+ padding-right: 8px;
1837
+ overflow: auto;
1838
+ user-select: none;
1839
+ }
1840
+ .uniface-tree-view .tree-node {
1841
+ position: relative;
1842
+ width: 100%;
1843
+ padding: 5px 0 5px 8px;
1844
+ box-sizing: border-box;
1845
+ }
1846
+ .uniface-tree-view .tree-node.expanded::before {
1847
+ content: ""; /* 创建伪元素 */
1848
+ position: absolute;
1849
+ top: 32px;
1850
+ left: 17px; /* 距离左边界8px */
1851
+ bottom: 16px;
1852
+ width: 1px;
1853
+ border-left: 1px dotted #e1e1e1; /* 设置点状竖线 */
1854
+ }
1855
+ .uniface-tree-view .tree-node .node-item {
1856
+ position: relative;
1857
+ width: 100%;
1858
+ white-space: nowrap;
1859
+ display: flex;
1860
+ height: 32px;
1861
+ box-sizing: border-box;
1862
+ align-items: center;
1863
+ border-radius: 6px;
1864
+ z-index: 5;
1865
+ }
1866
+ .uniface-tree-view .tree-node .node-item .item-icon {
1867
+ box-sizing: border-box;
1868
+ width: 18px;
1869
+ height: 18px;
1870
+ flex: 0 0 auto;
1871
+ cursor: pointer;
1872
+ justify-self: center;
1873
+ text-align: center;
1874
+ }
1875
+ .uniface-tree-view .tree-node .node-item .item-icon.branch:hover {
1876
+ border-radius: 50%;
1877
+ background-color: var(--tsui-item-image-hover-background-color, #f0f0f0);
1878
+ }
1879
+ .uniface-tree-view .tree-node .node-item .item-icon i {
1880
+ font-size: 15px;
1881
+ color: var(--uniface-treeview-icon-color, #8AA7FF);
1882
+ }
1883
+ .uniface-tree-view .tree-node .node-item .item-icon i:hover {
1884
+ color: var(--uniface-treeview-icon-hover-color, #0057FE);
1885
+ }
1886
+ .uniface-tree-view .tree-node .node-item img {
1887
+ width: 18px;
1888
+ height: 18px;
1889
+ vertical-align: middle;
1890
+ cursor: pointer;
1891
+ }
1892
+ .uniface-tree-view .tree-node .node-item > span {
1893
+ display: inline-block;
1894
+ justify-self: center;
1895
+ width: 100%;
1896
+ box-sizing: border-box;
1897
+ margin-left: 8px;
1898
+ vertical-align: baseline;
1899
+ cursor: pointer;
1900
+ flex-grow: 1;
1901
+ flex-shrink: 1;
1902
+ overflow: hidden;
1903
+ text-overflow: ellipsis;
1904
+ }
1905
+ .uniface-tree-view .tree-node .node-item:hover {
1906
+ background-color: var(--uniface-treeview-item-bg, #EEF4FF);
1907
+ }
1908
+ .uniface-tree-view .tree-node .node-item.selected .item-text {
1909
+ color: var(--uniface-treeview-item-selected-color, #0061FF);
1910
+ font-weight: 600;
1911
+ }
1912
+ .uniface-tree-view .tree-node .sub-tree {
1913
+ position: relative;
1914
+ padding-left: 12px;
1915
+ box-sizing: border-box;
1916
+ width: 100%;
1917
+ }
1918
+
1919
+ .uniface-drawer {
1920
+ position: fixed;
1921
+ top: 0;
1922
+ bottom: 0;
1923
+ left: 0;
1924
+ right: 0;
1925
+ background-color: rgba(255, 255, 255, 0.0039215686);
1926
+ z-index: 100;
1927
+ }
1928
+ .uniface-drawer > div {
1929
+ position: absolute;
1930
+ height: 100%;
1931
+ background-color: var(--tsui-app-background-color, #ffffff);
1932
+ box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px, rgba(0, 0, 0, 0.23) 0 3px 6px;
1933
+ }
1934
+ .uniface-drawer > div > div {
1935
+ position: relative;
1936
+ width: 100%;
1937
+ height: 100%;
1938
+ overflow: auto;
1939
+ }
1940
+ .uniface-drawer > div.left {
1941
+ left: 0;
1942
+ border-right: 1px solid var(--tsui-border-color, #9d9d9d);
1943
+ }
1944
+ .uniface-drawer > div.right {
1945
+ right: 0;
1946
+ border-left: 1px solid var(--tsui-border-color, #9d9d9d);
1947
+ }
1948
+
1949
+ .uniface-pagination-panel {
1950
+ width: 100%;
1951
+ overflow: hidden;
1952
+ white-space: nowrap;
1953
+ text-align: center;
1954
+ position: relative;
1955
+ user-select: none;
1956
+ }
1957
+ .uniface-pagination-panel.align-left {
1958
+ text-align: left;
1959
+ }
1960
+ .uniface-pagination-panel.align-right {
1961
+ text-align: right;
1962
+ }
1963
+ .uniface-pagination-panel .uniface-page-gap, .uniface-pagination-panel .uniface-page-no {
1964
+ position: relative;
1965
+ display: inline-block;
1966
+ margin: 0 8px;
1967
+ overflow: hidden;
1968
+ width: 2em;
1969
+ height: 2em;
1970
+ }
1971
+ .uniface-pagination-panel .uniface-page-gap span, .uniface-pagination-panel .uniface-page-no span {
1972
+ display: inline-block;
1973
+ overflow: hidden;
1974
+ text-overflow: ellipsis;
1975
+ text-align: center;
1976
+ line-height: 2em;
1977
+ }
1978
+ .uniface-pagination-panel .uniface-page-no {
1979
+ border-radius: 4px;
1980
+ color: var(--uniface-default-text-color, #374151);
1981
+ border: 1px solid var(--uniface-primary-border-color, #E2E8F0);
1982
+ cursor: pointer;
1983
+ }
1984
+ .uniface-pagination-panel .uniface-page-no:hover {
1985
+ border-color: var(--uniface-default-text-hover-color, rgba(41, 141, 255, 0.5019607843));
1986
+ }
1987
+ .uniface-pagination-panel .uniface-page-no:active {
1988
+ top: 1px;
1989
+ color: var(--uniface-default-active-text-color, #0061FF);
1990
+ }
1991
+ .uniface-pagination-panel .uniface-page-no.selected {
1992
+ color: var(--uniface-default-active-text-color, #0061FF);
1993
+ border-color: var(--uniface-default-active-border-color, rgba(0, 97, 255, 0.5019607843));
1994
+ cursor: default;
1995
+ }
1996
+ .uniface-pagination-panel .uniface-page-no.selected:active {
1997
+ top: 0;
1998
+ color: var(--uni-facepagination-selected-color, #ffffff);
1999
+ background-color: var(--uniface-button-primary-border-color, #42A5F5);
2000
+ }
2001
+ .uniface-pagination-panel.plain .uniface-page-no {
2002
+ background-color: inherit;
2003
+ border: none;
2004
+ }
2005
+ .uniface-pagination-panel.plain .uniface-page-no span {
2006
+ color: #7f7f7f;
2007
+ }
2008
+ .uniface-pagination-panel.plain .uniface-page-no:hover span {
2009
+ background-color: inherit;
2010
+ color: var(--uniface-button-primary-border-color, #42A5F5);
2011
+ }
2012
+ .uniface-pagination-panel.plain .uniface-page-no:active span {
2013
+ color: var(--uniface-button-primary-border-color, #42A5F5);
2014
+ }
2015
+ .uniface-pagination-panel.plain .uniface-page-no.selected span {
2016
+ font-weight: 600;
2017
+ color: var(--uni-facepagination-selected-background-color, #333333);
2018
+ }
2019
+ .uniface-pagination-panel.circle .uniface-page-no {
2020
+ border-radius: 50%;
2021
+ }
2022
+ .uniface-pagination-panel.big .uniface-page-gap, .uniface-pagination-panel.big .uniface-page-no {
2023
+ width: 3em;
2024
+ height: 3em;
2025
+ }
2026
+ .uniface-pagination-panel.big .uniface-page-gap span, .uniface-pagination-panel.big .uniface-page-no span {
2027
+ line-height: 3em;
2028
+ }
2029
+
2030
+ .uniface-header {
2031
+ background-color: var(--uniface-primary-color, #42A5F5);
2032
+ color: var(--uniface-primary-text-color, #ffffff);
2033
+ text-align: center;
2034
+ width: 100%;
2035
+ display: flex;
2036
+ flex-direction: row;
2037
+ box-sizing: border-box;
2038
+ justify-items: center;
2039
+ padding: 0.5em 0.5em;
2040
+ }
2041
+ .uniface-header .bar-home, .uniface-header .bar-right {
2042
+ flex: 0 0 auto;
2043
+ align-self: center;
2044
+ }
2045
+ .uniface-header .bar-home {
2046
+ display: flex;
2047
+ position: relative;
2048
+ width: 32px;
2049
+ height: 32px;
2050
+ border-radius: 50%;
2051
+ border: 1px solid transparent;
2052
+ overflow: hidden;
2053
+ box-sizing: border-box;
2054
+ flex-direction: column;
2055
+ justify-content: center;
2056
+ text-align: center;
2057
+ font-size: 22px;
2058
+ }
2059
+ .uniface-header .bar-home:hover {
2060
+ border-color: #ffffff;
2061
+ }
2062
+ .uniface-header .bar-home:active {
2063
+ top: 1px;
2064
+ }
2065
+ .uniface-header .title {
2066
+ flex: 1 1 auto;
2067
+ overflow: hidden;
2068
+ align-self: center;
2069
+ }
2070
+ .uniface-header .title span {
2071
+ padding: 0 4px;
2072
+ font-size: 24px;
2073
+ }
2074
+
2075
+ .uniface-lookup-editor {
2076
+ display: inline-block;
2077
+ height: 38px;
2078
+ position: relative;
2079
+ width: 100%;
2080
+ }
2081
+ .uniface-lookup-editor > div {
2082
+ display: flex;
2083
+ flex-direction: row;
2084
+ justify-items: center;
2085
+ }
2086
+ .uniface-lookup-editor input {
2087
+ cursor: default;
2088
+ }
2089
+ .uniface-lookup-editor .option-field {
2090
+ flex: 1 1 auto;
2091
+ overflow: hidden;
2092
+ }
2093
+ .uniface-lookup-editor .option-action {
2094
+ display: none;
2095
+ box-sizing: border-box;
2096
+ font-size: 16px;
2097
+ line-height: 22px;
2098
+ color: var(--uniface-dropdown-color, #e1e1e1);
2099
+ align-self: center;
2100
+ margin-right: 4px;
2101
+ cursor: pointer;
2102
+ }
2103
+ .uniface-lookup-editor .option-action:active {
2104
+ color: var(--uniface-active-dropdown-color, #9d9d9d);
2105
+ }
2106
+ .uniface-lookup-editor:hover .option-action {
2107
+ display: block;
2108
+ }
2109
+ .uniface-lookup-editor .option-dropdown {
2110
+ box-sizing: border-box;
2111
+ font-size: 22px;
2112
+ line-height: 22px;
2113
+ color: var(--uniface-dropdown-color, #e1e1e1);
2114
+ align-self: center;
2115
+ cursor: pointer;
2116
+ }
2117
+ .uniface-lookup-editor .option-dropdown:active {
2118
+ color: var(--uniface-active-dropdown-color, #9d9d9d);
2119
+ }
2120
+ .uniface-lookup-editor .filled .option-dropdown {
2121
+ color: var(--uniface-secondary-dropdown-color, #b9b9b9);
2122
+ }
2123
+ .uniface-lookup-editor.compact {
2124
+ height: 30px;
2125
+ }
2126
+ .uniface-lookup-editor.compact .option-dropdown {
2127
+ padding: 0;
2128
+ font-size: 20px;
2129
+ height: 20px;
2130
+ width: 20px;
2131
+ }
2132
+
2133
+ .uniface-calendar {
2134
+ display: inline-block;
2135
+ padding: 0;
2136
+ box-sizing: border-box;
2137
+ color: var(--uniface-default-text-color, #374151);
2138
+ }
2139
+ .uniface-calendar > div {
2140
+ display: flex;
2141
+ flex-direction: column;
2142
+ overflow: hidden;
2143
+ position: relative;
2144
+ }
2145
+ .uniface-calendar .uniface-title-bar {
2146
+ width: 100%;
2147
+ flex: 0 0 auto;
2148
+ display: flex;
2149
+ flex-direction: row;
2150
+ font-size: 1.25em;
2151
+ padding: 0.3em 0;
2152
+ font-weight: 600;
2153
+ align-items: center;
2154
+ border-bottom: 1px solid var(--uniface-primary-border-color, #f0f0f0);
2155
+ user-select: none;
2156
+ }
2157
+ .uniface-calendar .uniface-title-bar .title-text {
2158
+ cursor: pointer;
2159
+ display: inline-block;
2160
+ min-width: 20px;
2161
+ }
2162
+ .uniface-calendar .uniface-title-bar .action-icon {
2163
+ width: 1.5em;
2164
+ height: 1.5em;
2165
+ margin: 0 8px;
2166
+ box-sizing: border-box;
2167
+ border-radius: 50%;
2168
+ border: 1px solid transparent;
2169
+ text-align: center;
2170
+ }
2171
+ .uniface-calendar .uniface-title-bar .action-icon i {
2172
+ color: var(--uniface-inactive-icon-color, #e1e1e1);
2173
+ font-size: 1.2em;
2174
+ cursor: pointer;
2175
+ }
2176
+ .uniface-calendar .uniface-title-bar .action-icon i:active {
2177
+ color: var(--uniface-default-text-color, #374151);
2178
+ }
2179
+ .uniface-calendar .uniface-title-bar .action-icon:hover i {
2180
+ color: var(--uniface-primary-hover-color, #42A5F5);
2181
+ }
2182
+ .uniface-calendar .uniface-month-pickup-panel, .uniface-calendar .uniface-year-pickup-panel {
2183
+ position: absolute;
2184
+ top: 0;
2185
+ left: 0;
2186
+ bottom: 0;
2187
+ right: 0;
2188
+ background-color: rgba(255, 255, 255, 0.2509803922);
2189
+ user-select: none;
2190
+ }
2191
+ .uniface-calendar .uniface-month-pickup-panel > div, .uniface-calendar .uniface-year-pickup-panel > div {
2192
+ width: 100%;
2193
+ position: relative;
2194
+ top: 30px;
2195
+ padding: 10px;
2196
+ box-sizing: border-box;
2197
+ }
2198
+ .uniface-calendar .uniface-month-pickup-panel > div > div, .uniface-calendar .uniface-year-pickup-panel > div > div {
2199
+ width: 100%;
2200
+ box-sizing: border-box;
2201
+ border-radius: 4px;
2202
+ background-color: #ffffff;
2203
+ border: 1px solid var(--uniface-primary-border-color, #f7f7f7);
2204
+ overflow: auto;
2205
+ }
2206
+ .uniface-calendar .uniface-month-pickup-panel .month-block {
2207
+ margin: 8px 4px;
2208
+ padding: 2px 1px;
2209
+ text-align: center;
2210
+ box-sizing: border-box;
2211
+ line-height: 1.5em;
2212
+ color: var(--uniface-default-text-color, #374151);
2213
+ cursor: pointer;
2214
+ border-radius: 6px;
2215
+ border: 1px solid transparent;
2216
+ }
2217
+ .uniface-calendar .uniface-month-pickup-panel .month-block:hover {
2218
+ background-color: var(--uniface-default-hover-bg, rgba(66, 165, 245, 0.1019607843));
2219
+ }
2220
+ .uniface-calendar .uniface-month-pickup-panel .month-block.selected {
2221
+ color: var(--uniface-default-active-text-color, #0061FF);
2222
+ border-color: var(--uniface-default-active-text-color, rgba(0, 97, 255, 0.5019607843));
2223
+ }
2224
+ .uniface-calendar .uniface-month-pickup-panel .month-block.selected:hover {
2225
+ background-color: unset;
2226
+ }
2227
+ .uniface-calendar .uniface-year-pickup-panel .year-block {
2228
+ margin: 8px 4px;
2229
+ padding: 2px 1px;
2230
+ text-align: center;
2231
+ box-sizing: border-box;
2232
+ line-height: 1.5em;
2233
+ color: var(--uniface-default-text-color, #374151);
2234
+ cursor: pointer;
2235
+ border-radius: 6px;
2236
+ border: 1px solid transparent;
2237
+ }
2238
+ .uniface-calendar .uniface-year-pickup-panel .year-block:hover {
2239
+ background-color: var(--uniface-default-hover-bg, rgba(66, 165, 245, 0.1019607843));
2240
+ }
2241
+ .uniface-calendar .uniface-year-pickup-panel .year-block.selected {
2242
+ color: var(--uniface-default-active-text-color, #0061FF);
2243
+ border-color: var(--uniface-default-active-text-color, rgba(0, 97, 255, 0.5019607843));
2244
+ }
2245
+ .uniface-calendar .uniface-year-pickup-panel .year-block.selected:hover {
2246
+ background-color: unset;
2247
+ }
2248
+ .uniface-calendar .uniface-year-pickup-panel .year-block.disabled {
2249
+ color: var(--uniface-disabled-color, #9d9d9d);
2250
+ cursor: not-allowed;
2251
+ }
2252
+ .uniface-calendar .uniface-year-pickup-panel .year-block.disabled:hover {
2253
+ font-weight: unset;
2254
+ }
2255
+ .uniface-calendar .monthly-calendar {
2256
+ display: grid;
2257
+ grid-template-columns: auto auto auto auto auto auto auto;
2258
+ overflow: hidden;
2259
+ }
2260
+ .uniface-calendar .monthly-calendar .cell {
2261
+ width: 100%;
2262
+ position: relative;
2263
+ text-align: center;
2264
+ box-sizing: border-box;
2265
+ line-height: 1.9em;
2266
+ }
2267
+ .uniface-calendar .monthly-calendar .cell.today > span:first-child {
2268
+ background-color: var(--uniface-calendar-today-border-color, rgba(66, 165, 245, 0.4392156863));
2269
+ }
2270
+ .uniface-calendar .monthly-calendar .cell > span:first-child {
2271
+ user-select: none;
2272
+ position: relative;
2273
+ line-height: 1.5em;
2274
+ display: inline-block;
2275
+ padding: 0.125em;
2276
+ width: 1.75em;
2277
+ height: 1.75em;
2278
+ box-sizing: border-box;
2279
+ border-radius: 4px;
2280
+ border: 1px solid transparent;
2281
+ margin: 2px 0;
2282
+ cursor: pointer;
2283
+ }
2284
+ .uniface-calendar .monthly-calendar .cell > span:first-child:hover {
2285
+ background-color: var(--uniface-default-hover-bg, rgba(66, 165, 245, 0.1019607843));
2286
+ }
2287
+ .uniface-calendar .monthly-calendar .cell.week-title {
2288
+ font-weight: 600;
2289
+ }
2290
+ .uniface-calendar .monthly-calendar .cell.week-title > span {
2291
+ width: 100%;
2292
+ height: auto;
2293
+ padding: 0;
2294
+ border-radius: unset;
2295
+ border: none;
2296
+ margin: 0;
2297
+ cursor: default;
2298
+ }
2299
+ .uniface-calendar .monthly-calendar .cell.disabled {
2300
+ color: var(--uniface-disabled-color, #d9d9d9);
2301
+ }
2302
+ .uniface-calendar .monthly-calendar .cell.disabled > span:first-child {
2303
+ cursor: not-allowed;
2304
+ }
2305
+ .uniface-calendar .monthly-calendar .cell.disabled > span:first-child:hover {
2306
+ border-color: transparent;
2307
+ }
2308
+ .uniface-calendar .monthly-calendar .cell.selected > span:first-child {
2309
+ color: var(--uniface-default-active-text-color, #0061FF);
2310
+ border-color: var(--uniface-default-active-text-color, rgba(0, 97, 255, 0.5019607843));
2311
+ }
2312
+ .uniface-calendar .monthly-calendar .cell.selected > span:first-child:hover {
2313
+ background-color: unset;
2314
+ }
2315
+ .uniface-calendar.border {
2316
+ border: 1px solid var(--uniface-primary-border-color, #f0f0f0);
2317
+ }
2318
+ .uniface-calendar.border .cell {
2319
+ border-bottom: 1px solid #f7f7f7;
2320
+ border-right: 1px solid #f7f7f7;
2321
+ }
2322
+ .uniface-calendar.border .cell.title {
2323
+ font-weight: 600;
2324
+ border-bottom: 1px solid #d9d9d9;
2325
+ }
2326
+ .uniface-calendar.border .cell.lastRow {
2327
+ border-bottom: unset;
2328
+ }
2329
+ .uniface-calendar .weekend {
2330
+ color: #ff3e00;
2331
+ }
2332
+
2333
+ .time-picker-panel {
2334
+ overflow: hidden;
2335
+ position: relative;
2336
+ display: flex;
2337
+ flex-direction: column;
2338
+ }
2339
+ .time-picker-panel .uniface-title-bar {
2340
+ width: 100%;
2341
+ flex: 0 0 auto;
2342
+ display: flex;
2343
+ flex-direction: row;
2344
+ font-size: 1.25em;
2345
+ padding: 0.3em 0;
2346
+ font-weight: 600;
2347
+ align-items: center;
2348
+ border-bottom: 1px solid var(--uniface-primary-border-color, #f0f0f0);
2349
+ user-select: none;
2350
+ }
2351
+ .time-picker-panel .uniface-title-bar .title-text {
2352
+ cursor: pointer;
2353
+ display: inline-block;
2354
+ min-width: 20px;
2355
+ }
2356
+ .time-picker-panel .uniface-title-bar i {
2357
+ color: var(--uniface-inactive-icon-color, #e1e1e1);
2358
+ font-size: 1.2em;
2359
+ cursor: pointer;
2360
+ }
2361
+ .time-picker-panel .uniface-title-bar i:active {
2362
+ color: var(--uniface-active-icon-color, #333333);
2363
+ }
2364
+ .time-picker-panel .top-bar, .time-picker-panel .bottom-bar, .time-picker-panel .scroll-panel {
2365
+ width: 100%;
2366
+ text-align: center;
2367
+ }
2368
+ .time-picker-panel .top-bar, .time-picker-panel .bottom-bar, .time-picker-panel .current-time {
2369
+ width: 100%;
2370
+ }
2371
+ .time-picker-panel .top-bar > div, .time-picker-panel .bottom-bar > div, .time-picker-panel .current-time > div {
2372
+ flex: 1 1 auto;
2373
+ position: relative;
2374
+ }
2375
+ .time-picker-panel .current-time {
2376
+ text-align: center;
2377
+ padding: 8px 0;
2378
+ color: #7f7f7f;
2379
+ font-size: 1.15em;
2380
+ }
2381
+ .time-picker-panel .scroll-panel {
2382
+ justify-content: center;
2383
+ display: flex;
2384
+ flex-direction: row;
2385
+ justify-items: center;
2386
+ }
2387
+ .time-picker-panel .scroll-panel > div {
2388
+ flex: 0 0 33.33%;
2389
+ line-height: 18px;
2390
+ height: 100%;
2391
+ display: flex;
2392
+ flex-direction: column;
2393
+ justify-content: space-around;
2394
+ }
2395
+ .time-picker-panel .scroll-panel > div > div {
2396
+ text-align: center;
2397
+ padding: 3px 0;
2398
+ }
2399
+ .time-picker-panel .scroll-panel > div.inactive {
2400
+ color: #d9d9d9;
2401
+ }
2402
+ .time-picker-panel .scroll-panel > div .action-bar i {
2403
+ color: var(--uniface-inactive-icon-color, #e1e1e1);
2404
+ }
2405
+ .time-picker-panel .scroll-panel > div .action-bar i:active {
2406
+ position: relative;
2407
+ top: 1px;
2408
+ }
2409
+ .time-picker-panel .scroll-panel > div .action-bar:hover i {
2410
+ color: var(--uniface-active-icon-color, #333333);
2411
+ }
2412
+
2413
+ .uniface-popover .date-popover {
2414
+ user-select: none;
2415
+ }
2416
+ .uniface-popover .date-popover > div {
2417
+ width: 100%;
2418
+ box-sizing: border-box;
2419
+ cursor: pointer;
2420
+ }
2421
+
2422
+ .uniface-pagination-panel {
2423
+ display: flex;
2424
+ flex-direction: row;
2425
+ padding: 4px 0;
2426
+ box-sizing: border-box;
2427
+ align-items: center;
2428
+ justify-content: center;
2429
+ }
2430
+ .uniface-pagination-panel .page-options {
2431
+ flex: 0 0 auto;
2432
+ }
2433
+ .uniface-pagination-panel .pagination {
2434
+ flex: 1 1 auto;
2435
+ }
2436
+ .uniface-pagination-panel .pagination-info {
2437
+ flex: 0 0 auto;
2438
+ min-width: 150px;
2439
+ text-align: right;
2440
+ }
2441
+ .uniface-pagination-panel.left .pagination {
2442
+ flex: 0 0 auto;
2443
+ }
2444
+ .uniface-pagination-panel.right {
2445
+ justify-content: right;
2446
+ }
2447
+ .uniface-pagination-panel.right .pagination {
2448
+ flex: 0 0 auto;
2449
+ }
2450
+
2451
+ .uniface-navigator-menu-panel {
2452
+ display: block;
2453
+ width: 100%;
2454
+ height: 100%;
2455
+ user-select: none;
2456
+ background-color: var(--uniface-primary-color, #42A5F5);
2457
+ color: var(--uniface-primary-text-color, #ffffff);
2458
+ position: relative;
2459
+ overflow-x: hidden;
2460
+ overflow-y: auto;
2461
+ box-sizing: border-box;
2462
+ font-size: 15px;
2463
+ padding: 0.5em 1em 0.5em 0;
2464
+ }
2465
+ .uniface-navigator-menu-panelul, .uniface-navigator-menu-panel ul {
2466
+ list-style-type: none;
2467
+ padding-left: 0;
2468
+ width: 100%;
2469
+ box-sizing: border-box;
2470
+ margin: 0;
2471
+ }
2472
+ .uniface-navigator-menu-panelul li, .uniface-navigator-menu-panel ul li {
2473
+ position: relative;
2474
+ }
2475
+ .uniface-navigator-menu-panelul li span, .uniface-navigator-menu-panel ul li span {
2476
+ display: inline-block;
2477
+ width: 100%;
2478
+ line-height: 1.5em;
2479
+ box-sizing: border-box;
2480
+ padding: 0.25em 0.75em 0.25em 0.5em;
2481
+ cursor: pointer;
2482
+ overflow: hidden;
2483
+ text-overflow: ellipsis;
2484
+ white-space: nowrap;
2485
+ }
2486
+ .uniface-navigator-menu-panelul li span:hover, .uniface-navigator-menu-panel ul li span:hover {
2487
+ background-color: var(--uniface-navigator-menu-hover-background-color, #81D4FA);
2488
+ color: var(--uniface-default-text-color, #374151);
2489
+ border-radius: 4px;
2490
+ }
2491
+ .uniface-navigator-menu-panelul li.expandable > span:hover::after, .uniface-navigator-menu-panel ul li.expandable > span:hover::after {
2492
+ content: "▲";
2493
+ transition: transform 200ms;
2494
+ font-size: 0.9em;
2495
+ position: absolute;
2496
+ right: 8px;
2497
+ color: var(--uniface-default-text-color, #374151);
2498
+ }
2499
+ .uniface-navigator-menu-panelul li.expandable.fold ul, .uniface-navigator-menu-panel ul li.expandable.fold ul {
2500
+ display: none;
2501
+ }
2502
+ .uniface-navigator-menu-panelul li.expandable.fold span::after, .uniface-navigator-menu-panel ul li.expandable.fold span::after {
2503
+ transform: rotate(180deg);
2504
+ }
2505
+ .uniface-navigator-menu-panel ul {
2506
+ padding-left: 1em;
2507
+ }
2508
+
2509
+ .uniface-range-wrapper {
2510
+ display: block;
2511
+ height: 38px;
2512
+ position: relative;
2513
+ width: 100%;
2514
+ }
2515
+ .uniface-range-wrapper .uniface-range-editor {
2516
+ display: flex;
2517
+ flex-direction: row;
2518
+ gap: 8px;
2519
+ align-items: center;
2520
+ }
2521
+ .uniface-range-wrapper .uniface-range-editor .divider {
2522
+ position: relative;
2523
+ flex: 0 0 auto;
2524
+ width: 10px;
2525
+ }
2526
+ .uniface-range-wrapper .uniface-range-editor .divider::before {
2527
+ content: "";
2528
+ position: absolute;
2529
+ top: 50%;
2530
+ left: 0;
2531
+ width: 100%;
2532
+ height: 1px;
2533
+ background-color: var(--uniface-editor-inline-action-icon-color, rgba(55, 65, 81, 0.4392156863));
2534
+ transform: translateY(-50%);
2535
+ }
2536
+ .uniface-range-wrapper .uniface-range-editor input {
2537
+ cursor: default;
2538
+ flex: 1 1 auto;
2539
+ background-color: transparent;
2540
+ border: 0 solid;
2541
+ box-sizing: border-box;
2542
+ font-size: 1em;
2543
+ height: 36px;
2544
+ padding: 0 12px;
2545
+ }
2546
+ .uniface-range-wrapper .uniface-range-editor input:focus {
2547
+ outline: none;
2548
+ }
2549
+ .uniface-range-wrapper .uniface-range-editor .action-icon {
2550
+ display: block;
2551
+ visibility: hidden;
2552
+ }
2553
+ .uniface-range-wrapper .uniface-range-editor .uniface-editor-clean-icon {
2554
+ display: block;
2555
+ visibility: hidden;
2556
+ }
2557
+ .uniface-range-wrapper .uniface-range-editor:hover .action-icon, .uniface-range-wrapper .uniface-range-editor:focus-within .action-icon {
2558
+ visibility: visible;
2559
+ }
2560
+ .uniface-range-wrapper .uniface-range-editor:hover .uniface-editor-clean-icon, .uniface-range-wrapper .uniface-range-editor:focus-within .uniface-editor-clean-icon {
2561
+ visibility: visible;
2562
+ }
2563
+ .uniface-range-wrapper .uniface-range-editor:hover .uniface-editor-clean-icon.hidden, .uniface-range-wrapper .uniface-range-editor:focus-within .uniface-editor-clean-icon.hidden {
2564
+ visibility: hidden;
2565
+ }
2566
+ .uniface-range-wrapper .uniface-range-editor:focus-within {
2567
+ outline: none;
2568
+ border-bottom-color: var(--uniface-editor-outlined-active-border-color, #298DFF);
2569
+ }
2570
+ .uniface-range-wrapper .uniface-range-editor.outlined {
2571
+ border: 1px solid var(--uniface-editor-border-color, #E2E8F0);
2572
+ border-radius: var(--uniface-field-round, 4px);
2573
+ }
2574
+ .uniface-range-wrapper .uniface-range-editor.outlined:focus-within {
2575
+ border-color: var(--uniface-editor-outlined-active-border-color, #298DFF);
2576
+ }
2577
+ .uniface-range-wrapper .uniface-range-editor.filled {
2578
+ border-top-right-radius: var(--uniface-field-round, 4px);
2579
+ border-top-left-radius: var(--uniface-field-round, 4px);
2580
+ background-color: var(--uniface-editor-filled-backgournd-color, #F8FAFC);
2581
+ border-bottom: 1px solid var(--uniface-editor-border-color, #E2E8F0);
2582
+ }
2583
+ .uniface-range-wrapper .uniface-range-editor.filled:focus-within {
2584
+ outline: none;
2585
+ border-bottom-color: var(--uniface-editor-outlined-active-border-color, #298DFF);
2586
+ }
2587
+ .uniface-range-wrapper.compact {
2588
+ height: 30px;
2589
+ }
2590
+ .uniface-range-wrapper.compact input {
2591
+ height: 28px;
2592
+ }
2593
+
2594
+ .uniface-listbox {
2595
+ position: relative;
2596
+ display: flex;
2597
+ flex-direction: column;
2598
+ overflow: hidden;
2599
+ box-sizing: border-box;
2600
+ user-select: none;
2601
+ }
2602
+ .uniface-listbox .listbox-header, .uniface-listbox .listbox-footer {
2603
+ width: 100%;
2604
+ flex: 0 0 auto;
2605
+ }
2606
+ .uniface-listbox .listbox-header {
2607
+ border-bottom: 1px solid var(--uniface-listbox-separator-color, #f0f0f0);
2608
+ }
2609
+ .uniface-listbox .listbox-footer {
2610
+ border-top: 1px solid var(--uniface-listbox-separator-color, #f0f0f0);
2611
+ }
2612
+ .uniface-listbox .listbox-content {
2613
+ width: 100%;
2614
+ box-sizing: border-box;
2615
+ overflow-y: auto;
2616
+ overflow-x: hidden;
2617
+ flex: 1 1 auto;
2618
+ }
2619
+ .uniface-listbox .listbox-content .listview-item {
2620
+ border-bottom: 1px solid var(--uniface-listbox-separator-color, #f0f0f0);
2621
+ }
2622
+ .uniface-listbox .listbox-content .listview-item.no-border {
2623
+ border-bottom: unset;
2624
+ }
2625
+ .uniface-listbox .listbox-content.selectable .listview-item {
2626
+ cursor: pointer;
2627
+ }
2628
+ .uniface-listbox .listbox-content.selectable .listview-item:hover {
2629
+ background-color: var(--uniface-list-box-hover-bg, #FFFFE1);
2630
+ }
2631
+ .uniface-listbox .listbox-content.selectable .listview-item.selected {
2632
+ background-color: var(--uniface-list-box-selected-bg, #b1c8f6);
2633
+ }
2634
+
2635
+ .container {
2636
+ height: 100%;
2637
+ width: 100%;
2638
+ display: flex;
2639
+ flex-direction: row;
2640
+ }
2641
+ .container .header-container {
2642
+ margin: 10px auto 10px 10px;
2643
+ }
2644
+ .container .list-container {
2645
+ height: 300px;
2646
+ width: 220px;
2647
+ overflow: auto;
2648
+ border: 1px solid #eadcdc;
2649
+ box-sizing: border-box;
2650
+ border-radius: 20px;
2651
+ }
2652
+ .container .icon-button-container {
2653
+ margin: auto 20px;
2654
+ }
2655
+
2656
+ .flex-row-form {
2657
+ width: 100%;
2658
+ height: 100%;
2659
+ overflow: auto;
2660
+ position: relative;
2661
+ box-sizing: border-box;
2662
+ }
2663
+ .flex-row-form > div {
2664
+ width: 100%;
2665
+ height: 100%;
2666
+ display: flex;
2667
+ flex-direction: column;
2668
+ position: relative;
2669
+ box-sizing: border-box;
2670
+ }
2671
+ .flex-row-form .form-row {
2672
+ width: 100%;
2673
+ display: flex;
2674
+ flex-direction: row;
2675
+ justify-items: flex-start;
2676
+ box-sizing: border-box;
2677
+ padding: 3px 0;
2678
+ }
2679
+ .flex-row-form .form-row .cell-field {
2680
+ box-sizing: border-box;
2681
+ padding: 0 4px;
2682
+ }
2683
+ .flex-row-form .form-row .form-cell {
2684
+ position: relative;
2685
+ box-sizing: border-box;
2686
+ padding: 0 4px;
2687
+ flex: 0 0 auto;
2688
+ }
2689
+
2690
+ .flex-form {
2691
+ position: relative;
2692
+ width: 100%;
2693
+ display: block;
2694
+ }
2695
+ .flex-form > div {
2696
+ position: relative;
2697
+ width: 100%;
2698
+ display: flex;
2699
+ flex-wrap: wrap;
2700
+ justify-items: start;
2701
+ box-sizing: border-box;
2702
+ }
2703
+ .flex-form .cell-field {
2704
+ box-sizing: border-box;
2705
+ padding: 4px;
2706
+ }
2707
+ .flex-form .row-break {
2708
+ width: 100%;
2709
+ height: 0;
2710
+ }
2711
+
2712
+ .grid-form {
2713
+ position: relative;
2714
+ width: 100%;
2715
+ display: block;
2716
+ }
2717
+ .grid-form > div {
2718
+ width: 100%;
2719
+ position: relative;
2720
+ display: grid;
2721
+ grid-template-columns: repeat(12, 1fr);
2722
+ justify-items: start;
2723
+ box-sizing: border-box;
2724
+ padding: 6px 8px;
2725
+ grid-row-gap: 3px;
2726
+ grid-column-gap: 4px;
2727
+ }
2728
+ .grid-form .cell-field {
2729
+ width: 100%;
2730
+ box-sizing: border-box;
2731
+ }
2732
+ .grid-form .uniface-form-field.vertical .form-content {
2733
+ height: 100%;
2734
+ display: flex;
2735
+ flex-direction: column;
2736
+ }
2737
+ .grid-form .uniface-form-field.vertical .form-content .field-label {
2738
+ flex: 0 0 auto;
2739
+ }
2740
+ .grid-form .uniface-form-field.vertical .form-content .field-hint {
2741
+ flex: 0 0 auto;
2742
+ }
2743
+ .grid-form .uniface-form-field.vertical .form-content .field {
2744
+ flex: 1 1 auto;
2745
+ }
2746
+
2747
+ .uniface-display-field.images-field > div {
2748
+ width: 100%;
2749
+ display: flex;
2750
+ flex-direction: row;
2751
+ align-items: center;
2752
+ box-sizing: border-box;
2753
+ margin: 4px 0;
2754
+ }
2755
+ .uniface-display-field.images-field > div img {
2756
+ flex: 0 0 auto;
2757
+ width: 40px;
2758
+ height: 40px;
2759
+ }
2760
+ .uniface-display-field.images-field > div .img-file-name {
2761
+ margin-left: 8px;
2762
+ flex: 1 1 auto;
2763
+ overflow: hidden;
2764
+ }
2765
+
2766
+ .uniface-images-field {
2767
+ display: inline-block;
2768
+ position: relative;
2769
+ width: 100%;
2770
+ }
2771
+ .uniface-images-field .uniface-common-editor {
2772
+ padding: 4px 8px;
2773
+ height: auto;
2774
+ }
2775
+ .uniface-images-field:focus {
2776
+ border-bottom-color: var(--uniface-active-border-color, #ff3e00);
2777
+ }
2778
+ .uniface-images-field .files-field {
2779
+ flex: 1 1 auto;
2780
+ height: 100%;
2781
+ overflow: hidden;
2782
+ text-overflow: ellipsis;
2783
+ display: flex;
2784
+ flex-direction: row;
2785
+ justify-items: flex-start;
2786
+ overflow-x: auto;
2787
+ min-height: 80px;
2788
+ }
2789
+ .uniface-images-field .files-field .file-icon {
2790
+ position: relative;
2791
+ }
2792
+ .uniface-images-field .files-field .file-icon img {
2793
+ width: 64px;
2794
+ height: 64px;
2795
+ border-radius: 8px;
2796
+ }
2797
+ .uniface-images-field .files-field .file-icon .img-overlay {
2798
+ position: absolute;
2799
+ display: none;
2800
+ border-radius: 8px;
2801
+ top: 0;
2802
+ left: 0;
2803
+ width: 100%;
2804
+ height: 100%;
2805
+ background: rgba(7, 18, 60, 0.5019607843);
2806
+ color: white;
2807
+ transition: opacity 0.3s ease;
2808
+ overflow: hidden;
2809
+ }
2810
+ .uniface-images-field .files-field .file-icon .img-overlay > div {
2811
+ text-align: center;
2812
+ }
2813
+ .uniface-images-field .files-field .file-icon:hover .img-overlay {
2814
+ display: block;
2815
+ }
2816
+ .uniface-images-field .files-field .file-icon .action-icon {
2817
+ position: absolute;
2818
+ display: none;
2819
+ left: 50%;
2820
+ transform: translateX(-50%);
2821
+ cursor: pointer;
2822
+ }
2823
+ .uniface-images-field .files-field .file-icon .action-icon i:active {
2824
+ position: relative;
2825
+ top: 1px;
2826
+ }
2827
+ .uniface-images-field .files-field .file-icon:hover .action-icon {
2828
+ display: inline-block;
2829
+ }
2830
+ .uniface-images-field .image-thumbnail {
2831
+ position: relative;
2832
+ object-fit: cover;
2833
+ border: 1px solid #f0f0f0;
2834
+ border-radius: 4px;
2835
+ width: 60px;
2836
+ height: 90px;
2837
+ margin-right: 6px;
2838
+ }
2839
+ .uniface-images-field .image-thumbnail .img-remover {
2840
+ position: absolute;
2841
+ width: 12px;
2842
+ height: 12px;
2843
+ top: 0;
2844
+ right: 0;
2845
+ border-radius: 50%;
2846
+ background-color: #e1e1e1;
2847
+ font-size: 12px;
2848
+ line-height: 12px;
2849
+ padding: 2px;
2850
+ }
2851
+ .uniface-images-field .image-thumbnail .img-remover:active {
2852
+ top: 1px;
2853
+ }
2854
+ .uniface-images-field .image-thumbnail img {
2855
+ width: 100%;
2856
+ height: 100%;
2857
+ cursor: pointer;
2858
+ }
2859
+ .uniface-images-field .image-thumbnail .image-mask {
2860
+ position: absolute;
2861
+ top: 0;
2862
+ left: 0;
2863
+ width: 100%;
2864
+ height: 100%;
2865
+ cursor: pointer;
2866
+ background-repeat: no-repeat;
2867
+ background-size: 32px 32px;
2868
+ background-position: center;
2869
+ }
2870
+ .uniface-images-field .image-thumbnail > i {
2871
+ cursor: pointer;
2872
+ }
2873
+ .uniface-images-field .image-thumbnail > i:active {
2874
+ position: relative;
2875
+ top: 1px;
2876
+ }
2877
+
2878
+ .uniface-image-preview-overlay {
2879
+ position: absolute;
2880
+ top: 0;
2881
+ left: 0;
2882
+ bottom: 0;
2883
+ right: 0;
2884
+ background: rgba(7, 18, 60, 0.5019607843);
2885
+ z-index: 1000;
2886
+ }
2887
+ .uniface-image-preview-overlay > div {
2888
+ width: 100%;
2889
+ height: 100%;
2890
+ display: block;
2891
+ position: relative;
2892
+ overflow: hidden;
2893
+ }
2894
+ .uniface-image-preview-overlay .toolbar {
2895
+ position: absolute;
2896
+ top: 10px;
2897
+ left: 50%;
2898
+ transform: translateX(-50%);
2899
+ background-color: rgba(7, 18, 60, 0.5019607843);
2900
+ gap: 10px;
2901
+ padding: 8px 12px;
2902
+ border-radius: 8px;
2903
+ display: none;
2904
+ }
2905
+ .uniface-image-preview-overlay .image-container {
2906
+ margin: 0 auto;
2907
+ position: relative;
2908
+ text-align: center;
2909
+ }
2910
+ .uniface-image-preview-overlay .image-container img {
2911
+ transition: transform 0.3s ease;
2912
+ }
2913
+ .uniface-image-preview-overlay:hover .toolbar {
2914
+ display: flex;
2915
+ }
2916
+
2917
+ .uniface-option-select {
2918
+ display: inline-block;
2919
+ height: 38px;
2920
+ position: relative;
2921
+ width: 100%;
2922
+ }
2923
+ .uniface-option-select > div {
2924
+ display: flex;
2925
+ flex-direction: row;
2926
+ justify-items: center;
2927
+ }
2928
+ .uniface-option-select input {
2929
+ cursor: default;
2930
+ }
2931
+ .uniface-option-select .option-field {
2932
+ flex: 1 1 auto;
2933
+ overflow: hidden;
2934
+ text-overflow: ellipsis;
2935
+ }
2936
+ .uniface-option-select .option-action {
2937
+ display: none;
2938
+ box-sizing: border-box;
2939
+ font-size: 16px;
2940
+ line-height: 22px;
2941
+ color: #9d9d9d;
2942
+ align-self: center;
2943
+ }
2944
+ .uniface-option-select:hover .option-action {
2945
+ display: block;
2946
+ }
2947
+ .uniface-option-select .option-dropdown {
2948
+ box-sizing: border-box;
2949
+ font-size: 22px;
2950
+ line-height: 22px;
2951
+ color: var(--uniface-dropdown-color, #e1e1e1);
2952
+ align-self: center;
2953
+ cursor: pointer;
2954
+ }
2955
+ .uniface-option-select .filled .option-dropdown {
2956
+ color: var(--uniface-secondary-dropdown-color, #b9b9b9);
2957
+ }
2958
+ .uniface-option-select.compact {
2959
+ height: 28px;
2960
+ }
2961
+ .uniface-option-select.compact .option-field input {
2962
+ height: 28px;
2963
+ }
2964
+ .uniface-option-select.compact .uniface-common-editor {
2965
+ height: 30px;
2966
+ }
2967
+ .uniface-option-select.compact .option-dropdown {
2968
+ padding: 0;
2969
+ font-size: 20px;
2970
+ height: 20px;
2971
+ width: 20px;
2972
+ }
2973
+
2974
+ .cascade-options-popover {
2975
+ user-select: none;
2976
+ max-height: 30vh;
2977
+ }
2978
+ .cascade-options-popover .cascade-column {
2979
+ height: 100%;
2980
+ overflow-x: hidden;
2981
+ overflow-y: auto;
2982
+ box-sizing: border-box;
2983
+ flex: 0 0 auto;
2984
+ border-right: 1px solid var(--uniface-border-color, #f0f0f0);
2985
+ }
2986
+ .cascade-options-popover .option-item {
2987
+ width: 100%;
2988
+ box-sizing: border-box;
2989
+ padding: 4px 6px;
2990
+ cursor: pointer;
2991
+ font-size: 1.1em;
2992
+ line-height: 1.5em;
2993
+ }
2994
+ .cascade-options-popover .option-item:hover {
2995
+ background-color: var(--uniface-hover-item-background, #f7f7f7);
2996
+ color: var(--uniface-hover-item-color, #42A5F5);
2997
+ }
2998
+ .cascade-options-popover .option-item.disabled {
2999
+ color: var(--uniface-disabled-color, #7f7f7f);
3000
+ cursor: default;
3001
+ }
3002
+ .cascade-options-popover .option-item.disabled:hover {
3003
+ background-color: unset;
3004
+ }
3005
+
3006
+ .uniface-box {
3007
+ display: flex;
3008
+ position: relative;
3009
+ box-sizing: border-box;
3010
+ overflow: hidden;
3011
+ flex-direction: column;
3012
+ border: 1px solid var(--uniface-plain-border-color, #f0f0f0);
3013
+ }
3014
+ .uniface-box .box-title {
3015
+ width: 100%;
3016
+ background-color: var(--uniface-box-header-bg, #F8FAFC);
3017
+ flex: 0 0 auto;
3018
+ min-height: 24px;
3019
+ position: relative;
3020
+ display: flex;
3021
+ flex-direction: row;
3022
+ align-items: center;
3023
+ }
3024
+ .uniface-box .box-content {
3025
+ flex: 1 1 auto;
3026
+ position: relative;
3027
+ overflow: hidden;
3028
+ }
3029
+ .uniface-box.round {
3030
+ border-radius: var(--uniface-box-border-radius, 8px);
3031
+ }
3032
+
3033
+ .uniface-navigator-panel {
3034
+ position: relative;
3035
+ width: 100%;
3036
+ height: 100%;
3037
+ box-sizing: border-box;
3038
+ overflow: hidden;
3039
+ background-color: var(--uniface-navigator-background-color, #FFFFFF);
3040
+ }
3041
+ .uniface-navigator-panel .navigator-content {
3042
+ width: 100%;
3043
+ height: 100%;
3044
+ box-sizing: border-box;
3045
+ overflow-y: auto;
3046
+ overflow-x: hidden;
3047
+ padding: var(--uniface-navigator-vertical-padding, 16px) 0;
3048
+ position: relative;
3049
+ user-select: none;
3050
+ }
3051
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item {
3052
+ font-size: 12px;
3053
+ padding: 4px 8px 4px 24px;
3054
+ position: relative;
3055
+ background: linear-gradient(to right, transparent 12px, lightgray 12px, lightgray 13px, transparent 13px);
3056
+ }
3057
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item.nav-completed {
3058
+ color: var(--uniface-navigator-completed-text-color, #374151);
3059
+ }
3060
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item.nav-warning {
3061
+ color: var(--uniface-navigator-completed-text-color, #374151);
3062
+ position: relative;
3063
+ }
3064
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item.nav-warning::after {
3065
+ content: "";
3066
+ position: absolute;
3067
+ right: 8px; /* 距离右边10px */
3068
+ top: 30%;
3069
+ transform: translateY(-50%);
3070
+ width: 6px;
3071
+ height: 6px;
3072
+ border-radius: 50%; /* 圆形 */
3073
+ background-color: var(--uniface-navigator-warning-dot-color, #C62828);
3074
+ }
3075
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item.nav-not-start {
3076
+ color: var(--uniface-navigator-not-start-text-color, #6B7280);
3077
+ font-style: italic;
3078
+ }
3079
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item:hover {
3080
+ color: var(--uniface-primary-hover-text-color, #298DFF);
3081
+ cursor: pointer;
3082
+ }
3083
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item.active {
3084
+ color: var(--uniface-active-label-text-color, #0061FF);
3085
+ font-weight: var(--uniface-primary-active-text-weight, 600);
3086
+ }
3087
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item.active::before {
3088
+ content: "";
3089
+ position: absolute;
3090
+ left: 6px;
3091
+ top: 50%;
3092
+ transform: translateY(-50%);
3093
+ width: 5px;
3094
+ height: 5px;
3095
+ border: 4px solid var(--uniface-active-label-text-color, #0061FF);
3096
+ border-radius: 50%; /* 圆形 */
3097
+ background-color: white;
3098
+ }
3099
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item.active:hover {
3100
+ color: var(--uniface-active-label-text-color, #0061FF);
3101
+ cursor: default;
3102
+ }
3103
+ .uniface-navigator-panel .navigator-content .uniface-navigator-item.active.nav-not-start {
3104
+ font-style: normal;
3105
+ }
3106
+
3107
+ .uniface-progress-container {
3108
+ display: flex;
3109
+ align-items: center;
3110
+ gap: 8px;
3111
+ }
3112
+ .uniface-progress-container .progress-bar {
3113
+ background: var(--uniface-progress-bar-bg, #E2E8F0);
3114
+ border-radius: 10px;
3115
+ overflow: hidden;
3116
+ transition: width 0.5s ease;
3117
+ }
3118
+ .uniface-progress-container .progress-fill {
3119
+ background: var(--uniface-progress-bar-color, #22BDFF);
3120
+ height: 100%;
3121
+ transition: width 0.5s ease;
3122
+ }
3123
+ .uniface-progress-container .progress-text {
3124
+ font-size: 1em;
3125
+ color: var(--uniface-progress-bar-text-color, #374151);
3126
+ }
3127
+ .uniface-progress-container.successful .progress-fill {
3128
+ background-color: var(--uniface-progress-bar-success-color, #2DC071);
3129
+ }
3130
+ .uniface-progress-container.successful .progress-text {
3131
+ color: var(--uniface-progress-bar-success-color, #2DC071);
3132
+ }
3133
+ .uniface-progress-container.failure .progress-fill {
3134
+ background-color: var(--uniface-progress-bar-failure-color, #FF685B);
3135
+ }
3136
+ .uniface-progress-container.failure .progress-text {
3137
+ color: var(--uniface-progress-bar-failure-color, #FF685B);
3138
+ }
3139
+ .uniface-progress-container.canceled .progress-fill {
3140
+ background-color: var(--uniface-progress-bar-canceled-color, #FFC53D);
3141
+ }
3142
+ .uniface-progress-container.canceled .progress-text {
3143
+ color: var(--uniface-progress-bar-canceled-color, #FFC53D);
3144
+ }
3145
+
3146
+ .uniface-progress-step-container {
3147
+ position: relative;
3148
+ width: 100%;
3149
+ padding: 12px 8px;
3150
+ box-sizing: border-box;
3151
+ background-color: var(--uniface-progress-step-bar-bg, #ffffff);
3152
+ }
3153
+ .uniface-progress-step-container .container-panel {
3154
+ width: 100%;
3155
+ display: flex;
3156
+ flex-direction: row;
3157
+ justify-items: flex-start;
3158
+ background-color: inherit;
3159
+ z-index: 2;
3160
+ }
3161
+ .uniface-progress-step-container .progress-step-block {
3162
+ flex: 1 1;
3163
+ min-width: 100px;
3164
+ display: flex;
3165
+ flex-direction: row;
3166
+ justify-items: flex-start;
3167
+ color: var(--uniface-progress-step-pending-color, #B3BCCA);
3168
+ margin-left: 8px;
3169
+ background-color: inherit;
3170
+ background: linear-gradient(to bottom, transparent 12px, var(--uniface-progress-step-pending-color, #B3BCCA) 12px, var(--uniface-progress-step-pending-color, #B3BCCA) 14px, transparent 14px);
3171
+ }
3172
+ .uniface-progress-step-container .progress-step-block:first-child {
3173
+ margin-left: 0;
3174
+ }
3175
+ .uniface-progress-step-container .progress-step-block .step-indicator {
3176
+ flex: 0 0 auto;
3177
+ padding-right: 12px;
3178
+ margin-left: 12px;
3179
+ background-color: var(--uniface-progress-step-bar-bg, #ffffff);
3180
+ }
3181
+ .uniface-progress-step-container .progress-step-block .step-indicator span {
3182
+ display: inline-block;
3183
+ text-align: center;
3184
+ width: 24px;
3185
+ height: 24px;
3186
+ line-height: 24px;
3187
+ border-radius: 50%;
3188
+ border: 1px solid var(--uniface-progress-step-pending-color, #B3BCCA);
3189
+ font-size: 1.1em;
3190
+ }
3191
+ .uniface-progress-step-container .progress-step-block.completed {
3192
+ background: linear-gradient(to bottom, transparent 12px, var(--uniface-progress-step-completed-icon-color, #0061FF) 12px, var(--uniface-progress-step-completed-icon-color, #0061FF) 14px, transparent 14px);
3193
+ }
3194
+ .uniface-progress-step-container .progress-step-block.completed .step-indicator span {
3195
+ border: 1px solid var(--uniface-progress-step-completed-icon-color, #0061FF);
3196
+ }
3197
+ .uniface-progress-step-container .progress-step-block .step-text {
3198
+ width: 100%;
3199
+ overflow: hidden;
3200
+ }
3201
+ .uniface-progress-step-container .progress-step-block .step-topic {
3202
+ width: 100%;
3203
+ display: inline-block;
3204
+ background-color: transparent;
3205
+ line-height: 24px;
3206
+ overflow: hidden;
3207
+ white-space: nowrap;
3208
+ text-overflow: ellipsis;
3209
+ }
3210
+ .uniface-progress-step-container .progress-step-block .step-topic span {
3211
+ background-color: var(--uniface-progress-step-bar-bg, #ffffff);
3212
+ padding-right: 6px;
3213
+ }
3214
+ .uniface-progress-step-container .progress-step-block.processing .step-topic {
3215
+ color: var(--uniface-progress-step-processing-color, #0061FF);
3216
+ }
3217
+ .uniface-progress-step-container .progress-step-block.processing .step-indicator span {
3218
+ background-color: var(--uniface-progress-step-processing-color, #0061FF);
3219
+ color: var(--uniface-progress-step-bar-bg, #ffffff);
3220
+ }
3221
+ .uniface-progress-step-container .progress-step-block.completed .step-topic {
3222
+ color: var(--uniface-progress-step-completed-color, #374151);
3223
+ }
3224
+ .uniface-progress-step-container .progress-step-block.completed .step-indicator span {
3225
+ background-color: var(--uniface-progress-step-completed-icon-bg, rgba(0, 97, 255, 0.1019607843));
3226
+ color: var(--uniface-progress-step-completed-icon-color, #0061FF);
3227
+ }
3228
+ .uniface-progress-step-container .progress-step-block:last-child {
3229
+ background: unset;
3230
+ }
3231
+ .uniface-progress-step-container:first-child .progress-step-block .step-indicator {
3232
+ margin-left: 0;
3233
+ }
3234
+ .uniface-progress-step-container.vertical {
3235
+ height: 100%;
3236
+ }
3237
+ .uniface-progress-step-container.vertical .container-panel {
3238
+ flex-direction: column;
3239
+ height: 100%;
3240
+ }
3241
+ .uniface-progress-step-container.vertical .progress-step-block {
3242
+ margin-left: 0;
3243
+ background: linear-gradient(to right, transparent 12px, var(--uniface-progress-step-pending-color, #B3BCCA) 14px, var(--uniface-progress-step-pending-color, #B3BCCA) 14px, transparent 13px);
3244
+ }
3245
+ .uniface-progress-step-container.vertical .progress-step-block.completed {
3246
+ background: linear-gradient(to right, transparent 12px, var(--uniface-progress-step-completed-icon-color, #0061FF) 14px, var(--uniface-progress-step-completed-icon-color, #0061FF) 14px, transparent 13px);
3247
+ }
3248
+ .uniface-progress-step-container.vertical .progress-step-block .step-indicator {
3249
+ background-color: transparent;
3250
+ }
3251
+ .uniface-progress-step-container.vertical .progress-step-block .step-indicator > div {
3252
+ background: var(--uniface-progress-step-bar-bg, #ffffff);
3253
+ padding: 4px 0;
3254
+ }
3255
+ .uniface-progress-step-container.vertical .progress-step-block:last-child {
3256
+ background: unset;
3257
+ }
3258
+ .uniface-progress-step-container.vertical .progress-step-block:last-child .step-indicator {
3259
+ background: unset;
3260
+ }
3261
+
3262
+ .uniface-file-upload-panel {
3263
+ width: 820px;
3264
+ padding: 24px 0;
3265
+ background-color: #F8FAFC;
3266
+ border: 1px solid #E2E8F0;
3267
+ border-radius: 8px;
3268
+ min-height: 144px;
3269
+ }
3270
+ .uniface-file-upload-panel .file-upload-contents {
3271
+ width: 100%;
3272
+ height: 100%;
3273
+ border: 1px dotted transparent;
3274
+ text-align: center;
3275
+ display: flex;
3276
+ flex-direction: column;
3277
+ }
3278
+ .uniface-file-upload-panel.highlight {
3279
+ background-color: #b3d8ff;
3280
+ }
3281
+
3282
+ .uniface-attachment-display > div {
3283
+ width: 100%;
3284
+ box-sizing: border-box;
3285
+ line-height: 1.1em;
3286
+ overflow: hidden;
3287
+ text-overflow: ellipsis;
3288
+ }
3289
+
3290
+ .uniface-attachment-field {
3291
+ display: inline-block;
3292
+ position: relative;
3293
+ width: 100%;
3294
+ }
3295
+ .uniface-attachment-field .uniface-common-editor {
3296
+ height: 120px;
3297
+ }
3298
+ .uniface-attachment-field > div {
3299
+ display: flex;
3300
+ flex-direction: row;
3301
+ justify-items: center;
3302
+ }
3303
+ .uniface-attachment-field .files-field {
3304
+ flex: 1 1 auto;
3305
+ height: 100%;
3306
+ overflow: hidden;
3307
+ text-overflow: ellipsis;
3308
+ display: flex;
3309
+ flex-direction: row;
3310
+ justify-items: flex-start;
3311
+ overflow-x: auto;
3312
+ }
3313
+ .uniface-attachment-field .files-field .file-icon {
3314
+ position: relative;
3315
+ }
3316
+ .uniface-attachment-field .files-field .file-icon img {
3317
+ width: 64px;
3318
+ height: 64px;
3319
+ }
3320
+ .uniface-attachment-field .files-field .file-icon .action-icon {
3321
+ position: absolute;
3322
+ display: none;
3323
+ left: 50%;
3324
+ transform: translateX(-50%);
3325
+ cursor: pointer;
3326
+ }
3327
+ .uniface-attachment-field .files-field .file-icon .action-icon i:active {
3328
+ position: relative;
3329
+ top: 1px;
3330
+ }
3331
+ .uniface-attachment-field .files-field .file-icon:hover .action-icon {
3332
+ display: inline-block;
3333
+ }
3334
+ .uniface-attachment-field .action-dropdown {
3335
+ box-sizing: border-box;
3336
+ margin-top: 4px;
3337
+ margin-right: 4px;
3338
+ line-height: 22px;
3339
+ margin-left: 8px;
3340
+ color: var(--uniface-dropdown-color, #e1e1e1);
3341
+ align-self: flex-start;
3342
+ cursor: pointer;
3343
+ }
3344
+ .uniface-attachment-field .filled .action-dropdown {
3345
+ color: var(--uniface-secondary-dropdown-color, #b9b9b9);
3346
+ }
3347
+
3348
+ .uniface-divider {
3349
+ background-color: var(--uniface-dividing-line-bg, #B3BCCA);
3350
+ flex: 0 0 auto;
3351
+ transition: all 0.3s ease-in-out;
3352
+ }
3353
+ .uniface-divider.horizontal {
3354
+ width: 100%;
3355
+ cursor: row-resize;
3356
+ }
3357
+ .uniface-divider.vertical {
3358
+ height: 100%;
3359
+ cursor: col-resize;
3360
+ }
3361
+ .uniface-divider.fixed {
3362
+ cursor: default;
3363
+ }
3364
+
3365
+ .uniface-icon {
3366
+ display: block;
3367
+ cursor: default;
3368
+ box-sizing: border-box;
3369
+ text-align: center;
3370
+ }
3371
+ .uniface-icon.clickable {
3372
+ cursor: pointer;
3373
+ }
3374
+ .uniface-icon.clickable:hover {
3375
+ color: var(--uniface-plain-hover-color, #42A5F5);
3376
+ }
3377
+ .uniface-icon.clickable:active {
3378
+ position: relative;
3379
+ top: 1px;
3380
+ }
3381
+
3382
+ .uniface-tag {
3383
+ display: inline-block;
3384
+ }
3385
+ .uniface-tag > div {
3386
+ display: block;
3387
+ position: relative;
3388
+ padding: 0 12px;
3389
+ line-height: 28px;
3390
+ color: var(--uniface-default-text-color, #374151);
3391
+ }
3392
+ .uniface-tag > div.big {
3393
+ line-height: 30px;
3394
+ }
3395
+ .uniface-tag > div.small {
3396
+ line-height: 20px;
3397
+ }
3398
+ .uniface-tag > div.border {
3399
+ border-radius: 4px;
3400
+ border: 1px solid var(--uniface-primary-border-color, #E2E8F0);
3401
+ }
3402
+ .uniface-tag > div.round {
3403
+ border-radius: 14px;
3404
+ border: 1px solid var(--uniface-primary-border-color, #E2E8F0);
3405
+ }
3406
+ .uniface-tag > div .uniface-remove-icon {
3407
+ position: absolute;
3408
+ display: none;
3409
+ background-color: rgba(129, 212, 250, 0.6901960784);
3410
+ opacity: 0.6;
3411
+ height: 14px;
3412
+ width: 14px;
3413
+ border-radius: 50%;
3414
+ top: 2px;
3415
+ right: 1px;
3416
+ line-height: 12px;
3417
+ }
3418
+ .uniface-tag > div .uniface-icon:active {
3419
+ position: absolute;
3420
+ top: 3px;
3421
+ }
3422
+ .uniface-tag > div:hover .uniface-remove-icon {
3423
+ display: block;
3424
+ }
3425
+ .uniface-tag > div.color .uniface-remove-icon {
3426
+ background-color: transparent;
3427
+ }
3428
+ .uniface-tag > div.color .uniface-remove-icon i {
3429
+ color: var(--uniface-default-text-color, #374151);
3430
+ }
3431
+ .uniface-tag > div.color-g1 {
3432
+ color: #0061FF;
3433
+ background-color: rgba(0, 97, 255, 0.1019607843);
3434
+ border-color: rgba(0, 97, 255, 0.5019607843);
3435
+ }
3436
+ .uniface-tag > div.color-g2 {
3437
+ color: #2DC071;
3438
+ background-color: rgba(45, 192, 113, 0.1019607843);
3439
+ border-color: rgba(45, 192, 113, 0.5019607843);
3440
+ }
3441
+ .uniface-tag > div.color-g3 {
3442
+ color: #FF4D4F;
3443
+ background-color: rgba(255, 77, 79, 0.1019607843);
3444
+ border-color: rgba(255, 77, 79, 0.5019607843);
3445
+ }
3446
+ .uniface-tag > div.color-g4 {
3447
+ color: #FFBF00;
3448
+ background-color: rgba(255, 191, 0, 0.1019607843);
3449
+ border-color: rgba(255, 191, 0, 0.5019607843);
3450
+ }
3451
+ .uniface-tag > div.color-g5 {
3452
+ color: #EB2F96;
3453
+ background-color: rgba(235, 47, 150, 0.1019607843);
3454
+ border-color: rgba(235, 47, 150, 0.5019607843);
3455
+ }
3456
+ .uniface-tag > div.color-g6 {
3457
+ color: #13C2C2;
3458
+ background-color: rgba(19, 194, 194, 0.1019607843);
3459
+ border-color: rgba(19, 194, 194, 0.5019607843);
3460
+ }
3461
+ .uniface-tag > div.color-g7 {
3462
+ color: #FA541C;
3463
+ background-color: rgba(250, 84, 28, 0.1019607843);
3464
+ border-color: rgba(250, 84, 28, 0.5019607843);
3465
+ }
3466
+ .uniface-tag > div.color-g8 {
3467
+ color: #FA8C16;
3468
+ background-color: rgba(250, 140, 22, 0.1019607843);
3469
+ border-color: rgba(250, 140, 22, 0.5019607843);
3470
+ }
3471
+ .uniface-tag > div.color-g9 {
3472
+ color: #2F54EB;
3473
+ background-color: rgba(47, 84, 235, 0.1019607843);
3474
+ border-color: rgba(47, 84, 235, 0.5019607843);
3475
+ }
3476
+ .uniface-tag > div.color-g10 {
3477
+ color: #722ED1;
3478
+ background-color: rgba(114, 46, 209, 0.1019607843);
3479
+ border-color: rgba(114, 46, 209, 0.5019607843);
3480
+ }
3481
+ .uniface-tag > div.color-g11 {
3482
+ color: #A0D911;
3483
+ background-color: rgba(160, 217, 17, 0.1019607843);
3484
+ border-color: rgba(160, 217, 17, 0.5019607843);
3485
+ }
3486
+ .uniface-tag > div.color-g12 {
3487
+ color: #374151;
3488
+ background-color: #F8FAFC;
3489
+ border-color: #E2E8F0;
3490
+ }
3491
+
3492
+ .uniface-accordion-panel {
3493
+ position: relative;
3494
+ width: 100%;
3495
+ height: 100%;
3496
+ display: flex;
3497
+ flex-direction: column;
3498
+ background-color: var(--uniface-app-background-color, #ffffff);
3499
+ color: var(--uniface-default-text-color, #374151);
3500
+ overflow-x: hidden;
3501
+ overflow-y: auto;
3502
+ }
3503
+ .uniface-accordion-panel .accordion {
3504
+ border-bottom: 1px solid var(--uniface-accordion-header-border-color, #CBD5E1);
3505
+ box-sizing: border-box;
3506
+ }
3507
+ .uniface-accordion-panel .accordion .header {
3508
+ background-color: var(--uniface-accordion-title-bg, #F8FAFC);
3509
+ padding: 12px 16px;
3510
+ width: 100%;
3511
+ box-sizing: border-box;
3512
+ cursor: pointer;
3513
+ display: flex;
3514
+ align-items: center;
3515
+ }
3516
+ .uniface-accordion-panel .accordion .header:hover {
3517
+ background-color: var(--uniface-accordion-title-hober-bg, rgba(248, 250, 252, 0.6901960784));
3518
+ }
3519
+ .uniface-accordion-panel .accordion .content {
3520
+ overflow: hidden;
3521
+ width: 100%;
3522
+ padding: 16px;
3523
+ box-sizing: border-box;
3524
+ transition: height 0.3s ease-out;
3525
+ }
3526
+ .uniface-accordion-panel.compact .accordion .header {
3527
+ padding: 6px 8px;
3528
+ }
3529
+ .uniface-accordion-panel.compact .accordion .content {
3530
+ padding: 8px;
3531
+ }
3532
+
3533
+ .uniface-separator {
3534
+ position: relative;
3535
+ box-sizing: border-box;
3536
+ width: 1px;
3537
+ background-color: var(--uniface-separator-color, #E2E8F0);
3538
+ }
3539
+
3540
+ .uniface-page-wrapper {
3541
+ width: 100%;
3542
+ height: 100%;
3543
+ box-sizing: border-box;
3544
+ padding: var(--uniface-page-margin-size, 12px);
3545
+ background-color: var(--uniface-page-margin-color, #F8FAFD);
3546
+ }
3547
+ .uniface-page-wrapper .uniface-page {
3548
+ width: 100%;
3549
+ height: 100%;
3550
+ display: flex;
3551
+ flex-direction: column;
3552
+ overflow: hidden;
3553
+ background-color: var(--uniface-default-page-content-bg, #ffffff);
3554
+ color: var(--uniface-default-text-color, #374151);
3555
+ }
3556
+ .uniface-page-wrapper .uniface-page.round {
3557
+ border-radius: var(--uniface-page-border-radius, 12px);
3558
+ }
3559
+ .uniface-page-wrapper .uniface-page.shadow {
3560
+ box-shadow: var(--uniface-page-box-shadow, rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px);
3561
+ }
3562
+ .uniface-page-wrapper .uniface-page .uniface-page-header {
3563
+ position: relative;
3564
+ width: 100%;
3565
+ display: flex;
3566
+ flex: 0 0 auto;
3567
+ flex-direction: row;
3568
+ flex-wrap: nowrap;
3569
+ align-items: center;
3570
+ height: 48px;
3571
+ padding: 0 12px;
3572
+ box-sizing: border-box;
3573
+ border-bottom: 1px solid var(--uniface-page-divid-color, #F0F0F0);
3574
+ line-height: 1.25em;
3575
+ }
3576
+ .uniface-page-wrapper .uniface-page .uniface-page-header .page-topic {
3577
+ font-size: 1.1em;
3578
+ font-weight: 600;
3579
+ }
3580
+ .uniface-page-wrapper .uniface-page .uniface-page-header .page-comment {
3581
+ flex: 1 1 auto;
3582
+ overflow: hidden;
3583
+ color: var(--uniface-page-header-comment-color, --uniface-h3-text-color, #6B7280);
3584
+ margin-left: 8px;
3585
+ text-overflow: ellipsis;
3586
+ white-space: nowrap;
3587
+ padding: 0 8px;
3588
+ }
3589
+ .uniface-page-wrapper .uniface-page .page-container {
3590
+ flex: 1 1 auto;
3591
+ overflow: hidden;
3592
+ }
3593
+
3594
+ .uniface-data-table {
3595
+ width: 100%;
3596
+ height: 100%;
3597
+ position: relative;
3598
+ box-sizing: border-box;
3599
+ background: transparent;
3600
+ overflow: hidden;
3601
+ color: var(--uniface-default-text-color, #374151);
3602
+ }
3603
+ .uniface-data-table ::-webkit-scrollbar {
3604
+ -webkit-appearance: none;
3605
+ box-sizing: border-box;
3606
+ width: 8px;
3607
+ height: 8px;
3608
+ }
3609
+ .uniface-data-table ::-webkit-scrollbar:vertical {
3610
+ border-left: 1px solid var(--uniface-data-table-inline-border-color, rgba(225, 225, 225, 0.5019607843));
3611
+ }
3612
+ .uniface-data-table ::-webkit-scrollbar:horizontal {
3613
+ border-top: 1px solid var(--uniface-data-table-inline-border-color, rgba(225, 225, 225, 0.5019607843));
3614
+ }
3615
+ .uniface-data-table ::-webkit-scrollbar-thumb {
3616
+ border-radius: 4px;
3617
+ background-color: var(--uniface-scroll-color, rgba(225, 225, 225, 0.5019607843));
3618
+ -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
3619
+ }
3620
+ .uniface-data-table > div {
3621
+ width: 100%;
3622
+ height: 100%;
3623
+ position: relative;
3624
+ display: flex;
3625
+ flex-direction: column;
3626
+ }
3627
+ .uniface-data-table .table-row {
3628
+ position: relative;
3629
+ display: flex;
3630
+ width: 100%;
3631
+ flex-wrap: nowrap;
3632
+ flex-direction: row;
3633
+ align-items: center;
3634
+ }
3635
+ .uniface-data-table.row-border .table-row {
3636
+ border-bottom: 1px solid var(--uniface-data-table-row-border-color, #f0f0f0);
3637
+ }
3638
+ .uniface-data-table .table-header-panel {
3639
+ position: relative;
3640
+ width: 100%;
3641
+ background-color: var(--uniface-data-table-header-bg, #F8FAFC);
3642
+ flex: 0 0 auto;
3643
+ overflow: hidden;
3644
+ font-weight: 600;
3645
+ user-select: none;
3646
+ display: flex;
3647
+ flex-direction: row;
3648
+ height: 48px;
3649
+ align-items: center;
3650
+ text-align: center;
3651
+ }
3652
+ .uniface-data-table .table-header-panel .header-indicator {
3653
+ flex: 0 0 auto;
3654
+ width: 50px;
3655
+ height: 100%;
3656
+ border-right: 1px solid var(--uniface-data-table-header-separator-color, #6B7280);
3657
+ box-sizing: border-box;
3658
+ z-index: 1;
3659
+ box-shadow: var(--uniface-data-table-separator-shadow, rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px);
3660
+ }
3661
+ .uniface-data-table .table-header-panel .header-indicator > div {
3662
+ padding: 4px;
3663
+ height: 100%;
3664
+ display: flex;
3665
+ flex-direction: row;
3666
+ justify-content: center;
3667
+ align-items: center;
3668
+ }
3669
+ .uniface-data-table .table-header-panel .header-actions {
3670
+ flex: 0 0 auto;
3671
+ border-left: 1px solid var(--uniface-data-table-header-separator-color, #6B7280);
3672
+ box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
3673
+ display: block;
3674
+ width: 100%;
3675
+ font-weight: 600;
3676
+ height: 100%;
3677
+ position: relative;
3678
+ box-sizing: border-box;
3679
+ }
3680
+ .uniface-data-table .table-header-panel .header-actions > div {
3681
+ top: 50%;
3682
+ position: relative;
3683
+ transform: translateY(-50%);
3684
+ }
3685
+ .uniface-data-table .table-header-panel .header-row-panel {
3686
+ display: flex;
3687
+ flex-direction: row;
3688
+ position: relative;
3689
+ box-sizing: border-box;
3690
+ }
3691
+ .uniface-data-table .table-header-panel .table-cell {
3692
+ text-align: center;
3693
+ color: var(--uniface-data-table-header-color, #374151);
3694
+ overflow: hidden;
3695
+ position: relative;
3696
+ flex: 0 0 auto;
3697
+ line-height: 28px;
3698
+ }
3699
+ .uniface-data-table .table-header-panel .table-cell > div {
3700
+ text-align: center;
3701
+ }
3702
+ .uniface-data-table .table-header-panel .table-cell .sortable {
3703
+ cursor: pointer;
3704
+ }
3705
+ .uniface-data-table .table-header-panel .table-cell .header-cell-divider {
3706
+ position: absolute;
3707
+ top: 0;
3708
+ right: 0;
3709
+ bottom: 0;
3710
+ width: 3px;
3711
+ z-index: 2;
3712
+ }
3713
+ .uniface-data-table .table-header-panel .table-cell .header-cell-divider::before {
3714
+ content: ""; /* 必须指定伪元素的内容 */
3715
+ position: absolute;
3716
+ left: 50%; /* 将伪元素水平居中 */
3717
+ top: 0;
3718
+ bottom: 0;
3719
+ width: 1px; /* 竖线宽度 */
3720
+ background-color: var(--uniface-data-table-header-separator-color, #6B7280); /* 竖线颜色 */
3721
+ transform: translateX(-50%); /* 精确居中 */
3722
+ }
3723
+ .uniface-data-table .table-header-panel .table-cell .header-cell-divider.resizer {
3724
+ cursor: ew-resize;
3725
+ }
3726
+ .uniface-data-table .table-header-panel .table-cell span {
3727
+ display: inline-block;
3728
+ vertical-align: center;
3729
+ align-self: center;
3730
+ }
3731
+ .uniface-data-table .data-content-panel {
3732
+ position: relative;
3733
+ width: 100%;
3734
+ flex: 1 1 auto;
3735
+ overflow: hidden;
3736
+ display: flex;
3737
+ flex-direction: row;
3738
+ }
3739
+ .uniface-data-table .data-content-panel .table-row {
3740
+ background-color: var(--uniface-data-table-background-color, #ffffff);
3741
+ height: 36px;
3742
+ }
3743
+ .uniface-data-table .data-content-panel .table-row.alternative {
3744
+ background-color: var(--uniface-data-table-background-color, #f7f7f7);
3745
+ }
3746
+ .uniface-data-table .data-content-panel .table-row .table-data-cell {
3747
+ flex: 0 0 auto;
3748
+ height: 100%;
3749
+ position: relative;
3750
+ box-sizing: border-box;
3751
+ padding: 0 4px;
3752
+ }
3753
+ .uniface-data-table .data-content-panel .table-row .table-data-cell > div {
3754
+ position: relative;
3755
+ top: 50%;
3756
+ transform: translateY(-50%);
3757
+ }
3758
+ .uniface-data-table .data-content-panel .table-row .table-data-cell:last-child {
3759
+ padding: 0;
3760
+ }
3761
+ .uniface-data-table .data-content-panel .expand-data-row {
3762
+ background-color: var(--uniface-data-table-expand-row-bg, #f7f7f7);
3763
+ min-height: 32px;
3764
+ box-sizing: border-box;
3765
+ }
3766
+ .uniface-data-table .data-content-panel .fixed-panel, .uniface-data-table .data-content-panel .action-panel {
3767
+ flex: 0 0 auto;
3768
+ height: 100%;
3769
+ position: relative;
3770
+ box-sizing: border-box;
3771
+ overflow: hidden;
3772
+ display: flex;
3773
+ flex-direction: column;
3774
+ }
3775
+ .uniface-data-table .data-content-panel .fixed-panel .scroll-panel, .uniface-data-table .data-content-panel .action-panel .scroll-panel {
3776
+ flex: 1 1 auto;
3777
+ height: 100%;
3778
+ width: 100%;
3779
+ position: relative;
3780
+ overflow: hidden;
3781
+ }
3782
+ .uniface-data-table .data-content-panel .fixed-panel .scroll-panel > div, .uniface-data-table .data-content-panel .action-panel .scroll-panel > div {
3783
+ height: 100%;
3784
+ width: 100%;
3785
+ position: relative;
3786
+ }
3787
+ .uniface-data-table .data-content-panel .fixed-panel .bottom-mask-overlay, .uniface-data-table .data-content-panel .action-panel .bottom-mask-overlay {
3788
+ flex: 0 0 auto;
3789
+ width: 100%;
3790
+ height: 8px;
3791
+ box-sizing: border-box;
3792
+ background-color: #ffffff;
3793
+ border-top: 1px solid var(--uniface-inner-border-color, #d9d9d9);
3794
+ }
3795
+ .uniface-data-table .data-content-panel .action-panel {
3796
+ border-left: 1px solid var(--uniface-inner-border-color, #d9d9d9);
3797
+ box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
3798
+ }
3799
+ .uniface-data-table .data-content-panel .action-panel .scroll-panel {
3800
+ overflow-y: auto;
3801
+ }
3802
+ .uniface-data-table .data-content-panel .action-panel > div .operation-row {
3803
+ position: relative;
3804
+ width: 100%;
3805
+ display: flex;
3806
+ box-sizing: border-box;
3807
+ border-bottom: 1px solid #f0f0f0;
3808
+ flex-direction: row;
3809
+ align-items: center;
3810
+ }
3811
+ .uniface-data-table .data-content-panel .action-panel > div .operation-row.alternative {
3812
+ background-color: var(--uniface-data-table-background-color, #f7f7f7);
3813
+ }
3814
+ .uniface-data-table .data-content-panel .action-panel > div .operation-row > div:first-child {
3815
+ width: 100%;
3816
+ padding: 2px 4px;
3817
+ box-sizing: border-box;
3818
+ overflow: hidden;
3819
+ white-space: nowrap;
3820
+ }
3821
+ .uniface-data-table .data-content-panel .fixed-panel {
3822
+ width: 50px;
3823
+ border-right: 1px solid var(--uniface-inner-border-color, #d9d9d9);
3824
+ z-index: 1;
3825
+ box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
3826
+ overflow: hidden;
3827
+ }
3828
+ .uniface-data-table .data-content-panel .fixed-panel .indicator-cell {
3829
+ position: relative;
3830
+ width: 100%;
3831
+ display: flex;
3832
+ padding: 0 6px 0 3px;
3833
+ box-sizing: border-box;
3834
+ flex-direction: row;
3835
+ align-items: center;
3836
+ }
3837
+ .uniface-data-table .data-content-panel .fixed-panel .indicator-cell.alternative {
3838
+ background-color: var(--uniface-data-table-background-color, #f7f7f7);
3839
+ }
3840
+ .uniface-data-table .data-content-panel .fixed-panel .indicator-cell input {
3841
+ flex: 0 0 auto;
3842
+ }
3843
+ .uniface-data-table .data-content-panel .fixed-panel .indicator-cell span {
3844
+ flex: 1 1 auto;
3845
+ display: inline-block;
3846
+ text-align: center;
3847
+ }
3848
+ .uniface-data-table .data-content-panel .action-button {
3849
+ display: inline-block;
3850
+ cursor: pointer;
3851
+ color: var(--uniface-button-primary-background-color, #42A5F5);
3852
+ box-sizing: border-box;
3853
+ padding: 2px 4px;
3854
+ text-decoration: none;
3855
+ }
3856
+ .uniface-data-table .data-content-panel .action-button:hover {
3857
+ font-weight: 600;
3858
+ }
3859
+ .uniface-data-table .data-content-panel .action-button:active {
3860
+ position: relative;
3861
+ top: 1px;
3862
+ }
3863
+ .uniface-data-table .data-content-panel .data-table-popover {
3864
+ position: relative;
3865
+ z-index: 50;
3866
+ }
3867
+ .uniface-data-table .data-content-panel .data-table-popover .contents-wrapper {
3868
+ position: absolute;
3869
+ transition: none;
3870
+ display: block;
3871
+ }
3872
+ .uniface-data-table .data-content-panel .data-table-popover .contents-wrapper .contents {
3873
+ background: var(--uniface-app-background-color, #ffffff);
3874
+ box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
3875
+ padding-top: 0;
3876
+ opacity: 1;
3877
+ transform: scale(1);
3878
+ display: block;
3879
+ }
3880
+ .uniface-data-table .data-content-panel .data-table-popover .contents-wrapper .contents .contents-inner {
3881
+ overflow: auto;
3882
+ }
3883
+ .uniface-data-table .data-content-panel .data-table-popover .contents-wrapper .contents .action-popover {
3884
+ padding: 0 4px;
3885
+ box-sizing: border-box;
3886
+ line-height: 1.5em;
3887
+ cursor: pointer;
3888
+ }
3889
+ .uniface-data-table .data-content-panel .data-table-popover .contents-wrapper .contents .action-popover:hover {
3890
+ background-color: #f7f7f7;
3891
+ }
3892
+ .uniface-data-table .data-content-panel .data-view-panel {
3893
+ flex: 1 1 auto;
3894
+ overflow-y: hidden;
3895
+ overflow-x: scroll;
3896
+ position: relative;
3897
+ box-sizing: border-box;
3898
+ }
3899
+ .uniface-data-table .data-content-panel .data-view-panel > div {
3900
+ position: relative;
3901
+ }
3902
+ .uniface-data-table .inline-panel {
3903
+ position: relative;
3904
+ width: 100%;
3905
+ overflow: auto;
3906
+ box-sizing: border-box;
3907
+ border-top: var(--uniface-data-table-inline-row-panel-border, 1px solid #F8FAFC);
3908
+ border-bottom: var(--uniface-data-table-inline-row-panel-border, 1px solid #F8FAFC);
3909
+ background-color: var(--uniface-data-table-inline-row-panel-bg, #F1F5F9);
3910
+ }
3911
+ .uniface-data-table .empty-content-board {
3912
+ position: relative;
3913
+ width: 100%;
3914
+ height: 100%;
3915
+ }
3916
+ .uniface-data-table .empty-content-board > div {
3917
+ text-align: center;
3918
+ font-size: 1.5em;
3919
+ position: relative;
3920
+ top: 50%;
3921
+ transform: translateY(-50%);
3922
+ color: #7f7f7f;
3923
+ font-style: italic;
3924
+ }
3925
+ .uniface-data-table.col-divide-line .table-data-cell {
3926
+ border-right: 1px solid #e1e1e1;
3927
+ }
3928
+
3929
+ .uniface-popup-hint {
3930
+ position: absolute;
3931
+ padding: 8px 16px;
3932
+ box-sizing: border-box;
3933
+ background-color: var(--uniface-popup-hint-bg, #FFFFE1);
3934
+ color: var(--uniface-popup-hint-color, #374151);
3935
+ border-radius: 8px;
3936
+ font-size: 12px;
3937
+ pointer-events: none;
3938
+ z-index: 100;
3939
+ }
3940
+
3941
+ .uniface-context-menu {
3942
+ position: absolute;
3943
+ color: var(--uniface-default-text-color, #374151);
3944
+ background-color: var(--uniface-context-menu-bg, #ffffff);
3945
+ border: 1px solid var(--uniface-primary-border-color, #E2E8F0);
3946
+ box-shadow: var(--uniface-context-menu-box-shadow);
3947
+ z-index: 1000;
3948
+ padding: 6px 8px;
3949
+ min-width: 150px;
3950
+ min-height: 100px;
3951
+ }
3952
+ .uniface-context-menu.visible {
3953
+ display: block;
3954
+ }
3955
+ .uniface-context-menu .menu-item {
3956
+ padding: 8px;
3957
+ cursor: pointer;
3958
+ }
3959
+ .uniface-context-menu .menu-item:hover {
3960
+ background-color: var(--uniface-default-hover-bg, rgba(66, 165, 245, 0.1019607843));
3961
+ border-radius: 8px;
3962
+ }
3963
+
3964
+ .uniface-property-editor {
3965
+ position: relative;
3966
+ width: 100%;
3967
+ height: 100%;
3968
+ overflow: hidden;
3969
+ display: flex;
3970
+ flex-direction: column;
3971
+ }
3972
+ .uniface-property-editor .table-header {
3973
+ background-color: var(--uniface-property-table-header-color, #e1e1e1);
3974
+ height: 28px;
3975
+ display: flex;
3976
+ flex-direction: row;
3977
+ flex: 0 0 auto;
3978
+ align-items: center;
3979
+ text-align: center;
3980
+ }
3981
+ .uniface-property-editor .table-header .header_label {
3982
+ width: 150px;
3983
+ flex: 0 0 auto;
3984
+ box-sizing: border-box;
3985
+ border-right: 1px solid #cccccc;
3986
+ }
3987
+ .uniface-property-editor .table-header .header_value {
3988
+ width: 150px;
3989
+ flex: 0 0 auto;
3990
+ overflow: hidden;
3991
+ text-overflow: ellipsis;
3992
+ box-sizing: border-box;
3993
+ }
3994
+ .uniface-property-editor .table-content {
3995
+ flex: 1 1 auto;
3996
+ overflow: hidden;
3997
+ align-items: center;
3998
+ }
3999
+ .uniface-property-editor .table-content > div {
4000
+ display: grid;
4001
+ grid-template-columns: 150px 1fr; /* 定义两列,第一列 1fr,第二列 2fr,你可以根据需要调整比例 */
4002
+ }
4003
+ .uniface-property-editor .table-content .property_label {
4004
+ grid-column: 1/2;
4005
+ height: 38px;
4006
+ text-align: left;
4007
+ align-self: center;
4008
+ padding: 0 8px;
4009
+ align-content: center;
4010
+ box-sizing: border-box;
4011
+ border-right: 1px solid #cccccc;
4012
+ border-bottom: 1px solid #cccccc;
4013
+ }
4014
+ .uniface-property-editor .table-content .property_control {
4015
+ grid-column: 2/3;
4016
+ height: 38px;
4017
+ box-sizing: border-box;
4018
+ border-bottom: 1px solid #cccccc;
4019
+ }
4020
+
4021
+ .uniface-action-bar {
4022
+ display: flex;
4023
+ flex-direction: row;
4024
+ align-items: center;
4025
+ justify-content: center;
4026
+ width: fit-content;
4027
+ }
4028
+
4029
+ .uniface-mask, .uniface-mask-overlay {
4030
+ position: absolute;
4031
+ top: 0;
4032
+ left: 0;
4033
+ width: 100%;
4034
+ height: 100%;
4035
+ z-index: 100;
4036
+ }
4037
+ .uniface-mask > div, .uniface-mask-overlay > div {
4038
+ position: relative;
4039
+ width: 100%;
4040
+ height: 100%;
4041
+ }
4042
+
4043
+ .uniface-mask {
4044
+ background-color: rgba(255, 255, 255, 0.0039215686);
4045
+ }
4046
+
4047
+ .uniface-mask-overlay {
4048
+ background-color: rgba(255, 255, 255, 0.4392156863);
4049
+ opacity: 1;
4050
+ visibility: visible;
4051
+ transition: opacity 0.3s ease-in-out;
4052
+ }
4053
+ .uniface-mask-overlay.hidden {
4054
+ visibility: hidden;
4055
+ opacity: 0;
4056
+ }