@dt-frames/ui 2.0.23 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -9
- package/es/assets/icons/ui-blank.svg +1 -0
- package/es/assets/icons/ui-docx.svg +1 -0
- package/es/assets/icons/ui-exl.svg +1 -0
- package/es/assets/icons/ui-forder-open.svg +1 -0
- package/es/assets/icons/ui-forder.svg +1 -0
- package/es/assets/icons/ui-jpg.svg +1 -0
- package/es/assets/icons/ui-pdf.svg +1 -0
- package/es/assets/icons/ui-ppt.svg +1 -0
- package/es/assets/icons/ui-rar.svg +1 -0
- package/es/assets/icons/ui-table-empty.svg +1 -0
- package/es/assets/icons/ui-txt.svg +1 -0
- package/es/assets/index.e67ea2f5.css +1 -0
- package/es/assets/locales/en.d.ts +1 -0
- package/es/assets/locales/en.ts +1 -0
- package/es/assets/locales/zh.d.ts +1 -0
- package/es/assets/locales/zh.ts +1 -0
- package/es/assets/test.ts +1 -0
- package/es/components/container/index.d.ts +2 -93
- package/es/components/container/index.js +92 -15
- package/es/components/container/src/components/bar.d.ts +2 -2
- package/es/components/container/{index.less → src/index.scss} +9 -16
- package/es/components/container/src/utils/scroll.d.ts +1 -1
- package/es/components/curd/index.d.ts +3 -1
- package/es/components/curd/index.js +66 -141
- package/es/components/curd/src/components/props.d.ts +53 -0
- package/es/components/curd/src/components/types/curd.type.d.ts +13 -0
- package/es/components/curd/src/hooks/useCurd.d.ts +3 -110
- package/es/components/curd/src/props.d.ts +109 -159
- package/es/components/curd/src/types/curd.type.d.ts +54 -8
- package/es/components/drawer/index.d.ts +3 -7881
- package/es/components/drawer/index.js +209 -307
- package/es/components/drawer/src/components/DrawerFooter.d.ts +19 -21
- package/es/components/drawer/src/hooks/useDrawer.d.ts +2 -2
- package/es/components/drawer/src/index.d.ts +11 -7876
- package/es/components/drawer/src/index.scss +24 -0
- package/es/components/drawer/src/props.d.ts +2 -64
- package/es/components/drawer/src/{types/index.type.d.ts → type/drawer.type.d.ts} +26 -14
- package/es/components/form/index.d.ts +5 -5
- package/es/components/form/index.js +641 -634
- package/es/components/form/src/components/DynanicInput.d.ts +2 -0
- package/es/components/form/src/components/FormButtons.d.ts +13 -3086
- package/es/components/form/src/components/FormInputUseDialog.d.ts +2 -0
- package/es/components/form/src/components/FormItem.d.ts +53 -156
- package/es/components/form/src/components/RadioButton.d.ts +26 -0
- package/es/components/form/src/components/componentMap.d.ts +2 -2
- package/es/components/form/src/components/index.d.ts +2 -4
- package/es/components/form/src/hooks/useForm.d.ts +3 -3
- package/es/components/form/src/hooks/useFormActions.d.ts +38 -5
- package/es/components/form/src/hooks/useFormEvent.d.ts +9 -7
- package/es/components/form/src/hooks/useFormValue.d.ts +2 -2
- package/es/components/form/src/hooks/useFormValues.d.ts +8 -6
- package/es/components/form/src/hooks/useLabelWidth.d.ts +1 -1
- package/es/components/form/src/index.d.ts +358 -0
- package/es/components/form/src/index.scss +162 -0
- package/es/components/form/src/props.d.ts +45 -7
- package/es/components/form/src/types/actions.type.d.ts +1 -1
- package/es/components/form/src/types/form.type.d.ts +59 -26
- package/es/components/form/src/types/items.type.d.ts +33 -33
- package/es/components/form/src/{hooks → utils}/helper.d.ts +7 -0
- package/es/components/icons/index.d.ts +2 -497
- package/es/components/icons/index.js +42 -1911
- package/es/components/icons/src/{svg-icon.d.ts → SvgIcon.d.ts} +7 -14
- package/es/components/icons/src/index.scss +3 -0
- package/es/components/iframe/index.js +40 -29
- package/es/components/iframe/src/index.d.ts +16 -11
- package/es/components/iframe/src/index.scss +20 -0
- package/es/components/modal/index.d.ts +3 -2
- package/es/components/modal/index.js +188 -198
- package/es/components/modal/src/components/CloseIcon.d.ts +4 -20
- package/es/components/modal/src/components/Modal.d.ts +201 -108
- package/es/components/modal/src/components/ModalFooter.d.ts +12 -20
- package/es/components/modal/src/hooks/useDrag.d.ts +2 -3
- package/es/components/modal/src/hooks/useFullScreen.d.ts +1 -1
- package/es/components/modal/src/hooks/useModal.d.ts +3 -3
- package/es/components/modal/src/index.d.ts +32 -359
- package/es/components/modal/{index.less → src/index.scss} +104 -82
- package/es/components/modal/src/props.d.ts +10 -17
- package/es/components/modal/src/types/{modal.type.d.ts → index.type.d.ts} +7 -6
- package/es/components/source/index.d.ts +1 -1
- package/es/components/source/index.js +142 -113
- package/es/components/source/{hooks → src/hooks}/useDownload.d.ts +1 -1
- package/es/components/source/{hooks → src/hooks}/useSource.d.ts +24 -20
- package/es/components/source/{types → src/types}/source.type.d.ts +12 -13
- package/es/components/table/index.d.ts +7 -2
- package/es/components/table/index.js +197 -286
- package/es/components/table/src/components/TableAction.d.ts +16 -24
- package/es/components/table/src/components/TableHeader.d.ts +35 -0
- package/es/components/table/src/components/TableRender.d.ts +10 -14
- package/es/components/table/src/components/editTable/CellComponent.d.ts +4 -4
- package/es/components/table/src/components/editTable/EditTableCell.d.ts +15 -57
- package/es/components/table/src/components/editTable/componentMap.d.ts +1 -1
- package/es/components/table/src/components/editTable/index.d.ts +3 -3
- package/es/components/table/src/components/editTable/props.d.ts +6 -6
- package/es/components/table/src/components/tableSetting/Column.d.ts +3 -68
- package/es/components/table/src/components/tableSetting/Download.d.ts +11 -0
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +2 -22
- package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +2 -22
- package/es/components/table/src/components/tableSetting/index.d.ts +17 -0
- package/es/components/table/src/hooks/useDataSource.d.ts +3 -4
- package/es/components/table/src/hooks/useHeader.d.ts +3 -3
- package/es/components/table/src/hooks/useHeaderCode.d.ts +2 -2
- package/es/components/table/src/hooks/useLoading.d.ts +3 -3
- package/es/components/table/src/hooks/usePagination.d.ts +2 -2
- package/es/components/table/src/hooks/useRowSelection.d.ts +1 -1
- package/es/components/table/src/hooks/useTable.d.ts +1 -1
- package/es/components/table/src/hooks/useTableInstance.d.ts +2 -2
- package/es/components/table/src/hooks/useTableScroll.d.ts +0 -1
- package/es/components/table/src/hooks/useTableStyle.d.ts +5 -0
- package/es/components/table/src/index.d.ts +169 -324
- package/es/components/table/{index.less → src/index.scss} +309 -279
- package/es/components/table/src/props.d.ts +39 -14
- package/es/components/table/src/types/actions.type.d.ts +5 -5
- package/es/components/table/src/types/header.type.d.ts +6 -6
- package/es/components/table/src/types/table.type.d.ts +84 -21
- package/es/components/tree/index.d.ts +2 -1
- package/es/components/tree/index.js +320 -324
- package/es/components/tree/src/basicProps.d.ts +9 -9
- package/es/components/tree/src/components/ContextMenu.d.ts +17 -17
- package/es/components/tree/src/components/TreeHeader.d.ts +13 -33
- package/es/components/tree/src/hooks/useContextMenu.d.ts +2 -2
- package/es/components/tree/src/hooks/useMethod.d.ts +16 -0
- package/es/components/tree/src/hooks/useTree.d.ts +5 -15
- package/es/components/tree/src/index.d.ts +52 -6369
- package/es/components/tree/src/index.scss +178 -0
- package/es/components/tree/src/types/action.type.d.ts +64 -0
- package/es/components/tree/src/{type → types}/menu.d.ts +1 -1
- package/es/components/tree/src/types/tree.d.ts +31 -0
- package/es/components/tree/src/utils/tree.d.ts +1 -1
- package/es/components/upload/index.d.ts +1 -1
- package/es/components/upload/index.js +111 -102
- package/es/components/upload/src/basicProps.d.ts +11 -7
- package/es/components/upload/src/components/PdfView.d.ts +2 -9
- package/es/components/upload/src/components/WordView.d.ts +2 -7
- package/es/components/upload/src/hooks/useFile.d.ts +3 -3
- package/es/components/upload/src/index.d.ts +47 -96
- package/es/components/upload/{index.less → src/index.scss} +19 -13
- package/es/components/upload/src/type/file.d.ts +2 -2
- package/es/components/upload/src/utils/upload.d.ts +1 -1
- package/es/components/vxe_table/index.d.ts +4 -0
- package/es/components/vxe_table/index.js +1162 -0
- package/es/components/vxe_table/src/components/AApiSelect.d.ts +12 -0
- package/es/components/vxe_table/src/components/AAutoComplete.d.ts +2 -0
- package/es/components/vxe_table/src/components/AButton.d.ts +12 -0
- package/es/components/vxe_table/src/components/AButtonGroup.d.ts +2 -0
- package/es/components/vxe_table/src/components/ACascader.d.ts +2 -0
- package/es/components/vxe_table/src/components/ACheckbox.d.ts +2 -0
- package/es/components/vxe_table/src/components/ACheckboxGroup.d.ts +6 -0
- package/es/components/vxe_table/src/components/ADatePicker.d.ts +4 -0
- package/es/components/vxe_table/src/components/AEmpty.d.ts +6 -0
- package/es/components/vxe_table/src/components/AInput.d.ts +2 -0
- package/es/components/vxe_table/src/components/AInputNumber.d.ts +2 -0
- package/es/components/vxe_table/src/components/AInputSearch.d.ts +2 -0
- package/es/components/vxe_table/src/components/AMonthPicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/ARadioGroup.d.ts +6 -0
- package/es/components/vxe_table/src/components/ARangePicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/ARate.d.ts +2 -0
- package/es/components/vxe_table/src/components/ASelect.d.ts +2 -0
- package/es/components/vxe_table/src/components/ASwitch.d.ts +2 -0
- package/es/components/vxe_table/src/components/ATimePicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/ATreeSelect.d.ts +2 -0
- package/es/components/vxe_table/src/components/AWeekPicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/AYearPicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/Select.d.ts +2 -0
- package/es/components/vxe_table/src/components/common.d.ts +52 -0
- package/es/components/vxe_table/src/components/componentMap.d.ts +3 -0
- package/es/components/vxe_table/src/components/index.d.ts +4 -0
- package/es/components/vxe_table/src/hooks/useColumns.d.ts +1 -0
- package/es/components/vxe_table/src/hooks/useComponents.d.ts +2 -0
- package/es/components/vxe_table/src/hooks/useHeader.d.ts +6 -0
- package/es/components/vxe_table/src/hooks/useProps.d.ts +3 -0
- package/es/components/vxe_table/src/hooks/useVxeTable.d.ts +7 -0
- package/es/components/vxe_table/src/index.d.ts +26 -0
- package/es/components/vxe_table/src/index.scss +13 -0
- package/es/components/vxe_table/src/props.d.ts +1 -0
- package/es/components/vxe_table/src/types/componentType.d.ts +1 -0
- package/es/components/vxe_table/src/types/vxeTable.type.d.ts +45 -0
- package/es/components/vxe_table/src/utils/index.d.ts +6 -0
- package/es/directives/index.d.ts +1 -4
- package/es/directives/index.js +6 -1991
- package/es/theme/index.d.ts +9 -9
- package/es/theme/index.js +2112 -2344
- package/es/theme/src/components/content/index.d.ts +2 -31
- package/es/theme/src/components/feature/BackTop.d.ts +2 -0
- package/es/theme/src/components/feature/index.d.ts +2 -7
- package/es/theme/src/components/footer/index.d.ts +2 -31
- package/es/theme/src/components/header/MultipleHeader.d.ts +2 -0
- package/es/theme/src/components/header/components/BreadCrumb.d.ts +2 -0
- package/es/theme/src/components/header/components/FullScreen.d.ts +2 -0
- package/es/theme/src/components/header/components/LangPicker.d.ts +12 -0
- package/es/theme/src/components/header/components/Logo.d.ts +22 -0
- package/es/theme/src/components/header/components/MenuFilter.d.ts +2 -0
- package/es/theme/src/components/header/components/Notice.d.ts +2 -0
- package/es/theme/src/components/header/components/SettintTheme.d.ts +2 -0
- package/es/theme/src/components/header/components/Size.d.ts +2 -0
- package/es/theme/src/components/header/components/Trigger.d.ts +6 -0
- package/es/theme/src/components/header/components/UserInfo.d.ts +2 -0
- package/es/theme/src/components/header/components/lock/Lockscreen.d.ts +2 -85
- package/es/theme/src/components/header/components/lock/Recharge.d.ts +4 -6
- package/es/theme/src/components/header/components/lock/useBattery.d.ts +4 -4
- package/es/theme/src/components/header/components/lock/useTime.d.ts +5 -5
- package/es/theme/src/components/header/components/theme-drawer/Color.d.ts +26 -0
- package/es/theme/src/components/header/components/theme-drawer/ColorPrimary.d.ts +27 -0
- package/es/theme/src/components/header/components/theme-drawer/Feature.d.ts +2 -0
- package/es/theme/src/components/header/components/theme-drawer/InputNumber.d.ts +28 -0
- package/es/theme/src/components/header/components/theme-drawer/MenuType.d.ts +2 -0
- package/es/theme/src/components/header/components/theme-drawer/Select.d.ts +44 -0
- package/es/theme/src/components/header/components/theme-drawer/Switch.d.ts +29 -0
- package/es/theme/src/components/header/components/theme-drawer/Var.d.ts +2 -0
- package/es/theme/src/components/header/components/theme-drawer/styles/GlobalStyle.d.ts +2 -0
- package/es/theme/src/components/header/components/theme-drawer/styles/MenuStyle.d.ts +2 -0
- package/es/theme/src/components/header/helper/changeTheme.d.ts +15 -0
- package/es/theme/src/components/header/helper/{menu-tree.d.ts → menuTree.d.ts} +1 -1
- package/es/theme/src/components/header/index.d.ts +4 -547
- package/es/theme/src/components/sider/components/DragBar.d.ts +2 -0
- package/es/theme/src/components/sider/components/{layout-menu.d.ts → LayoutMenu.d.ts} +5 -5
- package/es/theme/src/components/sider/components/MixSider.d.ts +2 -0
- package/es/theme/src/components/sider/components/SiderTrigger.d.ts +14 -0
- package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +8 -35
- package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +8 -100
- package/es/theme/src/components/sider/components/basic-menu/index.d.ts +64 -0
- package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +6 -10
- package/es/theme/src/components/sider/components/{props.d.ts → basic-menu/props.d.ts} +12 -29
- package/es/theme/src/components/sider/helper/sider.d.ts +3 -3
- package/es/theme/src/components/sider/helper/split-menu.d.ts +2 -2
- package/es/theme/src/components/sider/index.d.ts +2 -235
- package/es/theme/src/components/tabs/components/TabContent.d.ts +4 -21
- package/es/theme/src/components/tabs/components/TabRedo.d.ts +2 -23
- package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +9 -3
- package/es/theme/src/components/tabs/hooks/useTabs.d.ts +1 -1
- package/es/theme/src/components/tabs/index.d.ts +2 -86
- package/es/theme/src/consts/color.d.ts +3 -0
- package/es/theme/src/consts/index.d.ts +14 -0
- package/es/theme/src/enums/index.d.ts +34 -1
- package/es/theme/src/hooks/index.d.ts +6 -6
- package/es/theme/src/hooks/useDragLine.d.ts +1 -1
- package/es/theme/src/hooks/useHeader.d.ts +22 -23
- package/es/theme/src/hooks/useMenu.d.ts +26 -26
- package/es/theme/src/hooks/useMultifyTab.d.ts +6 -6
- package/es/theme/src/hooks/useOpenKeys.d.ts +3 -3
- package/es/theme/src/hooks/useTheme.d.ts +25 -7
- package/es/theme/src/index.d.ts +2 -1630
- package/es/theme/src/index.scss +1134 -0
- package/es/theme/src/stores/index.d.ts +2 -2
- package/es/theme/src/stores/lockscreen.store.d.ts +7 -5
- package/es/theme/src/stores/routeReuse.store.d.ts +18 -20
- package/es/theme/src/stores/theme.store.d.ts +9 -15
- package/es/theme/{transition.less → src/transition.scss} +1 -1
- package/es/theme/src/types/index.d.ts +0 -3
- package/es/theme/src/types/menu.type.d.ts +2 -1
- package/es/theme/src/types/theme.type.d.ts +31 -12
- package/es/theme/src/utils/color.d.ts +14 -0
- package/es/theme/src/utils/index.d.ts +3 -0
- package/es/theme/src/utils.ts/index.d.ts +3 -0
- package/index.d.ts +12 -13
- package/index.js +44 -62
- package/manualContentPath.js +73 -19
- package/package.json +65 -65
- package/tsconfig.json +19 -30
- package/tsconfig.tsbuildinfo +1 -0
- package/vite.config.ts +82 -68
- package/es/assets/data/icons/actions.d.ts +0 -1
- package/es/assets/data/icons/actions.ts +0 -423
- package/es/assets/data/icons/code.d.ts +0 -1
- package/es/assets/data/icons/code.ts +0 -10
- package/es/assets/data/icons/commuticate.d.ts +0 -1
- package/es/assets/data/icons/commuticate.ts +0 -182
- package/es/assets/data/icons/currency.d.ts +0 -1
- package/es/assets/data/icons/currency.ts +0 -44
- package/es/assets/data/icons/devices.d.ts +0 -1
- package/es/assets/data/icons/devices.ts +0 -126
- package/es/assets/data/icons/edit.d.ts +0 -1
- package/es/assets/data/icons/edit.ts +0 -163
- package/es/assets/data/icons/file.d.ts +0 -1
- package/es/assets/data/icons/file.ts +0 -99
- package/es/assets/data/icons/math.d.ts +0 -1
- package/es/assets/data/icons/math.ts +0 -53
- package/es/assets/data/icons/message.d.ts +0 -1
- package/es/assets/data/icons/message.ts +0 -68
- package/es/assets/data/icons/navigate.d.ts +0 -1
- package/es/assets/data/icons/navigate.ts +0 -181
- package/es/assets/data/icons/other.d.ts +0 -1
- package/es/assets/data/icons/other.ts +0 -324
- package/es/assets/data/index.d.ts +0 -4
- package/es/assets/data/index.ts +0 -58
- package/es/assets/imgs/tree/forder-open.svg +0 -1
- package/es/assets/imgs/tree/forder.svg +0 -1
- package/es/components/container/src/components/scroll-bar.d.ts +0 -70
- package/es/components/container/src/scroll-container.d.ts +0 -76
- package/es/components/container/src/slot-container.d.ts +0 -20
- package/es/components/curd/src/components/Curd.d.ts +0 -384
- package/es/components/drawer/index.less +0 -16
- package/es/components/drawer/src/components/DrawerHeader.d.ts +0 -11
- package/es/components/form/index.less +0 -361
- package/es/components/form/src/components/formIcon.d.ts +0 -14
- package/es/components/form/src/components/formInputUseDialog.d.ts +0 -17
- package/es/components/form/src/components/radioButton.d.ts +0 -34
- package/es/components/form/src/enums/index.d.ts +0 -7
- package/es/components/icons/index.less +0 -47
- package/es/components/icons/src/pick-icon.d.ts +0 -455
- package/es/components/iframe/index.less +0 -29
- package/es/components/modal/src/components/ModalWrap.d.ts +0 -79
- package/es/components/source/utils/index.d.ts +0 -8
- package/es/components/table/src/enums/table.enum.d.ts +0 -5
- package/es/components/table/src/hooks/useRow.d.ts +0 -5
- package/es/components/tree/index.less +0 -200
- package/es/components/tree/src/type/tree.d.ts +0 -50
- package/es/directives/icon.d.ts +0 -2
- package/es/global.d.ts +0 -7
- package/es/index.d.ts +0 -1
- package/es/index.js +0 -4
- package/es/theme/index.less +0 -1003
- package/es/theme/src/components/feature/back-top.d.ts +0 -5
- package/es/theme/src/components/header/components/bread-crumb.d.ts +0 -6
- package/es/theme/src/components/header/components/fullscreen.d.ts +0 -5
- package/es/theme/src/components/header/components/index.d.ts +0 -11
- package/es/theme/src/components/header/components/lang-picker.d.ts +0 -23
- package/es/theme/src/components/header/components/lock/index.d.ts +0 -2
- package/es/theme/src/components/header/components/logo.d.ts +0 -55
- package/es/theme/src/components/header/components/menu-filter.d.ts +0 -22
- package/es/theme/src/components/header/components/notify.d.ts +0 -22
- package/es/theme/src/components/header/components/setting-theme.d.ts +0 -223
- package/es/theme/src/components/header/components/size.d.ts +0 -21
- package/es/theme/src/components/header/components/theme-drawer/feature.d.ts +0 -138
- package/es/theme/src/components/header/components/theme-drawer/index.d.ts +0 -3
- package/es/theme/src/components/header/components/theme-drawer/menu-type.d.ts +0 -16
- package/es/theme/src/components/header/components/theme-drawer/select.d.ts +0 -58
- package/es/theme/src/components/header/components/theme-drawer/switch.d.ts +0 -49
- package/es/theme/src/components/header/components/trigger.d.ts +0 -10
- package/es/theme/src/components/header/components/user-info.d.ts +0 -44
- package/es/theme/src/components/header/helper/change-theme.d.ts +0 -13
- package/es/theme/src/components/header/multiple-header.d.ts +0 -660
- package/es/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +0 -207
- package/es/theme/src/components/sider/components/drag-bar.d.ts +0 -14
- package/es/theme/src/components/sider/components/sider-trigger.d.ts +0 -17
- package/es/theme/src/components/sider/mix-sider.d.ts +0 -167
- package/es/theme/src/components/tabs/components/index.d.ts +0 -3
- package/es/theme/src/components/tabs/types/tabs.type.d.ts +0 -7
- package/es/theme/src/enums/theme.enum.d.ts +0 -34
- package/es/theme/src/setting/theme.setting.d.ts +0 -2
- package/es/utils/withInstall.d.ts +0 -4
- package/tailwind.config.cjs +0 -11
- package/tsconfig.node.json +0 -9
- /package/es/assets/{icons → fonts}/iconfont.css +0 -0
- /package/es/assets/{icons → fonts}/iconfont.eot +0 -0
- /package/es/assets/{icons → fonts}/iconfont.svg +0 -0
- /package/es/assets/{icons → fonts}/iconfont.ttf +0 -0
- /package/es/assets/{icons → fonts}/iconfont.woff +0 -0
- /package/es/assets/{icons → fonts}/iconfont.woff2 +0 -0
- /package/es/components/container/src/types/{scroll.type.d.ts → index.d.ts} +0 -0
package/es/theme/index.less
DELETED
|
@@ -1,1003 +0,0 @@
|
|
|
1
|
-
@import '../components/container/index.less';
|
|
2
|
-
@import './transition.less';
|
|
3
|
-
|
|
4
|
-
@primary-color: #269ac1;
|
|
5
|
-
@primary-color-hover: #d9eef5;
|
|
6
|
-
@header-bg-color: #fff;
|
|
7
|
-
@header-bg-dark-color: #3c4252; // #001529
|
|
8
|
-
@header-light-bottom-border-color: #eee;
|
|
9
|
-
@header-height: 48px;
|
|
10
|
-
@logo-width: 32px;
|
|
11
|
-
@logo-height: 32px;
|
|
12
|
-
|
|
13
|
-
@text-color-base: #333;
|
|
14
|
-
@menu-bg-color: #001529;
|
|
15
|
-
@menu-sub-bg-color: #00061a;
|
|
16
|
-
@menu-mix-bg-color: #fff;
|
|
17
|
-
@menu-mix-sub-bg-color: #fff;
|
|
18
|
-
@menu-mix-select-bg-color: #269ac112;
|
|
19
|
-
@menu-item-height: 44px;
|
|
20
|
-
|
|
21
|
-
@border-color-base: #d9d9d9;
|
|
22
|
-
|
|
23
|
-
@page-bg-color: #f0f2f5;
|
|
24
|
-
@content-bg: #f4f7f9;
|
|
25
|
-
|
|
26
|
-
@white: #fff;
|
|
27
|
-
|
|
28
|
-
@side-drag-z-index: 20;
|
|
29
|
-
|
|
30
|
-
// 路由复用
|
|
31
|
-
@multiple-height: 30px;
|
|
32
|
-
@tabs-background: #fff;
|
|
33
|
-
|
|
34
|
-
// 滚动条边框
|
|
35
|
-
@border-color-dark: #b6b7b9;
|
|
36
|
-
|
|
37
|
-
// table相关
|
|
38
|
-
@table-action-icon-color: #999;
|
|
39
|
-
|
|
40
|
-
// 小尺寸
|
|
41
|
-
@small-font-size: 13px;
|
|
42
|
-
@small-height: 30px;
|
|
43
|
-
|
|
44
|
-
// 中尺寸
|
|
45
|
-
@middle-font-size: 14px;
|
|
46
|
-
@middle-height: 32px;
|
|
47
|
-
|
|
48
|
-
// 大尺寸
|
|
49
|
-
@large-font-size: 14px;
|
|
50
|
-
@large-height: 34px;
|
|
51
|
-
|
|
52
|
-
/* 滚动条美化 */
|
|
53
|
-
::-webkit-scrollbar {
|
|
54
|
-
width: 7px;
|
|
55
|
-
height: 8px;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
::-webkit-scrollbar-track {
|
|
59
|
-
background-color: rgb(0 0 0 / 5%);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
::-webkit-scrollbar-thumb {
|
|
63
|
-
background-color: rgb(144 147 153 / 30%);
|
|
64
|
-
border-radius: 2px;
|
|
65
|
-
box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
::-webkit-scrollbar-thumb:hover {
|
|
69
|
-
background-color: @border-color-dark;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
.ant-btn.ant-btn-sm,
|
|
74
|
-
.ant-input-search-small .ant-btn.ant-btn-sm{
|
|
75
|
-
font-size: @small-font-size;
|
|
76
|
-
height: @small-height;
|
|
77
|
-
display: flex;
|
|
78
|
-
align-items: center;
|
|
79
|
-
justify-content: center;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.dt-theme{
|
|
83
|
-
.ant-input-sm:not(textarea){
|
|
84
|
-
height: @small-height;
|
|
85
|
-
font-size: @small-font-size;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.dt-theme-main {
|
|
89
|
-
background-color: @content-bg;
|
|
90
|
-
.ant-layout-content{
|
|
91
|
-
width: 100%;
|
|
92
|
-
&.fixed{
|
|
93
|
-
width: 1300px;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.ant-btn-lg{
|
|
99
|
-
font-size: @large-font-size;
|
|
100
|
-
height: @large-height;
|
|
101
|
-
display: flex;
|
|
102
|
-
align-items: center;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.dt-page{
|
|
106
|
-
background: @page-bg-color;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.dt-header{
|
|
110
|
-
height: 48px;
|
|
111
|
-
line-height: 48px;
|
|
112
|
-
padding: 0;
|
|
113
|
-
|
|
114
|
-
&--light {
|
|
115
|
-
background-color: @header-bg-color !important;
|
|
116
|
-
border-bottom: 1px solid @header-light-bottom-border-color;
|
|
117
|
-
color: @text-color-base;
|
|
118
|
-
.dt_header_icon:hover{
|
|
119
|
-
background-color: rgba(175, 178, 184, 0.25)
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
&--dark {
|
|
124
|
-
background-color: @header-bg-dark-color !important;
|
|
125
|
-
.ant-menu-dark{
|
|
126
|
-
background-color: @header-bg-dark-color;
|
|
127
|
-
}
|
|
128
|
-
i.i, span{
|
|
129
|
-
color: @white;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.ant-avatar-string{
|
|
135
|
-
width: 100%;
|
|
136
|
-
height: 100%;
|
|
137
|
-
transform: scale(1) translateX(-50%) !important;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.dt-sideBar{
|
|
141
|
-
background: @menu-bg-color;
|
|
142
|
-
|
|
143
|
-
.ant-layout-sider-children {
|
|
144
|
-
display: flex;
|
|
145
|
-
flex-direction: column;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.ant-menu{
|
|
149
|
-
background: @menu-bg-color;
|
|
150
|
-
|
|
151
|
-
.ant-menu-sub{
|
|
152
|
-
background: @menu-sub-bg-color;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.ant-menu-item, .ant-menu-submenu-title{
|
|
156
|
-
margin: 0;
|
|
157
|
-
height: @menu-item-height !important;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
&--fixed{
|
|
162
|
-
position: fixed;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
&--mix{
|
|
166
|
-
height: calc(100% - @header-height);
|
|
167
|
-
top: @header-height;
|
|
168
|
-
background: @menu-mix-bg-color;
|
|
169
|
-
border-right: 1px solid #f0f0f0;
|
|
170
|
-
|
|
171
|
-
.ant-menu{
|
|
172
|
-
background: @menu-mix-bg-color;
|
|
173
|
-
border-right: none;
|
|
174
|
-
.ant-menu-sub{
|
|
175
|
-
background: @menu-mix-sub-bg-color;
|
|
176
|
-
}
|
|
177
|
-
.dt-menu-item .i{
|
|
178
|
-
color: rgba(0,0,0,0.5);
|
|
179
|
-
font-size: 16px;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.ant-menu-item-selected{
|
|
183
|
-
background: @menu-mix-select-bg-color;
|
|
184
|
-
.i{
|
|
185
|
-
color: @primary-color;
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
.ant-menu-item:hover .i{
|
|
189
|
-
color: @primary-color;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.ant-layout-sider-trigger{
|
|
195
|
-
background: @menu-mix-bg-color;
|
|
196
|
-
border-right: 1px solid #f0f0f0;
|
|
197
|
-
border-top: 1px solid #f0f0f0;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.dt-menu-item{
|
|
201
|
-
display: flex;
|
|
202
|
-
align-items: center;
|
|
203
|
-
height: @menu-item-height;
|
|
204
|
-
font-size: 13px;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
&.ant-layout-sider-collapsed{
|
|
208
|
-
.dt-menu-item > span{
|
|
209
|
-
opacity: 0;
|
|
210
|
-
}
|
|
211
|
-
.menu-icon{
|
|
212
|
-
font-size: 18px;
|
|
213
|
-
height: 18px;
|
|
214
|
-
line-height: 18px;
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.dt-darg-bar{
|
|
219
|
-
position: fixed;
|
|
220
|
-
top: 0;
|
|
221
|
-
z-index: @side-drag-z-index;
|
|
222
|
-
width: 2px;
|
|
223
|
-
height: 100%;
|
|
224
|
-
cursor: col-resize;
|
|
225
|
-
border-top: none;
|
|
226
|
-
border-bottom: none;
|
|
227
|
-
|
|
228
|
-
&--hide {
|
|
229
|
-
display: none;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
&:hover {
|
|
233
|
-
background-color: @primary-color;
|
|
234
|
-
box-shadow: 0 0 4px 0 rgb(28 36 56 / 15%);
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.dt-mix-sider{
|
|
240
|
-
transition: all 0.2s ease 0s;
|
|
241
|
-
|
|
242
|
-
& > div:first-of-type, & > div:nth-of-type(2) {
|
|
243
|
-
background-color: @menu-bg-color;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
&.dark .dt-mix-sider__shallow-menu{
|
|
247
|
-
li{
|
|
248
|
-
color: #ffffffa1;
|
|
249
|
-
transition: all .3s ease;
|
|
250
|
-
|
|
251
|
-
i{
|
|
252
|
-
font-size: 20px;
|
|
253
|
-
}
|
|
254
|
-
p{
|
|
255
|
-
font-size: 12px;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
&.active-menu {
|
|
259
|
-
background-color: @menu-sub-bg-color;
|
|
260
|
-
color: #fff;
|
|
261
|
-
&::before{
|
|
262
|
-
position: absolute;
|
|
263
|
-
top: 0;
|
|
264
|
-
left: 0;
|
|
265
|
-
width: 4px;
|
|
266
|
-
height: 100%;
|
|
267
|
-
background-color: @primary-color;
|
|
268
|
-
content: "";
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
&:hover{
|
|
272
|
-
color: #fff;
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
&.dark .sub-menu{
|
|
278
|
-
border-right: 1px solid #eaf0fb;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
&__sub-shallow-menu{
|
|
282
|
-
padding: 6px 20px 12px 20px;
|
|
283
|
-
& > li{
|
|
284
|
-
|
|
285
|
-
li, .sub-menu{
|
|
286
|
-
line-height: 40px;
|
|
287
|
-
font-size: 13px;
|
|
288
|
-
align-items: center;
|
|
289
|
-
margin: 4px 0 8px -20px;
|
|
290
|
-
width: calc(100% + 40px);
|
|
291
|
-
padding-left: 24px;
|
|
292
|
-
i{
|
|
293
|
-
font-size: 18px;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
&.active-menu, &:hover {
|
|
297
|
-
color: @primary-color;
|
|
298
|
-
background-color: @menu-mix-select-bg-color;
|
|
299
|
-
i{
|
|
300
|
-
opacity: 1;
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
& > div:not(.sub-menu) {
|
|
306
|
-
border-bottom: 1px solid #eaf0fb;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
&:last-of-type > div{
|
|
310
|
-
border-bottom: none;
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
&__animate-enter-active {
|
|
316
|
-
z-index: -1;
|
|
317
|
-
animation: slideLeft 0.2s;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
&__animate-leave-active{
|
|
321
|
-
z-index: -1;
|
|
322
|
-
animation: slideLeft 0.2s reverse;
|
|
323
|
-
}
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
&-small{
|
|
327
|
-
font-size: @small-font-size;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
&-middle{
|
|
331
|
-
font-size: @middle-font-size;
|
|
332
|
-
.dt-header-action {
|
|
333
|
-
i {
|
|
334
|
-
font-size: 20px;
|
|
335
|
-
}
|
|
336
|
-
span{
|
|
337
|
-
font-size: @middle-font-size;
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.dt-reuse-tabs .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab span {
|
|
342
|
-
font-size: @small-font-size;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.dt-reuse-tabs .ant-tabs-extra-content i{
|
|
346
|
-
font-size: 16px;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
.ant-btn{
|
|
350
|
-
font-size: @middle-font-size;
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
&-large{
|
|
355
|
-
font-size: @large-font-size;
|
|
356
|
-
.dt-sideBar .ant-menu .ant-menu-item, .dt-sideBar .ant-menu .ant-menu-submenu-title {
|
|
357
|
-
height: 48px !important;
|
|
358
|
-
}
|
|
359
|
-
.dt-menu-item span{
|
|
360
|
-
font-size: @large-font-size !important;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.dt-reuse-tabs .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab span {
|
|
364
|
-
font-size: @small-font-size;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
.dt-reuse-tabs .ant-tabs-extra-content i{
|
|
368
|
-
font-size: 16px;
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
.dt-menu-item{
|
|
374
|
-
display: flex;
|
|
375
|
-
align-items: center;
|
|
376
|
-
font-size: 13px;
|
|
377
|
-
.menu-icon {
|
|
378
|
-
margin-right: 6px;
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
.dt-sideBar .ant-menu-inline .ant-menu-item, .dt-sideBar .ant-menu-inline .ant-menu-submenu-title {
|
|
383
|
-
width: 100%;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
.ant-layout-sider-dark, .ant-menu-dark{
|
|
387
|
-
.ant-menu-item-active > span > span,
|
|
388
|
-
.ant-menu-item-selected > span > span,
|
|
389
|
-
.ant-menu-submenu-active > div > span > span,
|
|
390
|
-
.ant-menu-submenu-selected > div > span > span,
|
|
391
|
-
.ant-menu-submenu-selected > span > span{
|
|
392
|
-
&>.menu-icon {
|
|
393
|
-
color: #fff !important;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.ant-menu-submenu-selected.ant-menu-submenu-horizontal {
|
|
398
|
-
background: none;
|
|
399
|
-
&::after{
|
|
400
|
-
bottom: 4px;
|
|
401
|
-
border-bottom: 4px solid @primary-color;
|
|
402
|
-
border-radius: 1px;
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
.dt-menu-item {
|
|
407
|
-
display: flex;
|
|
408
|
-
span{
|
|
409
|
-
font-size: 13px;
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
.menu-icon{
|
|
413
|
-
color: rgba(255,255,255,0.65);
|
|
414
|
-
padding: 0;
|
|
415
|
-
margin-right: 6px;
|
|
416
|
-
height: 40px;
|
|
417
|
-
width: 28px;
|
|
418
|
-
text-align: center;
|
|
419
|
-
font-size: 16px;
|
|
420
|
-
height: 16px;
|
|
421
|
-
line-height: 18px;
|
|
422
|
-
}
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
.dt-split-menu.ant-menu-horizontal .ant-menu-item-selected {
|
|
426
|
-
background-color: @primary-color;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
.dt-header{
|
|
430
|
-
height: @header-height;
|
|
431
|
-
line-height: @header-height;
|
|
432
|
-
color: @white;
|
|
433
|
-
|
|
434
|
-
.i{
|
|
435
|
-
font-size: 1.125rem;
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
.dt-logo{
|
|
440
|
-
height: @header-height;
|
|
441
|
-
flex: 0 0 @header-height;
|
|
442
|
-
&.light {
|
|
443
|
-
border-bottom: 1px solid @border-color-base;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
&.light &__title {
|
|
447
|
-
color: @primary-color;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
&.dark &__title {
|
|
451
|
-
color: @white;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
img{
|
|
455
|
-
width: @logo-width;
|
|
456
|
-
height: @logo-height;
|
|
457
|
-
}
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
.dt-menu-filter{
|
|
461
|
-
input{
|
|
462
|
-
border-top-left-radius: 16px;
|
|
463
|
-
border-bottom-left-radius: 16px;
|
|
464
|
-
padding-left: 14px;
|
|
465
|
-
font-size: 13px;
|
|
466
|
-
width: 150px !important;
|
|
467
|
-
border-right: none;
|
|
468
|
-
}
|
|
469
|
-
.ant-btn{
|
|
470
|
-
border-left: none;
|
|
471
|
-
border-top-right-radius: 16px !important;
|
|
472
|
-
border-bottom-right-radius: 16px !important;
|
|
473
|
-
padding-right: 10px;
|
|
474
|
-
padding-left: 5px;
|
|
475
|
-
width: 30px;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.ant-input:focus,
|
|
479
|
-
.ant-input:hover,
|
|
480
|
-
.ant-btn:focus,
|
|
481
|
-
.ant-btn:hover{
|
|
482
|
-
border-color: #d9d9d9;
|
|
483
|
-
box-shadow: none;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
.ant-empty-image{
|
|
487
|
-
height: 40px;
|
|
488
|
-
svg{
|
|
489
|
-
width: 100%;
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.ant-input-group-addon {
|
|
494
|
-
background-color: inherit;
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
&__popover .ant-popover-inner-content{
|
|
498
|
-
width: 180px;
|
|
499
|
-
max-height: 400px;
|
|
500
|
-
height: 220px;
|
|
501
|
-
padding: 0;
|
|
502
|
-
overflow-y: auto;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
&__popover .ant-empty-description{
|
|
506
|
-
font-size: 13px;
|
|
507
|
-
}
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
.dt-setting-theme{
|
|
511
|
-
&__tips {
|
|
512
|
-
border: 1px solid @primary-color;
|
|
513
|
-
color: @primary-color;
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
.dt-lang-picker{
|
|
518
|
-
&__popover .ant-popover-inner-content{
|
|
519
|
-
width: 120px;
|
|
520
|
-
padding: 4px 0;
|
|
521
|
-
|
|
522
|
-
.active{
|
|
523
|
-
color: @primary-color;
|
|
524
|
-
}
|
|
525
|
-
}
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.dt-notify{
|
|
529
|
-
&__popover .ant-popover-inner-content {
|
|
530
|
-
width: 350px;
|
|
531
|
-
padding: 10px 0 0 0;
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
.dt-size {
|
|
536
|
-
&__popover .ant-popover-inner-content {
|
|
537
|
-
width: 120px;
|
|
538
|
-
padding: 4px 0;
|
|
539
|
-
|
|
540
|
-
.active{
|
|
541
|
-
color: @primary-color;
|
|
542
|
-
}
|
|
543
|
-
}
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
.dt-user-info{
|
|
547
|
-
&__popover .ant-popover-inner-content {
|
|
548
|
-
width: 120px;
|
|
549
|
-
padding: 4px 0;
|
|
550
|
-
|
|
551
|
-
.active{
|
|
552
|
-
color: @primary-color;
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.dt-menu-type {
|
|
558
|
-
&__list:hover{
|
|
559
|
-
border: 2px solid @primary-color;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
&__item {
|
|
563
|
-
&::before{
|
|
564
|
-
position: absolute;
|
|
565
|
-
content: "";
|
|
566
|
-
top: 0;
|
|
567
|
-
left: 0;
|
|
568
|
-
z-index: 1;
|
|
569
|
-
width: 33%;
|
|
570
|
-
height: 100%;
|
|
571
|
-
background-color: #273352;
|
|
572
|
-
}
|
|
573
|
-
&::after{
|
|
574
|
-
position: absolute;
|
|
575
|
-
content: "";
|
|
576
|
-
top: 0;
|
|
577
|
-
left: 0;
|
|
578
|
-
width: 100%;
|
|
579
|
-
height: 25%;
|
|
580
|
-
background-color: #fff;
|
|
581
|
-
}
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
&__item--top-menu &__item {
|
|
585
|
-
&::before{
|
|
586
|
-
width: 0;
|
|
587
|
-
}
|
|
588
|
-
&::after{
|
|
589
|
-
background-color: #273352;
|
|
590
|
-
}
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
&__item--mix &__item {
|
|
594
|
-
&::before{
|
|
595
|
-
top: 25%;
|
|
596
|
-
height: 75%;
|
|
597
|
-
background-color: #fff;
|
|
598
|
-
}
|
|
599
|
-
&::after{
|
|
600
|
-
background-color: #273352;
|
|
601
|
-
}
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
&__item--mix-sidebar {
|
|
605
|
-
&::before{
|
|
606
|
-
content: '';
|
|
607
|
-
position: absolute;
|
|
608
|
-
left: 15%;
|
|
609
|
-
top: calc(25% + 1px);
|
|
610
|
-
width: 20%;
|
|
611
|
-
height: 75%;
|
|
612
|
-
background-color: #fff;
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
.dt-menu-type__item::before {
|
|
616
|
-
width: 15%;
|
|
617
|
-
}
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
&__item--active {
|
|
621
|
-
border: 2px solid @primary-color;
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
.dt-reuse-tabs {
|
|
627
|
-
.ant-tabs-small {
|
|
628
|
-
height: calc(@multiple-height + 2px);
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
.ant-tabs-card{
|
|
632
|
-
.ant-tabs-nav{
|
|
633
|
-
padding-top: 2px;
|
|
634
|
-
height: calc(@multiple-height + 2px);
|
|
635
|
-
margin: 0;
|
|
636
|
-
background-color: @tabs-background;
|
|
637
|
-
border: 0;
|
|
638
|
-
box-shadow: none;
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
&::before{
|
|
642
|
-
border: none;
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
.ant-tabs-nav-container {
|
|
646
|
-
height: @multiple-height;
|
|
647
|
-
padding-top: 2px;
|
|
648
|
-
}
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
.ant-tabs-card > .ant-tabs-nav .ant-tabs-tab{
|
|
652
|
-
height: calc(@multiple-height - 2px);
|
|
653
|
-
padding-right: 12px;
|
|
654
|
-
line-height: calc(@multiple-height - 2px);
|
|
655
|
-
color: @text-color-base;
|
|
656
|
-
background-color: @tabs-background;
|
|
657
|
-
transition: none;
|
|
658
|
-
|
|
659
|
-
span{
|
|
660
|
-
font-size: 12px;
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
&:hover {
|
|
664
|
-
.ant-tabs-tab-remove {
|
|
665
|
-
opacity: 1;
|
|
666
|
-
}
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.ant-tabs-tab-remove{
|
|
670
|
-
width: 8px;
|
|
671
|
-
height: 10px;
|
|
672
|
-
font-size: 12px;
|
|
673
|
-
color: inherit;
|
|
674
|
-
opacity: 1;
|
|
675
|
-
transition: none;
|
|
676
|
-
margin-left: 8px;
|
|
677
|
-
margin-right: -9px;
|
|
678
|
-
align-items: center;
|
|
679
|
-
|
|
680
|
-
span{
|
|
681
|
-
display: block;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
&:hover {
|
|
685
|
-
svg {
|
|
686
|
-
width: 0.8em !important;
|
|
687
|
-
}
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
svg {
|
|
691
|
-
fill: @text-color-base;
|
|
692
|
-
}
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
.ant-tabs-tab:not(.ant-tabs-tab-active) {
|
|
696
|
-
&:hover {
|
|
697
|
-
color: @primary-color;
|
|
698
|
-
}
|
|
699
|
-
}
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
.ant-tabs-tab-active {
|
|
703
|
-
position: relative;
|
|
704
|
-
padding-left: 18px;
|
|
705
|
-
background: @primary-color !important;
|
|
706
|
-
border: 0;
|
|
707
|
-
transition: none;
|
|
708
|
-
|
|
709
|
-
span {
|
|
710
|
-
color: @white !important;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.ant-tabs-tab-remove {
|
|
714
|
-
opacity: 1;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
svg {
|
|
718
|
-
width: 0.7em;
|
|
719
|
-
fill: @white !important;
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
&::before{
|
|
723
|
-
content: ' ';
|
|
724
|
-
width: 6px;
|
|
725
|
-
height: 6px;
|
|
726
|
-
border-radius: 50%;
|
|
727
|
-
background-color: #fff;
|
|
728
|
-
position: absolute;
|
|
729
|
-
left: 4px;
|
|
730
|
-
top: 11px;
|
|
731
|
-
}
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
.ant-tabs-nav > div:nth-child(1) {
|
|
735
|
-
padding: 0 6px;
|
|
736
|
-
|
|
737
|
-
.ant-tabs-tab {
|
|
738
|
-
margin-right: 3px !important;
|
|
739
|
-
}
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
.ant-tabs-nav {
|
|
743
|
-
&::before {
|
|
744
|
-
border-bottom: none !important;
|
|
745
|
-
}
|
|
746
|
-
&-more{
|
|
747
|
-
display: flex;
|
|
748
|
-
}
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
.ant-tabs-tab:not(.ant-tabs-tab-active) {
|
|
752
|
-
border: 1px solid #d9d9d9 !important;
|
|
753
|
-
.anticon-close {
|
|
754
|
-
font-size: 12px;
|
|
755
|
-
|
|
756
|
-
svg {
|
|
757
|
-
width: 0.6em;
|
|
758
|
-
}
|
|
759
|
-
}
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
&__top{
|
|
763
|
-
.dt-reuse-tabs{
|
|
764
|
-
border-bottom: none;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
.ant-tabs-extra-content{
|
|
768
|
-
display: flex;
|
|
769
|
-
span{
|
|
770
|
-
height: 28px;
|
|
771
|
-
line-height: 28px;
|
|
772
|
-
border: 1px solid #d9d9d9;
|
|
773
|
-
border-left: none;
|
|
774
|
-
&:hover{
|
|
775
|
-
background: rgba(0,0,0,0.03);
|
|
776
|
-
}
|
|
777
|
-
}
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
.ant-tabs-nav-more{
|
|
781
|
-
height: 28px;
|
|
782
|
-
border: 1px solid #d9d9d9 !important;
|
|
783
|
-
&:hover{
|
|
784
|
-
background: rgba(0,0,0,0.03);
|
|
785
|
-
}
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
&--hide-close {
|
|
791
|
-
.ant-tabs-tab-remove {
|
|
792
|
-
opacity: 0 !important;
|
|
793
|
-
}
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
&__dropdown .ant-dropdown-content li > span{
|
|
797
|
-
display: flex;
|
|
798
|
-
padding-right: 3px;
|
|
799
|
-
}
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
.ant-message-custom-content{
|
|
803
|
-
display: flex;
|
|
804
|
-
align-items: center;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
.text-2xl{
|
|
808
|
-
font-size: 1.5rem;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
.text-xl{
|
|
812
|
-
font-size: 1.25rem;
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
.text-base{
|
|
816
|
-
font-size: 1rem;
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
.text-sm{
|
|
820
|
-
font-size: 0.875rem;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
.ant-modal-confirm-btns {
|
|
824
|
-
display: flex;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.dt-message-icon{
|
|
828
|
-
font-size: 24px;
|
|
829
|
-
float: left;
|
|
830
|
-
height: 24px;
|
|
831
|
-
line-height: 24px;
|
|
832
|
-
padding-right: 10px;
|
|
833
|
-
&.warning{
|
|
834
|
-
color: #faad14;
|
|
835
|
-
}
|
|
836
|
-
&.success{
|
|
837
|
-
color: #52c41a;
|
|
838
|
-
}
|
|
839
|
-
&.error{
|
|
840
|
-
color: #ed6f6f;
|
|
841
|
-
}
|
|
842
|
-
&.info{
|
|
843
|
-
color: #1890ff;
|
|
844
|
-
}
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.ant-modal-confirm-body .ant-modal-confirm-content{
|
|
848
|
-
color: #909399;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
.ant-tabs-dropdown-menu-title-content{
|
|
852
|
-
display: flex;
|
|
853
|
-
justify-content: space-between;
|
|
854
|
-
font-size: 13px;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.dt-lock-page{
|
|
858
|
-
bottom: 20vh;
|
|
859
|
-
left: 50vw;
|
|
860
|
-
height: 500px;
|
|
861
|
-
width: 300px;
|
|
862
|
-
transform: translateX(-50%);
|
|
863
|
-
&>div:first-of-type{
|
|
864
|
-
top: 20%;
|
|
865
|
-
width: 300px;
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
&>div:nth-of-type(2) {
|
|
869
|
-
width: 300px;
|
|
870
|
-
height: 400px;
|
|
871
|
-
filter: contrast(15) hue-rotate(0);
|
|
872
|
-
animation: hueRotate 10s infinite linear;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.circle{
|
|
876
|
-
width: 300px;
|
|
877
|
-
height: 300px;
|
|
878
|
-
filter: blur(8px);
|
|
879
|
-
|
|
880
|
-
&::after {
|
|
881
|
-
position: absolute;
|
|
882
|
-
top: 40%;
|
|
883
|
-
left: 50%;
|
|
884
|
-
width: 200px;
|
|
885
|
-
height: 200px;
|
|
886
|
-
background-color: #00ff6f;
|
|
887
|
-
border-radius: 42% 38% 62% 49% / 45%;
|
|
888
|
-
content: '';
|
|
889
|
-
transform: translate(-50%, -50%) rotate(0);
|
|
890
|
-
animation: circleRotate 10s infinite linear;
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
&::before {
|
|
894
|
-
position: absolute;
|
|
895
|
-
top: 40%;
|
|
896
|
-
left: 50%;
|
|
897
|
-
z-index: 10;
|
|
898
|
-
width: 176px;
|
|
899
|
-
height: 176px;
|
|
900
|
-
background-color: #000;
|
|
901
|
-
border-radius: 50%;
|
|
902
|
-
content: '';
|
|
903
|
-
transform: translate(-50%, -50%);
|
|
904
|
-
}
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
.bubbles{
|
|
908
|
-
width: 100px;
|
|
909
|
-
height: 40px;
|
|
910
|
-
background-color: #00ff6f;
|
|
911
|
-
border-radius: 100px 100px 0 0;
|
|
912
|
-
filter: blur(5px);
|
|
913
|
-
transform: translate(-50%, 0);
|
|
914
|
-
|
|
915
|
-
li {
|
|
916
|
-
position: absolute;
|
|
917
|
-
background: #00ff6f;
|
|
918
|
-
border-radius: 50%;
|
|
919
|
-
}
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.charging{
|
|
923
|
-
font-size: 20px;
|
|
924
|
-
text-align: center;
|
|
925
|
-
}
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
.lockscreen{
|
|
929
|
-
font-size: 34px;
|
|
930
|
-
|
|
931
|
-
.local-time{
|
|
932
|
-
bottom: 60px;
|
|
933
|
-
left: 60px;
|
|
934
|
-
font-family: helvetica;
|
|
935
|
-
|
|
936
|
-
.time {
|
|
937
|
-
font-size: 70px;
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
.date {
|
|
941
|
-
font-size: 40px;
|
|
942
|
-
}
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
.computer-status{
|
|
946
|
-
bottom: 60px;
|
|
947
|
-
right: 60px;
|
|
948
|
-
font-size: 24px;
|
|
949
|
-
|
|
950
|
-
.network {
|
|
951
|
-
position: relative;
|
|
952
|
-
|
|
953
|
-
&.offline::before {
|
|
954
|
-
content: '';
|
|
955
|
-
position: absolute;
|
|
956
|
-
left: 50%;
|
|
957
|
-
top: 50%;
|
|
958
|
-
width: 2px;
|
|
959
|
-
height: 28px;
|
|
960
|
-
transform: translate(-50%, -50%) rotate(45deg);
|
|
961
|
-
background-color: red;
|
|
962
|
-
z-index: 10;
|
|
963
|
-
}
|
|
964
|
-
}
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
.login-box{
|
|
968
|
-
font-size: 14px;
|
|
969
|
-
text-align: center;
|
|
970
|
-
img{
|
|
971
|
-
width: 100px;
|
|
972
|
-
height: 100px;
|
|
973
|
-
border-radius: 50%;
|
|
974
|
-
margin: 10px auto;
|
|
975
|
-
border: 3px solid rgba(255,255,255,0.8);
|
|
976
|
-
}
|
|
977
|
-
}
|
|
978
|
-
}
|
|
979
|
-
|
|
980
|
-
@keyframes slideLeft {
|
|
981
|
-
from {
|
|
982
|
-
transform: translateX(-100%);
|
|
983
|
-
}
|
|
984
|
-
to{
|
|
985
|
-
transform: translateX(0);
|
|
986
|
-
}
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
@keyframes circleRotate {
|
|
990
|
-
50% {
|
|
991
|
-
border-radius: 45% / 42% 38% 58% 49%;
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
100% {
|
|
995
|
-
transform: translate(-50%, -50%) rotate(720deg);
|
|
996
|
-
}
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
@keyframes hueRotate {
|
|
1000
|
-
100% {
|
|
1001
|
-
filter: contrast(15) hue-rotate(360deg);
|
|
1002
|
-
}
|
|
1003
|
-
}
|