@aplus-frontend/ui 0.6.0-beta.2 → 0.6.0-beta.21
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/es/index.mjs +307 -289
- package/es/src/ap-action/group/index.vue.d.ts +1 -1
- package/es/src/ap-action/item-dropdown/index.vue.d.ts +1 -1
- package/es/src/ap-descriptions/ap-descriptions.vue.mjs +9 -8
- package/es/src/ap-descriptions/help-message/index.vue2.mjs +1 -1
- package/es/src/ap-drawer/ApDrawer.vue.d.ts +29 -0
- package/es/src/ap-drawer/ApDrawer.vue.mjs +91 -0
- package/es/src/ap-drawer/ApDrawer.vue2.mjs +4 -0
- package/es/src/ap-drawer/components/ApDrawerClose.vue.d.ts +8 -0
- package/es/src/ap-drawer/components/ApDrawerClose.vue.mjs +25 -0
- package/es/src/ap-drawer/components/ApDrawerClose.vue2.mjs +4 -0
- package/es/src/ap-drawer/index.d.ts +3 -7
- package/es/src/ap-drawer/index.mjs +10 -5
- package/es/src/ap-drawer/interface.d.ts +4 -0
- package/es/src/ap-drawer/style/css.d.ts +0 -1
- package/es/src/ap-drawer/style/css.js +1 -1
- package/es/src/ap-drawer/style/index.d.ts +0 -1
- package/es/src/ap-drawer/style/index.js +1 -1
- package/es/src/ap-drawer/utils/createDrawer.mjs +36 -31
- package/es/src/ap-field/date/helper.mjs +12 -12
- package/es/src/ap-field/date/index.vue.d.ts +1 -1
- package/es/src/ap-field/date-range/index.vue.d.ts +1 -1
- package/es/src/ap-field/date-range/index.vue.mjs +8 -7
- package/es/src/ap-field/hooks/use-date-timezone.mjs +17 -8
- package/es/src/ap-field/number/index.vue.d.ts +3 -5
- package/es/src/ap-field/radio/index.vue.d.ts +2 -4
- package/es/src/ap-field/rate/index.vue.d.ts +3 -5
- package/es/src/ap-field/select/index.vue.d.ts +4 -7
- package/es/src/ap-field/slider/index.vue.d.ts +2 -4
- package/es/src/ap-field/text/index.vue2.mjs +42 -44
- package/es/src/ap-field/text/password.vue.mjs +15 -17
- package/es/src/ap-field/text-area/index.vue.d.ts +2 -2
- package/es/src/ap-field/tree-select/index.vue.d.ts +1 -1
- package/es/src/ap-field/tree-select/index.vue.mjs +31 -30
- package/es/src/ap-form/ap-form.vue2.mjs +89 -77
- package/es/src/ap-form/dependency/index.vue.mjs +29 -23
- package/es/src/ap-form/drawer-form/index.vue.d.ts +9 -7
- package/es/src/ap-form/drawer-form/index.vue.mjs +58 -49
- package/es/src/ap-form/interface.d.ts +13 -5
- package/es/src/ap-form/item/index.vue.d.ts +6 -11
- package/es/src/ap-form/item/index.vue.mjs +43 -39
- package/es/src/ap-form/items/number/index.vue.d.ts +8 -8
- package/es/src/ap-form/items/select/index.vue.d.ts +8 -8
- package/es/src/ap-form/items/select/index.vue.mjs +12 -14
- package/es/src/ap-form/items/text/index.vue.d.ts +2 -2
- package/es/src/ap-form/items/text/password.vue.d.ts +2 -2
- package/es/src/ap-form/items/text/password.vue.mjs +9 -9
- package/es/src/ap-form/items/text-area/index.vue.d.ts +5 -5
- package/es/src/ap-form/items/tree-select/index.vue.d.ts +8 -8
- package/es/src/ap-form/items/tree-select/index.vue.mjs +12 -14
- package/es/src/ap-form/modal-form/index.vue.d.ts +9 -7
- package/es/src/ap-form/modal-form/index.vue.mjs +64 -55
- package/es/src/ap-form/provider/index.vue.mjs +6 -5
- package/es/src/ap-form/render/item.vue.d.ts +1 -1
- package/es/src/ap-form/search-form/components/popover-filter.vue.d.ts +131 -2
- package/es/src/ap-form/search-form/components/popover-filter.vue2.mjs +40 -36
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue2.mjs +88 -69
- package/es/src/ap-form/search-form/hooks/use-count-per-row.mjs +33 -13
- package/es/src/ap-form/search-form/index.vue.d.ts +2 -2
- package/es/src/ap-form/search-form/index.vue.mjs +99 -97
- package/es/src/ap-form/set/index.vue.mjs +7 -6
- package/es/src/ap-grid/constants.d.ts +3 -3
- package/es/src/ap-grid/constants.mjs +9 -9
- package/es/src/ap-grid/editable/form-item.vue.mjs +97 -83
- package/es/src/ap-grid/editable/index.vue.mjs +100 -86
- package/es/src/ap-grid/hooks/use-editable-columns.mjs +17 -17
- package/es/src/ap-grid/hooks/use-inner-params.d.ts +2 -1
- package/es/src/ap-grid/hooks/use-inner-params.mjs +24 -35
- package/es/src/ap-grid/hooks/use-render-columns.mjs +8 -8
- package/es/src/ap-grid/hooks/use-row-selection.d.ts +100 -0
- package/es/src/ap-grid/hooks/use-row-selection.mjs +122 -0
- package/es/src/ap-grid/index.vue.mjs +291 -224
- package/es/src/ap-grid/interface.d.ts +31 -2
- package/es/src/ap-grid/utils/table.mjs +31 -31
- package/es/src/ap-info-layout/ap-info-layout-admin/ApInfoLayoutAdmin.vue.d.ts +1 -1
- package/es/src/ap-list/index.vue.d.ts +2 -9
- package/es/src/ap-list/index.vue.mjs +116 -106
- package/es/src/ap-list/interface.d.ts +20 -0
- package/es/src/ap-table/ap-table.vue.d.ts +10 -2
- package/es/src/ap-table/ap-table.vue2.mjs +78 -70
- package/es/src/ap-table/components/setting/modal/index.vue2.mjs +42 -44
- package/es/src/ap-table/components/setting/tree-select/index.vue2.mjs +1 -1
- package/es/src/ap-table/constants.d.ts +52 -52
- package/es/src/ap-table/hooks/use-table-paging-ng.d.ts +23 -4
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +152 -124
- package/es/src/ap-table/interface.d.ts +14 -1
- package/es/src/ap-table/utils.d.ts +35 -35
- package/es/src/ap-tag/ap-tag-group.vue.mjs +32 -28
- package/es/src/business/ap-card/ApCard.vue2.mjs +1 -1
- package/es/src/business/ap-copy/ApCopy.d.ts +52 -0
- package/es/src/business/ap-copy/ApCopy.mjs +79 -0
- package/es/src/business/ap-copy/constans.d.ts +24 -0
- package/es/src/business/ap-copy/constans.mjs +25 -0
- package/es/src/business/ap-copy/index.d.ts +102 -0
- package/es/src/business/ap-copy/index.mjs +7 -0
- package/es/src/business/ap-copy/interface.d.ts +8 -0
- package/es/src/business/ap-copy/interface.mjs +1 -0
- package/es/src/business/ap-copy/style/css.d.ts +0 -0
- package/es/src/business/ap-copy/style/css.js +1 -0
- package/es/src/business/ap-copy/style/index.d.ts +0 -0
- package/es/src/business/ap-copy/style/index.js +1 -0
- package/es/src/business/ap-expand-alert/ApExpandAlert.vue.d.ts +3 -3
- package/es/src/business/ap-expand-alert/ApExpandAlert.vue2.mjs +94 -73
- package/es/src/business/ap-expand-alert/index.d.ts +4 -4
- package/es/src/business/ap-export-group/ApExportGroup.vue2.mjs +18 -17
- package/es/src/business/ap-input-radio/ApInputRadio.vue2.mjs +27 -25
- package/es/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
- package/es/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
- package/es/src/business/ap-keep-alive/cacher/lru-cacher.mjs +43 -0
- package/es/src/business/ap-keep-alive/hook.d.ts +10 -0
- package/es/src/business/ap-keep-alive/hook.mjs +33 -0
- package/es/src/business/ap-keep-alive/index.d.ts +107 -0
- package/es/src/business/ap-keep-alive/index.mjs +13 -0
- package/es/src/business/ap-keep-alive/interface.d.ts +36 -0
- package/es/src/business/ap-keep-alive/interface.mjs +54 -0
- package/es/src/business/ap-keep-alive/keep-alive.d.ts +54 -0
- package/es/src/business/ap-keep-alive/keep-alive.mjs +154 -0
- package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
- package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.mjs +21 -0
- package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
- package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.mjs +27 -0
- package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
- package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
- package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
- package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.mjs +12 -0
- package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
- package/es/src/business/ap-keep-alive/keeper/index.mjs +28 -0
- package/es/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/step-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/tab-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/utils.d.ts +22 -0
- package/es/src/business/ap-keep-alive/utils.mjs +41 -0
- package/es/src/business/ap-label/ApLabel.d.ts +1 -1
- package/es/src/business/ap-label/constans.mjs +1 -1
- package/es/src/business/ap-label/group/ApLabelGroup.mjs +15 -16
- package/es/src/business/ap-label/index.d.ts +3 -3
- package/es/src/business/ap-label/interface.d.ts +2 -3
- package/es/src/business/ap-ladder/ApLadder.d.ts +1 -1
- package/es/src/business/ap-ladder/index.d.ts +3 -3
- package/es/src/business/ap-product-info/ApProductInfo.d.ts +9 -0
- package/es/src/business/ap-product-info/ApProductInfo.mjs +53 -54
- package/es/src/business/ap-product-info/constans.d.ts +4 -0
- package/es/src/business/ap-product-info/constans.mjs +4 -0
- package/es/src/business/ap-product-info/index.d.ts +15 -0
- package/es/src/business/ap-product-info/interface.d.ts +1 -0
- package/es/src/business/ap-radio-group/ap-radio-group.vue.d.ts +19 -0
- package/es/src/business/ap-radio-group/ap-radio-group.vue.mjs +4 -0
- package/es/src/business/ap-radio-group/ap-radio-group.vue2.mjs +60 -0
- package/es/src/business/ap-radio-group/index.d.ts +60 -0
- package/es/src/business/ap-radio-group/index.mjs +8 -0
- package/es/src/business/ap-radio-group/interface.d.ts +11 -0
- package/es/src/business/ap-radio-group/interface.mjs +1 -0
- package/es/src/business/ap-radio-group/style/css.d.ts +0 -0
- package/es/src/business/ap-radio-group/style/css.js +1 -0
- package/es/src/business/ap-radio-group/style/index.d.ts +0 -0
- package/es/src/business/ap-radio-group/style/index.js +1 -0
- package/es/src/business/ap-status/interface.d.ts +1 -1
- package/es/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/index.d.ts +32 -5
- package/es/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
- package/es/src/business/ap-table-modal/table-modal.vue2.mjs +43 -42
- package/es/src/business/ap-view/ap-view.vue.d.ts +5 -1
- package/es/src/business/ap-view/ap-view.vue2.mjs +162 -129
- package/es/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
- package/es/src/business/ap-view/components/main-button-content.vue2.mjs +55 -51
- package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
- package/es/src/business/ap-view/components/menu-list-content.vue2.mjs +79 -73
- package/es/src/business/ap-view/hooks/use-view-provide.d.ts +1 -0
- package/es/src/business/ap-view/index.d.ts +15 -3
- package/es/src/business/ap-view/interface.d.ts +11 -0
- package/es/src/business/batch-input-group/form-item.vue.d.ts +1 -1
- package/es/src/business/batch-input-group/form-item.vue.mjs +14 -13
- package/es/src/business/batch-input-group/index.vue.d.ts +1 -1
- package/es/src/business/batch-input-group/index.vue.mjs +10 -9
- package/es/src/business/hooks/usePageListApGrid.mjs +33 -28
- package/es/src/business/hooks/usePageListApTable.d.ts +4 -1
- package/es/src/business/index.d.ts +3 -0
- package/es/src/business/index.mjs +36 -30
- package/es/src/check-card/group.vue.d.ts +1 -1
- package/es/src/components.d.ts +1 -0
- package/es/src/config-provider/config-provider-props.d.ts +0 -5
- package/es/src/config-provider/config-provider-props.mjs +0 -4
- package/es/src/config-provider/config-provider.d.ts +0 -138
- package/es/src/config-provider/config-provider.mjs +21 -26
- package/es/src/config-provider/hooks/use-global-config.d.ts +0 -5
- package/es/src/config-provider/index.d.ts +0 -652
- package/es/src/editable-table/form-item.vue.d.ts +2 -14
- package/es/src/editable-table/form-item.vue.mjs +86 -78
- package/es/src/editable-table/index.vue.d.ts +2 -16
- package/es/src/editable-table/index.vue.mjs +91 -83
- package/es/src/editable-table/interface.d.ts +7 -0
- package/es/src/full-screen/interface.d.ts +5 -6
- package/es/src/index.mjs +269 -253
- package/es/src/locale/lang/en.mjs +4 -0
- package/es/src/locale/lang/zh-cn.mjs +4 -0
- package/es/src/mask/index.vue.mjs +21 -20
- package/es/src/path-map.mjs +3 -1
- package/es/src/resize-observer/interface.d.ts +2 -3
- package/es/src/scroll-bar/interface.d.ts +7 -7
- package/es/src/scroll-view/interface.d.ts +2 -3
- package/es/src/splitter/SplitBar.vue2.mjs +1 -0
- package/es/src/splitter/Splitter.vue2.mjs +1 -0
- package/es/src/tests/mock-resize-observer.d.ts +2 -0
- package/es/src/tests/utils.d.ts +8 -0
- package/es/src/text/group.vue.mjs +7 -6
- package/es/src/text/index.vue.mjs +20 -19
- package/es/src/version.d.ts +2 -0
- package/es/src/version.mjs +4 -0
- package/es/src/work-order-modal/createWorkOrder.d.ts +2 -1
- package/es/src/work-order-modal/createWorkOrder.mjs +19 -15
- package/es/src/work-order-modal/interfaces.d.ts +4 -0
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
- package/es/src/work-order-modal/work-order-modal.vue.mjs +120 -105
- package/es/test/setup.d.ts +5 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-action/group/index.vue.d.ts +1 -1
- package/lib/src/ap-action/item-dropdown/index.vue.d.ts +1 -1
- package/lib/src/ap-descriptions/ap-descriptions.vue.js +1 -1
- package/lib/src/ap-descriptions/help-message/index.vue2.js +1 -1
- package/lib/src/ap-drawer/ApDrawer.vue.d.ts +29 -0
- package/lib/src/ap-drawer/ApDrawer.vue.js +1 -0
- package/lib/src/ap-drawer/ApDrawer.vue2.js +1 -0
- package/lib/src/ap-drawer/components/ApDrawerClose.vue.d.ts +8 -0
- package/lib/src/ap-drawer/components/ApDrawerClose.vue.js +1 -0
- package/lib/src/ap-drawer/components/ApDrawerClose.vue2.js +1 -0
- package/lib/src/ap-drawer/index.d.ts +3 -7
- package/lib/src/ap-drawer/index.js +1 -1
- package/lib/src/ap-drawer/interface.d.ts +4 -0
- package/lib/src/ap-drawer/style/css.cjs +1 -1
- package/lib/src/ap-drawer/style/css.d.ts +0 -1
- package/lib/src/ap-drawer/style/index.cjs +1 -1
- package/lib/src/ap-drawer/style/index.d.ts +0 -1
- package/lib/src/ap-drawer/utils/createDrawer.js +1 -1
- package/lib/src/ap-field/date/helper.js +1 -1
- package/lib/src/ap-field/date/index.vue.d.ts +1 -1
- package/lib/src/ap-field/date-range/index.vue.d.ts +1 -1
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/hooks/use-date-timezone.js +1 -1
- package/lib/src/ap-field/number/index.vue.d.ts +3 -5
- package/lib/src/ap-field/radio/index.vue.d.ts +2 -4
- package/lib/src/ap-field/rate/index.vue.d.ts +3 -5
- package/lib/src/ap-field/select/index.vue.d.ts +4 -7
- package/lib/src/ap-field/slider/index.vue.d.ts +2 -4
- package/lib/src/ap-field/text/index.vue2.js +1 -1
- package/lib/src/ap-field/text/password.vue.js +1 -1
- package/lib/src/ap-field/text-area/index.vue.d.ts +2 -2
- package/lib/src/ap-field/tree-select/index.vue.d.ts +1 -1
- package/lib/src/ap-field/tree-select/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form.vue2.js +1 -1
- package/lib/src/ap-form/dependency/index.vue.js +1 -1
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +9 -7
- package/lib/src/ap-form/drawer-form/index.vue.js +1 -1
- package/lib/src/ap-form/interface.d.ts +13 -5
- package/lib/src/ap-form/item/index.vue.d.ts +6 -11
- package/lib/src/ap-form/item/index.vue.js +1 -1
- package/lib/src/ap-form/items/number/index.vue.d.ts +8 -8
- package/lib/src/ap-form/items/select/index.vue.d.ts +8 -8
- package/lib/src/ap-form/items/select/index.vue.js +1 -1
- package/lib/src/ap-form/items/text/index.vue.d.ts +2 -2
- package/lib/src/ap-form/items/text/password.vue.d.ts +2 -2
- package/lib/src/ap-form/items/text/password.vue.js +1 -1
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +5 -5
- package/lib/src/ap-form/items/tree-select/index.vue.d.ts +8 -8
- package/lib/src/ap-form/items/tree-select/index.vue.js +1 -1
- package/lib/src/ap-form/modal-form/index.vue.d.ts +9 -7
- package/lib/src/ap-form/modal-form/index.vue.js +1 -1
- package/lib/src/ap-form/provider/index.vue.js +1 -1
- package/lib/src/ap-form/render/item.vue.d.ts +1 -1
- package/lib/src/ap-form/search-form/components/popover-filter.vue.d.ts +131 -2
- package/lib/src/ap-form/search-form/components/popover-filter.vue2.js +1 -1
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue2.js +1 -1
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.js +1 -1
- package/lib/src/ap-form/search-form/index.vue.d.ts +2 -2
- package/lib/src/ap-form/search-form/index.vue.js +1 -1
- package/lib/src/ap-form/set/index.vue.js +1 -1
- package/lib/src/ap-grid/constants.d.ts +3 -3
- package/lib/src/ap-grid/constants.js +1 -1
- package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
- package/lib/src/ap-grid/editable/index.vue.js +1 -1
- package/lib/src/ap-grid/hooks/use-editable-columns.js +1 -1
- package/lib/src/ap-grid/hooks/use-inner-params.d.ts +2 -1
- package/lib/src/ap-grid/hooks/use-inner-params.js +1 -1
- package/lib/src/ap-grid/hooks/use-render-columns.js +1 -1
- package/lib/src/ap-grid/hooks/use-row-selection.d.ts +100 -0
- package/lib/src/ap-grid/hooks/use-row-selection.js +1 -0
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-grid/interface.d.ts +31 -2
- package/lib/src/ap-grid/utils/table.js +1 -1
- package/lib/src/ap-info-layout/ap-info-layout-admin/ApInfoLayoutAdmin.vue.d.ts +1 -1
- package/lib/src/ap-list/index.vue.d.ts +2 -9
- package/lib/src/ap-list/index.vue.js +1 -1
- package/lib/src/ap-list/interface.d.ts +20 -0
- package/lib/src/ap-table/ap-table.vue.d.ts +10 -2
- package/lib/src/ap-table/ap-table.vue2.js +1 -1
- package/lib/src/ap-table/components/setting/modal/index.vue2.js +1 -1
- package/lib/src/ap-table/components/setting/tree-select/index.vue2.js +1 -1
- package/lib/src/ap-table/constants.d.ts +52 -52
- package/lib/src/ap-table/hooks/use-table-paging-ng.d.ts +23 -4
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/ap-table/interface.d.ts +14 -1
- package/lib/src/ap-table/utils.d.ts +35 -35
- package/lib/src/ap-tag/ap-tag-group.vue.js +1 -1
- package/lib/src/business/ap-card/ApCard.vue2.js +1 -1
- package/lib/src/business/ap-copy/ApCopy.d.ts +52 -0
- package/lib/src/business/ap-copy/ApCopy.js +1 -0
- package/lib/src/business/ap-copy/constans.d.ts +24 -0
- package/lib/src/business/ap-copy/constans.js +1 -0
- package/lib/src/business/ap-copy/index.d.ts +102 -0
- package/lib/src/business/ap-copy/index.js +1 -0
- package/lib/src/business/ap-copy/interface.d.ts +8 -0
- package/lib/src/business/ap-copy/interface.js +1 -0
- package/lib/src/business/ap-copy/style/css.cjs +1 -0
- package/lib/src/business/ap-copy/style/css.d.ts +0 -0
- package/lib/src/business/ap-copy/style/index.cjs +1 -0
- package/lib/src/business/ap-copy/style/index.d.ts +0 -0
- package/lib/src/business/ap-expand-alert/ApExpandAlert.vue.d.ts +3 -3
- package/lib/src/business/ap-expand-alert/ApExpandAlert.vue2.js +1 -1
- package/lib/src/business/ap-expand-alert/index.d.ts +4 -4
- package/lib/src/business/ap-export-group/ApExportGroup.vue2.js +1 -1
- package/lib/src/business/ap-input-radio/ApInputRadio.vue2.js +1 -1
- package/lib/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
- package/lib/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
- package/lib/src/business/ap-keep-alive/cacher/lru-cacher.js +1 -0
- package/lib/src/business/ap-keep-alive/hook.d.ts +10 -0
- package/lib/src/business/ap-keep-alive/hook.js +1 -0
- package/lib/src/business/ap-keep-alive/index.d.ts +107 -0
- package/lib/src/business/ap-keep-alive/index.js +1 -0
- package/lib/src/business/ap-keep-alive/interface.d.ts +36 -0
- package/lib/src/business/ap-keep-alive/interface.js +1 -0
- package/lib/src/business/ap-keep-alive/keep-alive.d.ts +54 -0
- package/lib/src/business/ap-keep-alive/keep-alive.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
- package/lib/src/business/ap-keep-alive/keeper/index.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/step-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/tab-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/utils.d.ts +22 -0
- package/lib/src/business/ap-keep-alive/utils.js +1 -0
- package/lib/src/business/ap-label/ApLabel.d.ts +1 -1
- package/lib/src/business/ap-label/constans.js +1 -1
- package/lib/src/business/ap-label/group/ApLabelGroup.js +1 -1
- package/lib/src/business/ap-label/index.d.ts +3 -3
- package/lib/src/business/ap-label/interface.d.ts +2 -3
- package/lib/src/business/ap-ladder/ApLadder.d.ts +1 -1
- package/lib/src/business/ap-ladder/index.d.ts +3 -3
- package/lib/src/business/ap-product-info/ApProductInfo.d.ts +9 -0
- package/lib/src/business/ap-product-info/ApProductInfo.js +1 -1
- package/lib/src/business/ap-product-info/constans.d.ts +4 -0
- package/lib/src/business/ap-product-info/constans.js +1 -1
- package/lib/src/business/ap-product-info/index.d.ts +15 -0
- package/lib/src/business/ap-product-info/interface.d.ts +1 -0
- package/lib/src/business/ap-radio-group/ap-radio-group.vue.d.ts +19 -0
- package/lib/src/business/ap-radio-group/ap-radio-group.vue.js +1 -0
- package/lib/src/business/ap-radio-group/ap-radio-group.vue2.js +1 -0
- package/lib/src/business/ap-radio-group/index.d.ts +60 -0
- package/lib/src/business/ap-radio-group/index.js +1 -0
- package/lib/src/business/ap-radio-group/interface.d.ts +11 -0
- package/lib/src/business/ap-radio-group/interface.js +1 -0
- package/lib/src/business/ap-radio-group/style/css.cjs +1 -0
- package/lib/src/business/ap-radio-group/style/css.d.ts +0 -0
- package/lib/src/business/ap-radio-group/style/index.cjs +1 -0
- package/lib/src/business/ap-radio-group/style/index.d.ts +0 -0
- package/lib/src/business/ap-status/interface.d.ts +1 -1
- package/lib/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/index.d.ts +32 -5
- package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
- package/lib/src/business/ap-table-modal/table-modal.vue2.js +1 -1
- package/lib/src/business/ap-view/ap-view.vue.d.ts +5 -1
- package/lib/src/business/ap-view/ap-view.vue2.js +1 -1
- package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
- package/lib/src/business/ap-view/components/main-button-content.vue2.js +1 -1
- package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
- package/lib/src/business/ap-view/components/menu-list-content.vue2.js +1 -1
- package/lib/src/business/ap-view/hooks/use-view-provide.d.ts +1 -0
- package/lib/src/business/ap-view/index.d.ts +15 -3
- package/lib/src/business/ap-view/interface.d.ts +11 -0
- package/lib/src/business/batch-input-group/form-item.vue.d.ts +1 -1
- package/lib/src/business/batch-input-group/form-item.vue.js +1 -1
- package/lib/src/business/batch-input-group/index.vue.d.ts +1 -1
- package/lib/src/business/batch-input-group/index.vue.js +2 -2
- package/lib/src/business/hooks/usePageListApGrid.js +1 -1
- package/lib/src/business/hooks/usePageListApTable.d.ts +4 -1
- package/lib/src/business/index.d.ts +3 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/check-card/group.vue.d.ts +1 -1
- package/lib/src/components.d.ts +1 -0
- package/lib/src/config-provider/config-provider-props.d.ts +0 -5
- package/lib/src/config-provider/config-provider-props.js +1 -1
- package/lib/src/config-provider/config-provider.d.ts +0 -138
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/hooks/use-global-config.d.ts +0 -5
- package/lib/src/config-provider/index.d.ts +0 -652
- package/lib/src/editable-table/form-item.vue.d.ts +2 -14
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/editable-table/index.vue.d.ts +2 -16
- package/lib/src/editable-table/index.vue.js +1 -1
- package/lib/src/editable-table/interface.d.ts +7 -0
- package/lib/src/full-screen/interface.d.ts +5 -6
- package/lib/src/index.js +1 -1
- package/lib/src/locale/lang/en.js +1 -1
- package/lib/src/locale/lang/zh-cn.js +1 -1
- package/lib/src/mask/index.vue.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/lib/src/resize-observer/interface.d.ts +2 -3
- package/lib/src/scroll-bar/interface.d.ts +7 -7
- package/lib/src/scroll-view/interface.d.ts +2 -3
- package/lib/src/splitter/SplitBar.vue2.js +1 -1
- package/lib/src/splitter/Splitter.vue2.js +1 -1
- package/lib/src/tests/mock-resize-observer.d.ts +2 -0
- package/lib/src/tests/utils.d.ts +8 -0
- package/lib/src/text/group.vue.js +1 -1
- package/lib/src/text/index.vue.js +1 -1
- package/lib/src/version.d.ts +2 -0
- package/lib/src/version.js +1 -0
- package/lib/src/work-order-modal/createWorkOrder.d.ts +2 -1
- package/lib/src/work-order-modal/createWorkOrder.js +1 -1
- package/lib/src/work-order-modal/interfaces.d.ts +4 -0
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
- package/lib/src/work-order-modal/work-order-modal.vue.js +1 -1
- package/lib/test/setup.d.ts +5 -0
- package/package.json +18 -14
- package/theme/antd-global-overwrite/admin/alert.css +6 -19
- package/theme/antd-global-overwrite/admin/alert.less +25 -36
- package/theme/antd-global-overwrite/admin/button.css +13 -13
- package/theme/antd-global-overwrite/admin/button.less +24 -24
- package/theme/antd-global-overwrite/admin/field.css +39 -0
- package/theme/antd-global-overwrite/admin/field.less +39 -0
- package/theme/antd-global-overwrite/admin/index.css +89 -646
- package/theme/antd-global-overwrite/admin/index.less +2 -3
- package/theme/antd-global-overwrite/admin/message.css +2 -9
- package/theme/antd-global-overwrite/admin/message.less +2 -10
- package/theme/antd-global-overwrite/admin/modal.css +15 -48
- package/theme/antd-global-overwrite/admin/modal.less +13 -54
- package/theme/antd-global-overwrite/admin/table.css +11 -251
- package/theme/antd-global-overwrite/admin/table.less +4 -132
- package/theme/antd-global-overwrite/admin/tooltip.css +3 -0
- package/theme/antd-global-overwrite/admin/tooltip.less +3 -0
- package/theme/antd-global-overwrite/aplus/alert.css +9 -19
- package/theme/antd-global-overwrite/aplus/alert.less +27 -34
- package/theme/antd-global-overwrite/aplus/button.css +20 -20
- package/theme/antd-global-overwrite/aplus/button.less +24 -24
- package/theme/antd-global-overwrite/aplus/field.css +33 -0
- package/theme/antd-global-overwrite/aplus/field.less +32 -0
- package/theme/antd-global-overwrite/aplus/index.css +91 -690
- package/theme/antd-global-overwrite/aplus/index.less +1 -3
- package/theme/antd-global-overwrite/aplus/message.css +2 -9
- package/theme/antd-global-overwrite/aplus/message.less +2 -10
- package/theme/antd-global-overwrite/aplus/modal.css +15 -49
- package/theme/antd-global-overwrite/aplus/modal.less +14 -58
- package/theme/antd-global-overwrite/aplus/table.css +11 -236
- package/theme/antd-global-overwrite/aplus/table.less +4 -134
- package/theme/antd-global-overwrite/aplus/tooltip.css +3 -0
- package/theme/antd-global-overwrite/aplus/tooltip.less +3 -0
- package/theme/ap-action/item-dropdown.css +19 -1
- package/theme/ap-action/item.css +37 -8
- package/theme/ap-action/item.less +18 -6
- package/theme/ap-appendix/ap-appendix.css +27 -9
- package/theme/ap-appendix/ap-appendix.less +8 -8
- package/theme/ap-attachment/ap-attachment.css +21 -2
- package/theme/ap-attachment/ap-attachment.less +2 -2
- package/theme/ap-batch-action/ap-batch-action.css +22 -4
- package/theme/ap-batch-action/ap-batch-action.less +3 -3
- package/theme/ap-button/ap-button.css +19 -1
- package/theme/ap-card/ap-card.css +20 -2
- package/theme/ap-card/ap-card.less +1 -1
- package/theme/ap-copy/ap-copy.css +96 -0
- package/theme/ap-copy/ap-copy.less +61 -0
- package/theme/ap-descriptions/ap-descriptions.css +25 -5
- package/theme/ap-descriptions/ap-descriptions.less +6 -4
- package/theme/ap-download/ap-download.css +19 -1
- package/theme/ap-drawer/ap-drawer.css +75 -0
- package/theme/ap-drawer/ap-drawer.less +42 -0
- package/theme/ap-expand-alert/ap-expand-alert.css +21 -2
- package/theme/ap-expand-alert/ap-expand-alert.less +2 -1
- package/theme/ap-field/checkbox.css +19 -1
- package/theme/ap-field/index.css +19 -1
- package/theme/ap-field/number.css +19 -1
- package/theme/ap-field/radio.css +19 -1
- package/theme/ap-field/text-area.css +19 -1
- package/theme/ap-form/ap-form-item-group.css +19 -1
- package/theme/ap-form/ap-form-item.css +30 -9
- package/theme/ap-form/ap-form-item.less +15 -9
- package/theme/ap-form/drawer-form.css +19 -1
- package/theme/ap-form/index.css +51 -18
- package/theme/ap-form/item-text-group.css +19 -1
- package/theme/ap-form/item-text.css +19 -1
- package/theme/ap-form/modal-form.css +19 -1
- package/theme/ap-form/search-form-sorter.css +28 -9
- package/theme/ap-form/search-form-sorter.less +5 -4
- package/theme/ap-form/search-form.css +51 -18
- package/theme/ap-form/search-form.less +12 -1
- package/theme/ap-grid/editable.css +19 -1
- package/theme/ap-grid/index.css +118 -31
- package/theme/ap-grid/index.less +34 -5
- package/theme/ap-group-search/ap-extension-select.css +19 -1
- package/theme/ap-group-search/ap-group-search.css +19 -1
- package/theme/ap-group-search/ap-popover-select.css +19 -1
- package/theme/ap-image/ap-image.css +19 -1
- package/theme/ap-input-radio/ap-input-radio.css +19 -1
- package/theme/ap-label/ap-label.css +19 -1
- package/theme/ap-ladder/ap-ladder.css +20 -1
- package/theme/ap-ladder/ap-ladder.less +1 -0
- package/theme/ap-layout/ap-info-layout.css +19 -1
- package/theme/ap-list/index.css +19 -1
- package/theme/ap-product-info/ap-product-info.css +39 -31
- package/theme/ap-product-info/ap-product-info.less +28 -42
- package/theme/ap-radio-group/ap-radio-group.css +65 -0
- package/theme/ap-radio-group/ap-radio-group.less +25 -0
- package/theme/ap-select-layout/ap-select-layout.css +19 -1
- package/theme/ap-size-input/ap-size-input.css +19 -1
- package/theme/ap-status/ap-status.css +20 -2
- package/theme/ap-status/ap-status.less +1 -1
- package/theme/ap-summary/index.css +19 -1
- package/theme/ap-table/ap-table-index.css +19 -1
- package/theme/ap-table/ap-table-paragraph-ellipsis.css +20 -2
- package/theme/ap-table/ap-table-paragraph-ellipsis.less +1 -1
- package/theme/ap-table/ap-table.css +127 -50
- package/theme/ap-table/ap-table.less +24 -11
- package/theme/ap-table/setting/index.css +35 -13
- package/theme/ap-table/setting/modal.css +26 -5
- package/theme/ap-table/setting/modal.less +6 -3
- package/theme/ap-table/setting/select-group.css +21 -2
- package/theme/ap-table/setting/select-group.less +2 -1
- package/theme/ap-table/setting/sortable-item-meta.css +21 -3
- package/theme/ap-table/setting/sortable-item-meta.less +2 -2
- package/theme/ap-table/setting/sortable-item.css +19 -1
- package/theme/ap-table/setting/sorter.css +24 -6
- package/theme/ap-table/setting/sorter.less +4 -4
- package/theme/ap-table-modal/index.css +142 -63
- package/theme/ap-table-modal/index.less +15 -13
- package/theme/ap-tag/ap-tag-group.css +21 -3
- package/theme/ap-tag/ap-tag-group.less +2 -3
- package/theme/ap-tag/ap-tag.css +23 -5
- package/theme/ap-tag/ap-tag.less +4 -4
- package/theme/ap-title/ap-title.css +24 -4
- package/theme/ap-title/ap-title.less +5 -3
- package/theme/ap-upload/index.css +24 -6
- package/theme/ap-upload/multiple-file.css +20 -2
- package/theme/ap-upload/multiple-file.less +1 -1
- package/theme/ap-upload/picture.css +21 -3
- package/theme/ap-upload/picture.less +2 -2
- package/theme/ap-upload/single-file.css +21 -3
- package/theme/ap-upload/single-file.less +2 -2
- package/theme/ap-upload/upload.css +19 -1
- package/theme/ap-upload-single/index.css +23 -5
- package/theme/ap-upload-single/index.less +4 -4
- package/theme/ap-view/ap-view.css +26 -8
- package/theme/ap-view/ap-view.less +7 -7
- package/theme/batch-input-group/index.css +22 -3
- package/theme/batch-input-group/popover-input.css +22 -3
- package/theme/batch-input-group/popover-input.less +3 -2
- package/theme/check-card/index.css +27 -9
- package/theme/check-card/index.less +5 -5
- package/theme/editable-table/index.css +69 -25
- package/theme/full-screen/index.css +19 -1
- package/theme/index.css +439 -163
- package/theme/index.less +4 -0
- package/theme/mask/index.css +19 -1
- package/theme/mixins/config.less +1 -1
- package/theme/mixins/mixins.css +19 -1
- package/theme/mixins/mixins.less +25 -0
- package/theme/scroll-bar/index.css +19 -1
- package/theme/scroll-view/index.css +19 -1
- package/theme/splitter/index.css +24 -6
- package/theme/splitter/index.less +1 -1
- package/theme/text/group.css +19 -1
- package/theme/text/index.css +24 -6
- package/theme/text/index.less +4 -4
- package/theme/ui-mode.css +58 -0
- package/theme/ui-mode.less +107 -0
- package/theme/work-order-modal/index.css +19 -1
- package/es/src/config-provider/css-var.d.ts +0 -139
- package/es/src/config-provider/css-var.mjs +0 -278
- package/lib/src/config-provider/css-var.d.ts +0 -139
- package/lib/src/config-provider/css-var.js +0 -1
package/theme/index.css
CHANGED
|
@@ -1,13 +1,89 @@
|
|
|
1
|
+
[data-aplus-ui-mode='aplus'] {
|
|
2
|
+
--ap-border-color-base: #dee4ed;
|
|
3
|
+
--ap-hover-color-base: #66a9ff;
|
|
4
|
+
--ap-active-color-base: #66a9ff;
|
|
5
|
+
--ap-color-primary: #0070ff;
|
|
6
|
+
--ap-color-primary-disabled: #cce2ff;
|
|
7
|
+
--ap-color-link: #0070ff;
|
|
8
|
+
--ap-color-link-hover: #66a9ff;
|
|
9
|
+
--ap-color-link-disabled: #cce2ff;
|
|
10
|
+
--ap-form-bordered-shadow-color: rgba(5, 155, 255, 0.1);
|
|
11
|
+
--ap-color-success: #2ed1a3;
|
|
12
|
+
--ap-color-success-disabled: #d5f6ed;
|
|
13
|
+
--ap-color-error: #ff4d4f;
|
|
14
|
+
--ap-color-error-disabled: #ffdbdc;
|
|
15
|
+
--ap-color-warn: #ffa940;
|
|
16
|
+
--ap-color-warn-disabled: #ffeed9;
|
|
17
|
+
--ap-table-header-bg: #f2f6f9;
|
|
18
|
+
--ap-text-color-1: #526a90;
|
|
19
|
+
--ap-text-color-2: #182948;
|
|
20
|
+
--ap-text-color-3: #8896b0;
|
|
21
|
+
--ap-color-bg: #e9edf3;
|
|
22
|
+
--ap-color-bg-1: #f6f9fa;
|
|
23
|
+
--ap-color-bg-2: #f3f5f8;
|
|
24
|
+
--ap-scrollbar-thumb-color-base: #c8d1de;
|
|
25
|
+
--ap-scrollbar-thumb-color-hover: #959ca7;
|
|
26
|
+
--ap-text-color-4: #abb7cc;
|
|
27
|
+
--batch-input-group-trigger-color-disabled: rgba(24, 41, 72, 0.25);
|
|
28
|
+
--ap-radio-group-item-active-bg-color: rgba(0, 112, 255, 0.12);
|
|
29
|
+
}
|
|
30
|
+
[data-aplus-ui-mode='admin'] {
|
|
31
|
+
--ap-border-color-base: #d9d9d9;
|
|
32
|
+
--ap-hover-color-base: #85d4b0;
|
|
33
|
+
--ap-active-color-base: #85d4b0;
|
|
34
|
+
--ap-color-primary: #34b77c;
|
|
35
|
+
--ap-color-primary-disabled: #d6f1e5;
|
|
36
|
+
--ap-color-link: #1890ff;
|
|
37
|
+
--ap-color-link-hover: #5eb1ff;
|
|
38
|
+
--ap-color-link-disabled: #cce2ff;
|
|
39
|
+
--ap-form-bordered-shadow-color: rgba(11, 166, 66, 0.09);
|
|
40
|
+
--ap-color-success: #34b77c;
|
|
41
|
+
--ap-color-success-disabled: #d6f1e5;
|
|
42
|
+
--ap-color-error: #ff4d4f;
|
|
43
|
+
--ap-color-error-disabled: #ffdbdc;
|
|
44
|
+
--ap-color-warn: #faad14;
|
|
45
|
+
--ap-color-warn-disabled: #ffeed9;
|
|
46
|
+
--ap-table-header-bg: #f7f7f7;
|
|
47
|
+
--ap-text-color-1: #666666;
|
|
48
|
+
--ap-text-color-2: #333333;
|
|
49
|
+
--ap-text-color-3: #999999;
|
|
50
|
+
--ap-color-bg: #e9e9e9;
|
|
51
|
+
--ap-color-bg-1: #f6f9fa;
|
|
52
|
+
--ap-color-bg-2: #f5f5f5;
|
|
53
|
+
--ap-scrollbar-thumb-color-base: #bfbfbf;
|
|
54
|
+
--ap-scrollbar-thumb-color-hover: #787878;
|
|
55
|
+
--ap-text-color-4: #bfbfbf;
|
|
56
|
+
--batch-input-group-trigger-color-disabled: rgba(0, 0, 0, 0.25);
|
|
57
|
+
--ap-radio-group-item-active-bg-color: rgba(52, 183, 124, 0.12);
|
|
58
|
+
}
|
|
1
59
|
.reset-component {
|
|
2
60
|
box-sizing: border-box;
|
|
3
61
|
margin: 0;
|
|
4
62
|
padding: 0;
|
|
5
|
-
color:
|
|
63
|
+
color: #182948;
|
|
6
64
|
font-size: 12px;
|
|
7
65
|
font-family: inherit;
|
|
8
66
|
line-height: 1.5;
|
|
9
67
|
list-style: none;
|
|
10
68
|
}
|
|
69
|
+
.reset-scrollbar ::-webkit-scrollbar {
|
|
70
|
+
width: 10px;
|
|
71
|
+
height: 10px;
|
|
72
|
+
}
|
|
73
|
+
.reset-scrollbar ::-webkit-scrollbar-thumb {
|
|
74
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
75
|
+
background-clip: content-box;
|
|
76
|
+
border: 1px solid transparent;
|
|
77
|
+
border-radius: 4px;
|
|
78
|
+
}
|
|
79
|
+
.reset-scrollbar ::-webkit-scrollbar-track,
|
|
80
|
+
.reset-scrollbar ::-webkit-scrollbar-corner {
|
|
81
|
+
background-color: var(--ap-table-header-bg, #f2f6f9);
|
|
82
|
+
}
|
|
83
|
+
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
|
|
84
|
+
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
|
|
85
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
86
|
+
}
|
|
11
87
|
.clear-fix::before {
|
|
12
88
|
display: table;
|
|
13
89
|
content: '';
|
|
@@ -30,7 +106,7 @@
|
|
|
30
106
|
box-sizing: border-box;
|
|
31
107
|
margin: 0;
|
|
32
108
|
padding: 0;
|
|
33
|
-
color:
|
|
109
|
+
color: #182948;
|
|
34
110
|
font-size: 12px;
|
|
35
111
|
font-family: inherit;
|
|
36
112
|
line-height: 1.5;
|
|
@@ -39,19 +115,19 @@
|
|
|
39
115
|
cursor: pointer;
|
|
40
116
|
}
|
|
41
117
|
.aplus-action-item--primary {
|
|
42
|
-
color: var(--ap-
|
|
118
|
+
color: var(--ap-color-link);
|
|
43
119
|
}
|
|
44
120
|
.aplus-action-item--primary:not(.aplus-action-item--disabled):hover {
|
|
45
|
-
color: var(--ap-
|
|
121
|
+
color: var(--ap-color-link-hover);
|
|
46
122
|
}
|
|
47
123
|
.aplus-action-item--success {
|
|
48
|
-
color: var(--ap-
|
|
124
|
+
color: var(--ap-color-success);
|
|
49
125
|
}
|
|
50
126
|
.aplus-action-item--error {
|
|
51
|
-
color: var(--ap-
|
|
127
|
+
color: var(--ap-color-error);
|
|
52
128
|
}
|
|
53
129
|
.aplus-action-item--warn {
|
|
54
|
-
color: var(--ap-
|
|
130
|
+
color: var(--ap-color-warn);
|
|
55
131
|
}
|
|
56
132
|
.aplus-action-item--loading {
|
|
57
133
|
opacity: 0.35;
|
|
@@ -62,9 +138,20 @@
|
|
|
62
138
|
margin-right: 4px;
|
|
63
139
|
}
|
|
64
140
|
.aplus-action-item--disabled {
|
|
65
|
-
color: #CCE2FF;
|
|
66
141
|
cursor: not-allowed;
|
|
67
142
|
}
|
|
143
|
+
.aplus-action-item--primary.aplus-action-item--disabled {
|
|
144
|
+
color: var(--ap-color-link-disabled);
|
|
145
|
+
}
|
|
146
|
+
.aplus-action-item--success.aplus-action-item--disabled {
|
|
147
|
+
color: var(--ap-color-success-disabled);
|
|
148
|
+
}
|
|
149
|
+
.aplus-action-item--error.aplus-action-item--disabled {
|
|
150
|
+
color: var(--ap-color-error-disabled);
|
|
151
|
+
}
|
|
152
|
+
.aplus-action-item--warn.aplus-action-item--disabled {
|
|
153
|
+
color: var(--ap-color-warn-disabled);
|
|
154
|
+
}
|
|
68
155
|
.aplus-action-item-dropdown__item .aplus-action-item {
|
|
69
156
|
width: 100%;
|
|
70
157
|
}
|
|
@@ -114,6 +201,7 @@
|
|
|
114
201
|
.aplus-ap-attachment__more {
|
|
115
202
|
display: inline-block;
|
|
116
203
|
font-size: 12px;
|
|
204
|
+
line-height: 1.5;
|
|
117
205
|
cursor: pointer;
|
|
118
206
|
color: var(--download-main-color);
|
|
119
207
|
}
|
|
@@ -130,7 +218,7 @@
|
|
|
130
218
|
.aplus-ap-attachment__file-item {
|
|
131
219
|
flex: 1;
|
|
132
220
|
word-wrap: break-word;
|
|
133
|
-
margin-bottom:
|
|
221
|
+
margin-bottom: 12px;
|
|
134
222
|
font-size: 12px;
|
|
135
223
|
color: #000;
|
|
136
224
|
cursor: pointer;
|
|
@@ -165,10 +253,10 @@
|
|
|
165
253
|
display: flex;
|
|
166
254
|
align-items: center;
|
|
167
255
|
font-size: 12px;
|
|
168
|
-
color: var(--ap-
|
|
256
|
+
color: var(--ap-text-color-3);
|
|
169
257
|
}
|
|
170
258
|
.aplus-ap-batch-action-body .selected-desc-conut span {
|
|
171
|
-
color: var(--ap-
|
|
259
|
+
color: var(--ap-color-primary);
|
|
172
260
|
font-weight: bold;
|
|
173
261
|
min-width: 10px;
|
|
174
262
|
text-align: center;
|
|
@@ -184,7 +272,7 @@
|
|
|
184
272
|
width: 100%;
|
|
185
273
|
padding-bottom: 8px;
|
|
186
274
|
margin-bottom: 8px;
|
|
187
|
-
border-bottom: 1px solid var(--ap-
|
|
275
|
+
border-bottom: 1px solid var(--ap-color-bg);
|
|
188
276
|
}
|
|
189
277
|
.aplus-ap-action-button-border-link:not(:disabled):hover,
|
|
190
278
|
.aplus-ap-action-button-border-link:not(:disabled):active,
|
|
@@ -200,7 +288,7 @@
|
|
|
200
288
|
margin-top: 10px;
|
|
201
289
|
}
|
|
202
290
|
.aplus-ap-card-title {
|
|
203
|
-
margin-bottom:
|
|
291
|
+
margin-bottom: 12px;
|
|
204
292
|
}
|
|
205
293
|
/**
|
|
206
294
|
TODO:
|
|
@@ -210,13 +298,13 @@
|
|
|
210
298
|
table-layout: fixed;
|
|
211
299
|
}
|
|
212
300
|
.aplus-ap-descriptions .ant-descriptions td.ant-descriptions-item {
|
|
213
|
-
padding-bottom: var(--ap-descriptions-item-padding-bottom);
|
|
301
|
+
padding-bottom: var(--ap-descriptions-item-padding-bottom, 16px);
|
|
214
302
|
}
|
|
215
303
|
.aplus-ap-descriptions .ant-descriptions th.ant-descriptions-item {
|
|
216
304
|
padding-bottom: 8px;
|
|
217
305
|
}
|
|
218
306
|
.aplus-ap-descriptions .ant-descriptions .ant-descriptions-row:last-child .ant-descriptions-item {
|
|
219
|
-
padding-bottom: var(--ap-descriptions-last-row-item-padding-bottom);
|
|
307
|
+
padding-bottom: var(--ap-descriptions-last-row-item-padding-bottom, 0px);
|
|
220
308
|
}
|
|
221
309
|
.aplus-ap-descriptions .ant-descriptions .ant-descriptions-item-label::after {
|
|
222
310
|
margin-inline: 4px 12px;
|
|
@@ -242,10 +330,11 @@
|
|
|
242
330
|
}
|
|
243
331
|
.aplus-ap-descriptions--admin .ant-descriptions-row .ant-descriptions-item-label {
|
|
244
332
|
justify-content: flex-end;
|
|
245
|
-
width: var(--ap-descriptions-item-label-width);
|
|
333
|
+
width: var(--ap-descriptions-item-label-width, auto);
|
|
246
334
|
color: #999999;
|
|
247
335
|
}
|
|
248
336
|
.aplus-ap-descriptions--admin .ant-descriptions-row .ant-descriptions-item-label .ap-descriptions-item-content__help {
|
|
337
|
+
font-size: 14px;
|
|
249
338
|
margin-left: 4px;
|
|
250
339
|
color: #999999;
|
|
251
340
|
}
|
|
@@ -258,10 +347,11 @@
|
|
|
258
347
|
}
|
|
259
348
|
.aplus-ap-descriptions--aplus .ant-descriptions-row .ant-descriptions-item-label {
|
|
260
349
|
justify-content: flex-end;
|
|
261
|
-
width: var(--ap-descriptions-item-label-width);
|
|
350
|
+
width: var(--ap-descriptions-item-label-width, auto);
|
|
262
351
|
color: #8896B0;
|
|
263
352
|
}
|
|
264
353
|
.aplus-ap-descriptions--aplus .ant-descriptions-row .ant-descriptions-item-label .ap-descriptions-item-content__help {
|
|
354
|
+
font-size: 14px;
|
|
265
355
|
margin-left: 4px;
|
|
266
356
|
color: #8896B0;
|
|
267
357
|
}
|
|
@@ -360,11 +450,12 @@
|
|
|
360
450
|
}
|
|
361
451
|
.aplus-ap-expand-alert__antAlert.ant-alert {
|
|
362
452
|
align-items: flex-start;
|
|
363
|
-
line-height:
|
|
453
|
+
line-height: 1.5;
|
|
364
454
|
}
|
|
365
455
|
.aplus-ap-expand-alert__antAlert.ant-alert .ant-alert-icon {
|
|
366
456
|
font-size: 14px;
|
|
367
457
|
transform: translateY(2px);
|
|
458
|
+
display: block;
|
|
368
459
|
}
|
|
369
460
|
.aplus-ap-expand-alert--aplus .card-alert {
|
|
370
461
|
background-color: transparent !important;
|
|
@@ -407,13 +498,16 @@
|
|
|
407
498
|
}
|
|
408
499
|
.aplus-ap-form-item--bordered {
|
|
409
500
|
box-sizing: border-box;
|
|
410
|
-
border: 1px solid var(--ap-
|
|
501
|
+
border: 1px solid var(--ap-border-color-base);
|
|
411
502
|
border-radius: 4px;
|
|
412
503
|
padding-inline: 8px;
|
|
413
504
|
}
|
|
414
505
|
.aplus-ap-form-item--bordered .ant-input-affix-wrapper {
|
|
415
506
|
padding: 0;
|
|
416
507
|
}
|
|
508
|
+
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
|
|
509
|
+
padding-right: 8px;
|
|
510
|
+
}
|
|
417
511
|
.aplus-ap-form-item--bordered .ant-input {
|
|
418
512
|
padding: 0;
|
|
419
513
|
}
|
|
@@ -427,7 +521,7 @@
|
|
|
427
521
|
inset-inline-end: 0;
|
|
428
522
|
}
|
|
429
523
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
430
|
-
padding-left:
|
|
524
|
+
padding-left: 8px;
|
|
431
525
|
}
|
|
432
526
|
.aplus-ap-form-item--bordered .ant-select-selector {
|
|
433
527
|
border-width: 0 !important;
|
|
@@ -453,22 +547,22 @@
|
|
|
453
547
|
min-height: 30px;
|
|
454
548
|
}
|
|
455
549
|
.aplus-ap-form-item--bordered:hover {
|
|
456
|
-
border-color: var(--ap-
|
|
550
|
+
border-color: var(--ap-hover-color-base);
|
|
457
551
|
}
|
|
458
552
|
.aplus-ap-form-item--bordered:focus {
|
|
459
|
-
border-color: var(--ap-
|
|
553
|
+
border-color: var(--ap-active-color-base);
|
|
460
554
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
461
555
|
}
|
|
462
556
|
.aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
|
|
463
557
|
width: calc(100% + 12px);
|
|
464
558
|
}
|
|
465
559
|
.aplus-ap-form-item--focused {
|
|
466
|
-
border-color: var(--ap-
|
|
560
|
+
border-color: var(--ap-active-color-base);
|
|
467
561
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
468
562
|
}
|
|
469
563
|
.aplus-ap-form-item .ant-form-show-help .ant-form-item-explain-error {
|
|
470
|
-
font-size:
|
|
471
|
-
line-height:
|
|
564
|
+
font-size: 12px;
|
|
565
|
+
line-height: 16px;
|
|
472
566
|
}
|
|
473
567
|
.aplus-ap-form-item .ant-col .ant-form-item-extra {
|
|
474
568
|
line-height: 22px;
|
|
@@ -480,7 +574,7 @@
|
|
|
480
574
|
width: 100%;
|
|
481
575
|
}
|
|
482
576
|
.aplus-ap-form-item .ant-input-group .ant-select + .ant-picker {
|
|
483
|
-
padding-inline:
|
|
577
|
+
padding-inline: 8px;
|
|
484
578
|
flex: 1;
|
|
485
579
|
}
|
|
486
580
|
.aplus-ap-form-drawer-form__resize-bar {
|
|
@@ -529,7 +623,7 @@
|
|
|
529
623
|
box-sizing: border-box;
|
|
530
624
|
margin: 0;
|
|
531
625
|
padding: 0;
|
|
532
|
-
color:
|
|
626
|
+
color: #182948;
|
|
533
627
|
font-size: 12px;
|
|
534
628
|
font-family: inherit;
|
|
535
629
|
line-height: 1.5;
|
|
@@ -543,12 +637,12 @@
|
|
|
543
637
|
box-sizing: border-box;
|
|
544
638
|
margin: 0;
|
|
545
639
|
padding: 0;
|
|
546
|
-
color:
|
|
640
|
+
color: #182948;
|
|
547
641
|
font-size: 12px;
|
|
548
642
|
font-family: inherit;
|
|
549
643
|
line-height: 1.5;
|
|
550
644
|
list-style: none;
|
|
551
|
-
color:
|
|
645
|
+
color: var(--ap-text-color-3);
|
|
552
646
|
}
|
|
553
647
|
.aplus-search-form-sorter-header-action-wrapper {
|
|
554
648
|
padding: 8px;
|
|
@@ -559,12 +653,12 @@
|
|
|
559
653
|
box-sizing: border-box;
|
|
560
654
|
margin: 0;
|
|
561
655
|
padding: 0;
|
|
562
|
-
color:
|
|
656
|
+
color: #182948;
|
|
563
657
|
font-size: 12px;
|
|
564
658
|
font-family: inherit;
|
|
565
659
|
line-height: 1.5;
|
|
566
660
|
list-style: none;
|
|
567
|
-
color:
|
|
661
|
+
color: var(--ap-color-link);
|
|
568
662
|
}
|
|
569
663
|
.aplus-search-form-sorter-sorter-wrapper {
|
|
570
664
|
display: flex;
|
|
@@ -585,13 +679,14 @@
|
|
|
585
679
|
padding: 8px;
|
|
586
680
|
display: flex;
|
|
587
681
|
align-items: center;
|
|
682
|
+
background-color: #fff;
|
|
588
683
|
}
|
|
589
684
|
.aplus-search-form-sorter-sorter-item > div:hover {
|
|
590
|
-
border-color: var(--
|
|
685
|
+
border-color: var(--ap-color-primary);
|
|
591
686
|
cursor: pointer;
|
|
592
687
|
}
|
|
593
688
|
.aplus-search-form-sorter-sorter-item > div:hover .aplus-search-form-sorter-sorter-item-holder {
|
|
594
|
-
color: var(--
|
|
689
|
+
color: var(--ap-color-primary) !important;
|
|
595
690
|
}
|
|
596
691
|
.aplus-search-form-sorter-sorter-item--hidden {
|
|
597
692
|
display: none;
|
|
@@ -600,7 +695,7 @@
|
|
|
600
695
|
box-sizing: border-box;
|
|
601
696
|
margin: 0;
|
|
602
697
|
padding: 0;
|
|
603
|
-
color:
|
|
698
|
+
color: #182948;
|
|
604
699
|
font-size: 12px;
|
|
605
700
|
font-family: inherit;
|
|
606
701
|
line-height: 1.5;
|
|
@@ -641,6 +736,17 @@
|
|
|
641
736
|
.aplus-ap-form-search-form__popover-footer-confirm-btn {
|
|
642
737
|
margin-left: 10px;
|
|
643
738
|
}
|
|
739
|
+
.aplus-ap-form-search-form__popover-footer button.ant-btn {
|
|
740
|
+
padding-inline: 16px;
|
|
741
|
+
}
|
|
742
|
+
.aplus-ap-form-search-form-trigger-btn {
|
|
743
|
+
font-size: 0px;
|
|
744
|
+
}
|
|
745
|
+
.aplus-ap-form-search-form-trigger-btn-active {
|
|
746
|
+
color: var(--ap-hover-color-base);
|
|
747
|
+
border-color: var(--ap-hover-color-base);
|
|
748
|
+
z-index: 1;
|
|
749
|
+
}
|
|
644
750
|
.aplus-ap-form-search-form-column-setting-trigger-wrapper {
|
|
645
751
|
flex-shrink: 0;
|
|
646
752
|
}
|
|
@@ -667,7 +773,7 @@
|
|
|
667
773
|
padding-inline: 12px;
|
|
668
774
|
}
|
|
669
775
|
.aplus-ap-form-search-form-action-btn-reset {
|
|
670
|
-
background-color:
|
|
776
|
+
background-color: var(--ap-color-bg);
|
|
671
777
|
}
|
|
672
778
|
.aplus-ap-form-item-text-group-compact .ant-select-focused {
|
|
673
779
|
z-index: 1;
|
|
@@ -765,6 +871,7 @@
|
|
|
765
871
|
position: relative;
|
|
766
872
|
width: inherit;
|
|
767
873
|
font-size: 12px;
|
|
874
|
+
line-height: 1.5;
|
|
768
875
|
/** 自动溢出省略 */
|
|
769
876
|
/** Aplus端样式 */
|
|
770
877
|
/** Admin端样式 */
|
|
@@ -922,7 +1029,7 @@
|
|
|
922
1029
|
.aplus-ap-product-info__img {
|
|
923
1030
|
width: 44px;
|
|
924
1031
|
height: 44px;
|
|
925
|
-
margin-right:
|
|
1032
|
+
margin-right: 8px;
|
|
926
1033
|
flex-shrink: 0;
|
|
927
1034
|
}
|
|
928
1035
|
.aplus-ap-product-info__content {
|
|
@@ -931,49 +1038,35 @@
|
|
|
931
1038
|
flex-direction: column;
|
|
932
1039
|
overflow: hidden;
|
|
933
1040
|
}
|
|
934
|
-
.aplus-ap-product-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
white-space: nowrap;
|
|
938
|
-
height: 22px;
|
|
939
|
-
line-height: 22px;
|
|
940
|
-
}
|
|
941
|
-
.aplus-ap-product-info__title-tip {
|
|
942
|
-
color: #fff;
|
|
943
|
-
}
|
|
944
|
-
.aplus-ap-product-info__row {
|
|
945
|
-
display: grid;
|
|
946
|
-
grid-template-columns: 1fr 1fr;
|
|
1041
|
+
.aplus-ap-product-info__row-container {
|
|
1042
|
+
display: flex;
|
|
1043
|
+
flex-wrap: wrap;
|
|
947
1044
|
}
|
|
948
|
-
.aplus-ap-product-info__row-
|
|
949
|
-
|
|
950
|
-
|
|
1045
|
+
.aplus-ap-product-info__row-item {
|
|
1046
|
+
position: relative;
|
|
1047
|
+
display: flex;
|
|
951
1048
|
}
|
|
952
1049
|
.aplus-ap-product-info__divider {
|
|
953
|
-
|
|
1050
|
+
width: 1px;
|
|
954
1051
|
position: relative;
|
|
1052
|
+
height: 12px;
|
|
955
1053
|
top: 50%;
|
|
956
|
-
margin
|
|
1054
|
+
margin: -6px 16px 0px 0px;
|
|
1055
|
+
z-index: 1;
|
|
957
1056
|
}
|
|
958
1057
|
.aplus-ap-product-info__divider-vertical {
|
|
959
1058
|
width: 1px;
|
|
1059
|
+
height: 100%;
|
|
960
1060
|
background-color: #E9EDF3;
|
|
961
|
-
height: 12px;
|
|
962
1061
|
position: absolute;
|
|
963
|
-
|
|
964
|
-
}
|
|
965
|
-
.aplus-ap-product-info--full-width {
|
|
966
|
-
grid-column: 1 / -1;
|
|
1062
|
+
transform: translateX(-50%);
|
|
967
1063
|
}
|
|
968
1064
|
.aplus-ap-product-info__item {
|
|
969
1065
|
display: flex;
|
|
970
1066
|
align-items: baseline;
|
|
971
1067
|
}
|
|
972
|
-
.aplus-ap-product-info
|
|
973
|
-
|
|
974
|
-
}
|
|
975
|
-
.aplus-ap-product-info--right {
|
|
976
|
-
justify-self: end;
|
|
1068
|
+
.aplus-ap-product-info--full {
|
|
1069
|
+
width: 100%;
|
|
977
1070
|
}
|
|
978
1071
|
.aplus-ap-product-info__label {
|
|
979
1072
|
color: #8896b0;
|
|
@@ -984,7 +1077,8 @@
|
|
|
984
1077
|
padding: 0 2px;
|
|
985
1078
|
}
|
|
986
1079
|
.aplus-ap-product-info__value {
|
|
987
|
-
|
|
1080
|
+
max-width: 300px;
|
|
1081
|
+
color: var(--ap-text-color-3);
|
|
988
1082
|
overflow: hidden;
|
|
989
1083
|
text-overflow: ellipsis;
|
|
990
1084
|
white-space: nowrap;
|
|
@@ -993,6 +1087,9 @@
|
|
|
993
1087
|
color: #0070ff;
|
|
994
1088
|
cursor: pointer;
|
|
995
1089
|
}
|
|
1090
|
+
.aplus-ap-product-info--admin .aplus-ap-product-info__title {
|
|
1091
|
+
color: #333333;
|
|
1092
|
+
}
|
|
996
1093
|
.aplus-ap-product-info--admin .aplus-ap-product-info__label {
|
|
997
1094
|
color: #999;
|
|
998
1095
|
}
|
|
@@ -1002,6 +1099,56 @@
|
|
|
1002
1099
|
.aplus-ap-product-info--admin .aplus-ap-product-info--link {
|
|
1003
1100
|
color: #0070ff;
|
|
1004
1101
|
}
|
|
1102
|
+
.aplus-ap-copy {
|
|
1103
|
+
display: flex;
|
|
1104
|
+
align-items: center;
|
|
1105
|
+
width: 100%;
|
|
1106
|
+
}
|
|
1107
|
+
.aplus-ap-copy .copy-btn {
|
|
1108
|
+
opacity: 0;
|
|
1109
|
+
transition: opacity 0.2s ease;
|
|
1110
|
+
}
|
|
1111
|
+
.aplus-ap-copy:hover .copy-btn {
|
|
1112
|
+
opacity: 1;
|
|
1113
|
+
}
|
|
1114
|
+
.aplus-ap-copy__text {
|
|
1115
|
+
overflow: hidden;
|
|
1116
|
+
text-overflow: ellipsis;
|
|
1117
|
+
white-space: nowrap;
|
|
1118
|
+
height: 18px;
|
|
1119
|
+
line-height: 18px;
|
|
1120
|
+
}
|
|
1121
|
+
.aplus-ap-copy--text-major {
|
|
1122
|
+
color: var(--ap-text-color-2);
|
|
1123
|
+
}
|
|
1124
|
+
.aplus-ap-copy--text-minor {
|
|
1125
|
+
color: var(--ap-text-color-3);
|
|
1126
|
+
}
|
|
1127
|
+
.aplus-ap-copy--text-link {
|
|
1128
|
+
color: var(--ap-color-link);
|
|
1129
|
+
cursor: pointer;
|
|
1130
|
+
}
|
|
1131
|
+
.aplus-ap-copy--text-link:hover {
|
|
1132
|
+
color: var(--ap-color-link-hover);
|
|
1133
|
+
}
|
|
1134
|
+
.aplus-ap-copy__copy-btn {
|
|
1135
|
+
flex-shrink: 0;
|
|
1136
|
+
width: 16px;
|
|
1137
|
+
margin-left: 4px;
|
|
1138
|
+
}
|
|
1139
|
+
.aplus-ap-copy__copy-btn .aplus-frontend-icon {
|
|
1140
|
+
cursor: pointer;
|
|
1141
|
+
color: #ABB7CC;
|
|
1142
|
+
height: 14px;
|
|
1143
|
+
line-height: 14px;
|
|
1144
|
+
}
|
|
1145
|
+
.aplus-ap-copy__copy-btn:hover .aplus-frontend-icon {
|
|
1146
|
+
cursor: pointer;
|
|
1147
|
+
color: var(--ap-color-link);
|
|
1148
|
+
}
|
|
1149
|
+
.aplus-ap-copy--admin .aplus-ap-product-info__text {
|
|
1150
|
+
color: #333333;
|
|
1151
|
+
}
|
|
1005
1152
|
.aplus-info-layout-container {
|
|
1006
1153
|
height: 100%;
|
|
1007
1154
|
background-color: #fff;
|
|
@@ -1219,7 +1366,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1219
1366
|
}
|
|
1220
1367
|
.aplus-ap-status {
|
|
1221
1368
|
font-size: 16px;
|
|
1222
|
-
line-height:
|
|
1369
|
+
line-height: 2;
|
|
1223
1370
|
display: inline-block;
|
|
1224
1371
|
position: relative;
|
|
1225
1372
|
font-family: 'customFont';
|
|
@@ -1254,12 +1401,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1254
1401
|
flex-direction: row;
|
|
1255
1402
|
flex-wrap: nowrap;
|
|
1256
1403
|
height: 100%;
|
|
1404
|
+
padding-block-end: 12px;
|
|
1257
1405
|
}
|
|
1258
1406
|
.aplus-ap-column-setting-wrapper .aplus-ap-table-table-header__title {
|
|
1259
1407
|
box-sizing: border-box;
|
|
1260
1408
|
margin: 0;
|
|
1261
1409
|
padding: 0;
|
|
1262
|
-
color:
|
|
1410
|
+
color: #182948;
|
|
1263
1411
|
font-size: 12px;
|
|
1264
1412
|
font-family: inherit;
|
|
1265
1413
|
line-height: 1.5;
|
|
@@ -1288,12 +1436,14 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1288
1436
|
flex-wrap: nowrap;
|
|
1289
1437
|
justify-content: space-between;
|
|
1290
1438
|
align-items: center;
|
|
1291
|
-
padding:
|
|
1439
|
+
padding: 8px;
|
|
1440
|
+
}
|
|
1441
|
+
.aplus-ap-column-setting-left__header-tips {
|
|
1442
|
+
color: var(--ap-text-color-3);
|
|
1292
1443
|
}
|
|
1293
1444
|
.aplus-ap-column-setting-left__content {
|
|
1294
1445
|
flex: 1;
|
|
1295
|
-
padding
|
|
1296
|
-
padding-block: 16px;
|
|
1446
|
+
padding: 12px;
|
|
1297
1447
|
overflow-y: auto;
|
|
1298
1448
|
}
|
|
1299
1449
|
.aplus-ap-column-setting-left__content .ant-checkbox-wrapper {
|
|
@@ -1312,8 +1462,9 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1312
1462
|
background-color: #F2F6F9;
|
|
1313
1463
|
padding: 4px 12px;
|
|
1314
1464
|
border-radius: 4px;
|
|
1315
|
-
margin-bottom:
|
|
1465
|
+
margin-bottom: 12px;
|
|
1316
1466
|
margin-inline: -12px;
|
|
1467
|
+
display: flex;
|
|
1317
1468
|
}
|
|
1318
1469
|
.aplus-sortable-item-meta {
|
|
1319
1470
|
padding: 6px 8px;
|
|
@@ -1333,7 +1484,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1333
1484
|
display: block;
|
|
1334
1485
|
}
|
|
1335
1486
|
.aplus-sortable-item-meta:hover .aplus-sortable-item-meta-left__holder {
|
|
1336
|
-
color: var(--
|
|
1487
|
+
color: var(--ap-color-primary) !important;
|
|
1337
1488
|
}
|
|
1338
1489
|
.aplus-sortable-item-meta-left {
|
|
1339
1490
|
flex: 1;
|
|
@@ -1363,7 +1514,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1363
1514
|
margin-left: 16px;
|
|
1364
1515
|
}
|
|
1365
1516
|
.aplus-sortable-item-meta-action-icon:hover {
|
|
1366
|
-
color: var(--
|
|
1517
|
+
color: var(--ap-color-primary);
|
|
1367
1518
|
}
|
|
1368
1519
|
.aplus-sortable-item .is-hidden {
|
|
1369
1520
|
display: none;
|
|
@@ -1376,29 +1527,29 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1376
1527
|
.aplus-column-setting-sorter-section-title {
|
|
1377
1528
|
font-size: 12px;
|
|
1378
1529
|
line-height: 20px;
|
|
1379
|
-
color:
|
|
1530
|
+
color: var(--ap-text-color-3);
|
|
1380
1531
|
padding: 2px 8px;
|
|
1381
1532
|
margin: 4px;
|
|
1382
1533
|
}
|
|
1383
1534
|
.aplus-column-setting-sorter-header {
|
|
1384
|
-
padding:
|
|
1535
|
+
padding: 12px 20px;
|
|
1385
1536
|
}
|
|
1386
1537
|
.aplus-column-setting-sorter-header-title {
|
|
1387
1538
|
box-sizing: border-box;
|
|
1388
1539
|
margin: 0;
|
|
1389
1540
|
padding: 0;
|
|
1390
|
-
color:
|
|
1541
|
+
color: #182948;
|
|
1391
1542
|
font-size: 12px;
|
|
1392
1543
|
font-family: inherit;
|
|
1393
1544
|
line-height: 1.5;
|
|
1394
1545
|
list-style: none;
|
|
1395
1546
|
font-weight: bold;
|
|
1396
|
-
color:
|
|
1547
|
+
color: var(--ap-text-color-2);
|
|
1397
1548
|
}
|
|
1398
1549
|
.aplus-column-setting-sorter-content {
|
|
1399
1550
|
flex: 1;
|
|
1400
1551
|
overflow-y: auto;
|
|
1401
|
-
padding: 8px 12px
|
|
1552
|
+
padding: 8px 12px 0px 8px;
|
|
1402
1553
|
}
|
|
1403
1554
|
.aplus-ap-table-paragraph-ellipsis {
|
|
1404
1555
|
display: flex;
|
|
@@ -1423,12 +1574,33 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1423
1574
|
flex-shrink: 0;
|
|
1424
1575
|
margin-left: 8px;
|
|
1425
1576
|
cursor: pointer;
|
|
1426
|
-
color: var(--ap-
|
|
1577
|
+
color: var(--ap-color-link);
|
|
1578
|
+
}
|
|
1579
|
+
.aplus-ap-table ::-webkit-scrollbar {
|
|
1580
|
+
width: 10px;
|
|
1581
|
+
height: 10px;
|
|
1582
|
+
}
|
|
1583
|
+
.aplus-ap-table ::-webkit-scrollbar-thumb {
|
|
1584
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
1585
|
+
background-clip: content-box;
|
|
1586
|
+
border: 1px solid transparent;
|
|
1587
|
+
border-radius: 4px;
|
|
1588
|
+
}
|
|
1589
|
+
.aplus-ap-table ::-webkit-scrollbar-track,
|
|
1590
|
+
.aplus-ap-table ::-webkit-scrollbar-corner {
|
|
1591
|
+
background-color: var(--ap-table-header-bg, #f2f6f9);
|
|
1592
|
+
}
|
|
1593
|
+
.aplus-ap-table ::-webkit-scrollbar-thumb:hover,
|
|
1594
|
+
.aplus-ap-table ::-webkit-scrollbar-thumb:active {
|
|
1595
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
1427
1596
|
}
|
|
1428
1597
|
.aplus-ap-table-wrapper {
|
|
1429
|
-
padding: 8px
|
|
1598
|
+
padding: 8px;
|
|
1430
1599
|
background-color: #fff;
|
|
1431
1600
|
}
|
|
1601
|
+
.aplus-ap-table-wrapper:has(.ant-pagination) {
|
|
1602
|
+
padding-bottom: 0;
|
|
1603
|
+
}
|
|
1432
1604
|
.aplus-ap-table-adaptive {
|
|
1433
1605
|
height: 100%;
|
|
1434
1606
|
display: flex;
|
|
@@ -1469,16 +1641,24 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1469
1641
|
flex-direction: column;
|
|
1470
1642
|
}
|
|
1471
1643
|
.aplus-ap-table__table-wrapper-card {
|
|
1472
|
-
padding: 8px
|
|
1644
|
+
padding: 8px;
|
|
1473
1645
|
border-radius: 4px;
|
|
1474
1646
|
background-color: #fff;
|
|
1475
1647
|
overflow: hidden;
|
|
1476
1648
|
}
|
|
1477
|
-
.aplus-ap-
|
|
1478
|
-
|
|
1649
|
+
.aplus-ap-table__table-wrapper-card:has(.ant-pagination) {
|
|
1650
|
+
padding-bottom: 0;
|
|
1651
|
+
}
|
|
1652
|
+
.aplus-ap-table-table ul.ant-table-pagination.ant-pagination {
|
|
1653
|
+
margin-block: 8px;
|
|
1654
|
+
align-items: center;
|
|
1479
1655
|
}
|
|
1480
|
-
.aplus-ap-table-table .ant-pagination .ant-pagination-total-text {
|
|
1656
|
+
.aplus-ap-table-table ul.ant-table-pagination.ant-pagination .ant-pagination-total-text {
|
|
1481
1657
|
flex: 1;
|
|
1658
|
+
height: unset;
|
|
1659
|
+
line-height: 1.5;
|
|
1660
|
+
display: flex;
|
|
1661
|
+
align-items: center;
|
|
1482
1662
|
}
|
|
1483
1663
|
.aplus-ap-table-table tr > th.ant-table-cell {
|
|
1484
1664
|
background-color: var(--ap-table-header-bg, #F2F6F9);
|
|
@@ -1487,16 +1667,16 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1487
1667
|
background-color: #D8DDE5 !important;
|
|
1488
1668
|
}
|
|
1489
1669
|
.aplus-ap-table .ant-table.ant-table-middle .ant-table-row .ant-table-cell:not(.ant-table-selection-column) {
|
|
1490
|
-
padding: 12px;
|
|
1670
|
+
padding: 9px 12px;
|
|
1491
1671
|
}
|
|
1492
1672
|
.aplus-ap-table .ant-table.ant-table-middle .ant-table-thead .ant-table-cell:not(.ant-table-selection-column) {
|
|
1493
|
-
padding: 12px;
|
|
1673
|
+
padding: 9px 12px;
|
|
1494
1674
|
}
|
|
1495
1675
|
.aplus-ap-table .ant-table.ant-table-small .ant-table-row .ant-table-cell:not(.ant-table-selection-column) {
|
|
1496
|
-
padding:
|
|
1676
|
+
padding: 6px 9px;
|
|
1497
1677
|
}
|
|
1498
1678
|
.aplus-ap-table .ant-table.ant-table-small .ant-table-thead .ant-table-cell:not(.ant-table-selection-column) {
|
|
1499
|
-
padding:
|
|
1679
|
+
padding: 6px 9px;
|
|
1500
1680
|
}
|
|
1501
1681
|
.aplus-ap-table .ant-table-placeholder .ant-table-expanded-row-fixed::after {
|
|
1502
1682
|
border-inline-end-width: 0px !important;
|
|
@@ -1523,13 +1703,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1523
1703
|
margin-bottom: 0;
|
|
1524
1704
|
}
|
|
1525
1705
|
.aplus-ap-table-pagination-count-text {
|
|
1526
|
-
color: var(--ap-
|
|
1706
|
+
color: var(--ap-text-color-2);
|
|
1527
1707
|
}
|
|
1528
1708
|
.aplus-ap-table-pagination--total-right {
|
|
1529
1709
|
padding-left: 12px;
|
|
1530
1710
|
}
|
|
1531
1711
|
.aplus-ap-table-pagination-total-wrapper {
|
|
1532
|
-
color: var(--ap-
|
|
1712
|
+
color: var(--ap-text-color-1);
|
|
1533
1713
|
}
|
|
1534
1714
|
.aplus-ap-table-header {
|
|
1535
1715
|
padding-bottom: 8px;
|
|
@@ -1556,7 +1736,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1556
1736
|
flex: 1;
|
|
1557
1737
|
}
|
|
1558
1738
|
.aplus-ap-table-setting-trigger-button {
|
|
1559
|
-
color: var(--ap-
|
|
1739
|
+
color: var(--ap-text-color-3);
|
|
1560
1740
|
}
|
|
1561
1741
|
.aplus-ap-table-setting-trigger-button:hover {
|
|
1562
1742
|
color: unset;
|
|
@@ -1588,17 +1768,17 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1588
1768
|
}
|
|
1589
1769
|
.aplus-tag-wrapper .aplus-tag-inner-wrapper--middle {
|
|
1590
1770
|
line-height: 1.5;
|
|
1591
|
-
padding:
|
|
1771
|
+
padding: 3px 6px;
|
|
1592
1772
|
font-size: 12px;
|
|
1593
1773
|
}
|
|
1594
1774
|
.aplus-tag-wrapper .aplus-tag-inner-wrapper--small {
|
|
1595
1775
|
padding: 0 4px;
|
|
1596
|
-
line-height: 1.
|
|
1597
|
-
font-size:
|
|
1776
|
+
line-height: 1.5;
|
|
1777
|
+
font-size: 12px;
|
|
1598
1778
|
}
|
|
1599
1779
|
.aplus-tag-wrapper-purely > * {
|
|
1600
1780
|
background-color: var(--tag-main-color-background);
|
|
1601
|
-
color: var(--ap-
|
|
1781
|
+
color: var(--ap-text-color-2);
|
|
1602
1782
|
}
|
|
1603
1783
|
.aplus-tag-wrapper-border > * {
|
|
1604
1784
|
border: 1px solid var(--tag-main-color);
|
|
@@ -1630,11 +1810,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1630
1810
|
}
|
|
1631
1811
|
.aplus-tag-group-ellipsis-text--admin {
|
|
1632
1812
|
font-size: 12px;
|
|
1633
|
-
color: #
|
|
1813
|
+
color: #333;
|
|
1634
1814
|
}
|
|
1635
1815
|
.aplus-tag-group-ellipsis-text--aplus {
|
|
1636
1816
|
font-size: 12px;
|
|
1637
|
-
color: #
|
|
1817
|
+
color: #182948;
|
|
1638
1818
|
}
|
|
1639
1819
|
.aplus-ap-title {
|
|
1640
1820
|
position: relative;
|
|
@@ -1652,7 +1832,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1652
1832
|
top: 50%;
|
|
1653
1833
|
transform: translateY(-50%);
|
|
1654
1834
|
width: 3px;
|
|
1655
|
-
height:
|
|
1835
|
+
height: 14px;
|
|
1656
1836
|
background: #0070ff;
|
|
1657
1837
|
border-radius: 0px 4px 4px 0px;
|
|
1658
1838
|
z-index: 1;
|
|
@@ -1664,8 +1844,9 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1664
1844
|
align-items: center;
|
|
1665
1845
|
}
|
|
1666
1846
|
.aplus-ap-title__prefix .anticon-question-circle {
|
|
1847
|
+
font-size: 14px;
|
|
1667
1848
|
margin-left: 5px;
|
|
1668
|
-
color: #
|
|
1849
|
+
color: #8896b0;
|
|
1669
1850
|
}
|
|
1670
1851
|
.aplus-ap-title--admin {
|
|
1671
1852
|
padding-left: 14px;
|
|
@@ -1689,8 +1870,9 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1689
1870
|
align-items: center;
|
|
1690
1871
|
}
|
|
1691
1872
|
.aplus-ap-title--admin .aplus-ap-title__prefix .anticon-question-circle {
|
|
1873
|
+
font-size: 14px;
|
|
1692
1874
|
margin-left: 5px;
|
|
1693
|
-
color: #
|
|
1875
|
+
color: #999999;
|
|
1694
1876
|
}
|
|
1695
1877
|
.aplus-ap-title__suffix {
|
|
1696
1878
|
color: #526a90;
|
|
@@ -1702,7 +1884,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1702
1884
|
.aplus-ap-upload-multiple-file .multiple-file-context .file-btn {
|
|
1703
1885
|
display: flex;
|
|
1704
1886
|
align-items: center;
|
|
1705
|
-
padding: 7px
|
|
1887
|
+
padding: 7px 12px;
|
|
1706
1888
|
transition: all 0.3s;
|
|
1707
1889
|
border: 1px solid #dee4ed;
|
|
1708
1890
|
border-radius: 4px;
|
|
@@ -1782,8 +1964,8 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1782
1964
|
aspect-ratio: 1 / 1;
|
|
1783
1965
|
}
|
|
1784
1966
|
.aplus-ap-upload-picture .picture-context .picture-upload > * + * {
|
|
1785
|
-
margin-top:
|
|
1786
|
-
font-size:
|
|
1967
|
+
margin-top: 4px;
|
|
1968
|
+
font-size: 12px;
|
|
1787
1969
|
}
|
|
1788
1970
|
.aplus-ap-upload-picture .picture-context .picture-upload:hover {
|
|
1789
1971
|
border: 1px dashed #0070ff;
|
|
@@ -1899,8 +2081,8 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1899
2081
|
.aplus-ap-upload-single-file .state-un .state-un-title {
|
|
1900
2082
|
margin-top: 10px;
|
|
1901
2083
|
color: #182948;
|
|
1902
|
-
font-size:
|
|
1903
|
-
line-height:
|
|
2084
|
+
font-size: 14px;
|
|
2085
|
+
line-height: 1.1 0.57142857;
|
|
1904
2086
|
}
|
|
1905
2087
|
.aplus-ap-upload-single-file .state-un .state-un-subtitle {
|
|
1906
2088
|
margin-top: 4px;
|
|
@@ -1977,7 +2159,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1977
2159
|
box-sizing: border-box;
|
|
1978
2160
|
margin: 0;
|
|
1979
2161
|
padding: 0;
|
|
1980
|
-
color:
|
|
2162
|
+
color: #182948;
|
|
1981
2163
|
font-size: 12px;
|
|
1982
2164
|
font-family: inherit;
|
|
1983
2165
|
line-height: 1.5;
|
|
@@ -1990,11 +2172,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1990
2172
|
cursor: not-allowed !important;
|
|
1991
2173
|
}
|
|
1992
2174
|
.aplus-check-card--bordered {
|
|
1993
|
-
outline: 1px solid var(--
|
|
2175
|
+
outline: 1px solid var(--ap-border-color-base);
|
|
1994
2176
|
}
|
|
1995
2177
|
.aplus-check-card:hover:not(.aplus-check-card--disabled) {
|
|
1996
2178
|
cursor: pointer;
|
|
1997
|
-
outline: 1px solid var(--
|
|
2179
|
+
outline: 1px solid var(--ap-color-primary);
|
|
1998
2180
|
}
|
|
1999
2181
|
.aplus-check-card::after {
|
|
2000
2182
|
content: '';
|
|
@@ -2009,14 +2191,14 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2009
2191
|
border-radius: 4px;
|
|
2010
2192
|
}
|
|
2011
2193
|
.aplus-check-card--checked {
|
|
2012
|
-
outline: 2px solid var(--
|
|
2194
|
+
outline: 2px solid var(--ap-color-primary);
|
|
2013
2195
|
}
|
|
2014
2196
|
.aplus-check-card--checked:hover:not(.aplus-check-card--disabled) {
|
|
2015
|
-
outline: 2px solid var(--
|
|
2197
|
+
outline: 2px solid var(--ap-color-primary);
|
|
2016
2198
|
}
|
|
2017
2199
|
.aplus-check-card--checked::after {
|
|
2018
2200
|
opacity: 1;
|
|
2019
|
-
border: var(--check-card-indicator-size, 14px) solid var(--
|
|
2201
|
+
border: var(--check-card-indicator-size, 14px) solid var(--ap-color-primary);
|
|
2020
2202
|
border-inline-start: var(--check-card-indicator-size, 14px) solid transparent;
|
|
2021
2203
|
border-block-end: var(--check-card-indicator-size, 14px) solid transparent;
|
|
2022
2204
|
inset-block-start: -2px;
|
|
@@ -2041,7 +2223,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2041
2223
|
box-sizing: border-box;
|
|
2042
2224
|
margin: 0;
|
|
2043
2225
|
padding: 0;
|
|
2044
|
-
color:
|
|
2226
|
+
color: #182948;
|
|
2045
2227
|
font-size: 12px;
|
|
2046
2228
|
font-family: inherit;
|
|
2047
2229
|
line-height: 1.5;
|
|
@@ -2057,7 +2239,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2057
2239
|
box-sizing: border-box;
|
|
2058
2240
|
margin: 0;
|
|
2059
2241
|
padding: 0;
|
|
2060
|
-
color:
|
|
2242
|
+
color: #182948;
|
|
2061
2243
|
font-size: 12px;
|
|
2062
2244
|
font-family: inherit;
|
|
2063
2245
|
line-height: 1.5;
|
|
@@ -2162,40 +2344,42 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2162
2344
|
height: 100%;
|
|
2163
2345
|
}
|
|
2164
2346
|
.aplus-ap-table-modal--table-layout.complex-layout {
|
|
2347
|
+
height: 100%;
|
|
2165
2348
|
position: relative;
|
|
2166
2349
|
}
|
|
2167
|
-
.aplus-ap-table-modal--table-layout.complex-layout::before {
|
|
2168
|
-
content: '';
|
|
2169
|
-
width: calc(100% + 40px);
|
|
2170
|
-
height: 1px;
|
|
2171
|
-
background-color: #dee4ed;
|
|
2172
|
-
position: absolute;
|
|
2173
|
-
left: -20px;
|
|
2174
|
-
bottom: 0px;
|
|
2175
|
-
}
|
|
2176
2350
|
.aplus-ap-table-modal--table-layout-left {
|
|
2177
2351
|
width: calc(100% - 410px);
|
|
2178
2352
|
padding-right: 20px;
|
|
2179
|
-
padding-bottom: 16px;
|
|
2180
2353
|
box-sizing: border-box;
|
|
2354
|
+
display: flex;
|
|
2355
|
+
flex-direction: column;
|
|
2356
|
+
}
|
|
2357
|
+
.aplus-ap-table-modal--table-layout-left-content {
|
|
2358
|
+
flex: 1;
|
|
2359
|
+
}
|
|
2360
|
+
.aplus-ap-table-modal--table-layout-left-content .ant-table-body {
|
|
2361
|
+
height: 100%;
|
|
2181
2362
|
}
|
|
2182
2363
|
.aplus-ap-table-modal--table-layout-right {
|
|
2183
2364
|
width: 410px;
|
|
2184
2365
|
padding-left: 20px;
|
|
2185
2366
|
position: relative;
|
|
2367
|
+
display: flex;
|
|
2368
|
+
flex-direction: column;
|
|
2186
2369
|
}
|
|
2187
2370
|
.aplus-ap-table-modal--table-layout-right-content {
|
|
2188
|
-
|
|
2371
|
+
flex: 1;
|
|
2372
|
+
max-height: 540px;
|
|
2189
2373
|
overflow-y: auto;
|
|
2190
2374
|
}
|
|
2191
2375
|
.aplus-ap-table-modal--table-layout-right::before {
|
|
2192
2376
|
content: '';
|
|
2193
|
-
height: calc(100% +
|
|
2377
|
+
height: calc(100% + 16px);
|
|
2194
2378
|
width: 1px;
|
|
2195
2379
|
background-color: #dee4ed;
|
|
2196
2380
|
position: absolute;
|
|
2197
2381
|
left: 0px;
|
|
2198
|
-
top: -
|
|
2382
|
+
top: -16px;
|
|
2199
2383
|
}
|
|
2200
2384
|
.aplus-scroll-bar {
|
|
2201
2385
|
position: relative;
|
|
@@ -2255,11 +2439,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2255
2439
|
height: min-content;
|
|
2256
2440
|
}
|
|
2257
2441
|
.aplus-ap-appendix__file-area {
|
|
2258
|
-
margin-top:
|
|
2442
|
+
margin-top: 12px;
|
|
2259
2443
|
}
|
|
2260
2444
|
.aplus-ap-appendix__file-area--border {
|
|
2261
|
-
border: 1px dashed var(--ap-
|
|
2262
|
-
padding:
|
|
2445
|
+
border: 1px dashed var(--ap-border-color-base);
|
|
2446
|
+
padding: 12px;
|
|
2263
2447
|
border-radius: 4px;
|
|
2264
2448
|
}
|
|
2265
2449
|
.aplus-ap-appendix__file-area-content {
|
|
@@ -2286,7 +2470,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2286
2470
|
}
|
|
2287
2471
|
.aplus-ap-appendix__file-area-content-item-icon svg {
|
|
2288
2472
|
width: 16px;
|
|
2289
|
-
color: var(--ap-
|
|
2473
|
+
color: var(--ap-text-color-4);
|
|
2290
2474
|
}
|
|
2291
2475
|
.aplus-ap-appendix__file-area-content-item-file-name {
|
|
2292
2476
|
min-width: 0;
|
|
@@ -2299,20 +2483,20 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2299
2483
|
.aplus-ap-appendix__file-area-content-item-file-name .ant-typography {
|
|
2300
2484
|
font-size: 12px;
|
|
2301
2485
|
line-height: 1.5;
|
|
2302
|
-
color: var(--ap-
|
|
2486
|
+
color: var(--ap-text-color-2);
|
|
2303
2487
|
transition: color 0.2s;
|
|
2304
2488
|
}
|
|
2305
2489
|
.aplus-ap-appendix__file-area-content-item-content:hover .ant-typography {
|
|
2306
|
-
color: var(--ap-
|
|
2490
|
+
color: var(--ap-color-link);
|
|
2307
2491
|
}
|
|
2308
2492
|
.aplus-ap-appendix__file-area-content-item--loading-content {
|
|
2309
2493
|
cursor: not-allowed;
|
|
2310
2494
|
}
|
|
2311
2495
|
.aplus-ap-appendix__file-area-content-item--loading .ant-typography {
|
|
2312
|
-
color: var(--ap-
|
|
2496
|
+
color: var(--ap-text-color-4);
|
|
2313
2497
|
}
|
|
2314
2498
|
.aplus-ap-appendix__file-area-content-item--loading-content:hover .ant-typography {
|
|
2315
|
-
color: var(--ap-
|
|
2499
|
+
color: var(--ap-text-color-4);
|
|
2316
2500
|
}
|
|
2317
2501
|
.aplus-ap-group-search__search > .ant-select-selector {
|
|
2318
2502
|
padding: 0px 10px 0 0 !important;
|
|
@@ -2425,7 +2609,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2425
2609
|
}
|
|
2426
2610
|
.aplus-ap-upload-single .ant-upload-drag {
|
|
2427
2611
|
background: #F2F6F9;
|
|
2428
|
-
border: 1px dashed var(--ap-
|
|
2612
|
+
border: 1px dashed var(--ap-border-color-base);
|
|
2429
2613
|
height: 200px;
|
|
2430
2614
|
}
|
|
2431
2615
|
.aplus-ap-upload-single .ant-upload-drag:not(.ant-upload-disabled):hover {
|
|
@@ -2486,7 +2670,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2486
2670
|
cursor: pointer;
|
|
2487
2671
|
}
|
|
2488
2672
|
.aplus-ap-upload-single__content-ing-name {
|
|
2489
|
-
--name-color: var(--ap-
|
|
2673
|
+
--name-color: var(--ap-text-color-2);
|
|
2490
2674
|
}
|
|
2491
2675
|
.aplus-ap-upload-single__content-ing-name .ant-progress-line {
|
|
2492
2676
|
margin-inline-end: 0;
|
|
@@ -2509,13 +2693,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2509
2693
|
}
|
|
2510
2694
|
.aplus-ap-upload-single__content-empty-title {
|
|
2511
2695
|
margin-top: 10px;
|
|
2512
|
-
color: var(--ap-
|
|
2696
|
+
color: var(--ap-text-color-2);
|
|
2513
2697
|
font-size: 16px;
|
|
2514
2698
|
line-height: 22px;
|
|
2515
2699
|
}
|
|
2516
2700
|
.aplus-ap-upload-single__content-empty-sub-title {
|
|
2517
2701
|
margin-top: 4px;
|
|
2518
|
-
color: var(--ap-
|
|
2702
|
+
color: var(--ap-text-color-4);
|
|
2519
2703
|
font-size: 12px;
|
|
2520
2704
|
line-height: 18px;
|
|
2521
2705
|
}
|
|
@@ -2533,11 +2717,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2533
2717
|
.aplus-batch-input-group-popover-input-trigger-icon {
|
|
2534
2718
|
cursor: pointer;
|
|
2535
2719
|
font-size: 16px;
|
|
2536
|
-
color: var(--
|
|
2720
|
+
color: var(--ap-text-color-1);
|
|
2537
2721
|
line-height: 0;
|
|
2538
2722
|
}
|
|
2539
2723
|
.aplus-batch-input-group-popover-input-trigger-icon:hover {
|
|
2540
|
-
color: var(--
|
|
2724
|
+
color: var(--ap-color-primary);
|
|
2541
2725
|
}
|
|
2542
2726
|
.aplus-batch-input-group-popover-input-trigger-icon--disabled {
|
|
2543
2727
|
cursor: not-allowed;
|
|
@@ -2563,6 +2747,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2563
2747
|
}
|
|
2564
2748
|
.aplus-batch-input-group-popover-input__popover--content textarea {
|
|
2565
2749
|
padding: 0;
|
|
2750
|
+
resize: none;
|
|
2566
2751
|
}
|
|
2567
2752
|
.aplus-batch-input-group {
|
|
2568
2753
|
position: relative;
|
|
@@ -2593,6 +2778,35 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2593
2778
|
width: 100vw;
|
|
2594
2779
|
height: 100vh;
|
|
2595
2780
|
}
|
|
2781
|
+
.aplus-ap-grid ::-webkit-scrollbar {
|
|
2782
|
+
width: 10px;
|
|
2783
|
+
height: 10px;
|
|
2784
|
+
}
|
|
2785
|
+
.aplus-ap-grid ::-webkit-scrollbar-thumb {
|
|
2786
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
2787
|
+
background-clip: content-box;
|
|
2788
|
+
border: 1px solid transparent;
|
|
2789
|
+
border-radius: 4px;
|
|
2790
|
+
}
|
|
2791
|
+
.aplus-ap-grid ::-webkit-scrollbar-track,
|
|
2792
|
+
.aplus-ap-grid ::-webkit-scrollbar-corner {
|
|
2793
|
+
background-color: var(--ap-table-header-bg, #f2f6f9);
|
|
2794
|
+
}
|
|
2795
|
+
.aplus-ap-grid ::-webkit-scrollbar-thumb:hover,
|
|
2796
|
+
.aplus-ap-grid ::-webkit-scrollbar-thumb:active {
|
|
2797
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
2798
|
+
}
|
|
2799
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell {
|
|
2800
|
+
min-height: unset !important;
|
|
2801
|
+
padding: 9px 12px;
|
|
2802
|
+
font-size: 12px;
|
|
2803
|
+
line-height: 1.5;
|
|
2804
|
+
}
|
|
2805
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell {
|
|
2806
|
+
min-height: unset !important;
|
|
2807
|
+
padding: 6px 9px;
|
|
2808
|
+
line-height: 1.5;
|
|
2809
|
+
}
|
|
2596
2810
|
.aplus-ap-grid-adaptive {
|
|
2597
2811
|
height: 100%;
|
|
2598
2812
|
display: flex;
|
|
@@ -2603,7 +2817,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2603
2817
|
flex: 1;
|
|
2604
2818
|
}
|
|
2605
2819
|
.aplus-ap-grid .aplus-ap-grid-pagination-wrapper ul.ant-pagination {
|
|
2606
|
-
margin-block:
|
|
2820
|
+
margin-block: 8px;
|
|
2607
2821
|
}
|
|
2608
2822
|
.aplus-ap-grid-sticky .aplus-ap-grid-pagination-wrapper {
|
|
2609
2823
|
background-color: #fff;
|
|
@@ -2663,19 +2877,24 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2663
2877
|
margin-block: 12px;
|
|
2664
2878
|
display: flex;
|
|
2665
2879
|
flex-wrap: wrap;
|
|
2880
|
+
align-items: center;
|
|
2666
2881
|
row-gap: 8px;
|
|
2667
2882
|
}
|
|
2668
2883
|
.aplus-ap-grid-pagination .ant-pagination-total-text {
|
|
2669
2884
|
flex: 1;
|
|
2885
|
+
height: unset;
|
|
2886
|
+
line-height: 1.5;
|
|
2887
|
+
display: flex;
|
|
2888
|
+
align-items: center;
|
|
2670
2889
|
}
|
|
2671
2890
|
.aplus-ap-grid-pagination-count-text {
|
|
2672
|
-
color: var(--ap-
|
|
2891
|
+
color: var(--ap-text-color-2);
|
|
2673
2892
|
}
|
|
2674
2893
|
.aplus-ap-grid-pagination--total-right {
|
|
2675
2894
|
padding-left: 12px;
|
|
2676
2895
|
}
|
|
2677
2896
|
.aplus-ap-grid-pagination-total-wrapper {
|
|
2678
|
-
color: var(--ap-
|
|
2897
|
+
color: var(--ap-text-color-1);
|
|
2679
2898
|
}
|
|
2680
2899
|
.aplus-ap-grid-table-header__title {
|
|
2681
2900
|
display: -webkit-inline-box;
|
|
@@ -2689,15 +2908,24 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2689
2908
|
word-break: break-all;
|
|
2690
2909
|
flex: 1;
|
|
2691
2910
|
}
|
|
2692
|
-
.aplus-ap-grid th .vxe-cell--wrapper {
|
|
2911
|
+
.aplus-ap-grid th.vxe-header--column .vxe-cell--wrapper {
|
|
2693
2912
|
display: flex;
|
|
2694
2913
|
flex-direction: row;
|
|
2695
2914
|
flex-wrap: nowrap;
|
|
2696
2915
|
align-items: center;
|
|
2916
|
+
min-width: unset;
|
|
2697
2917
|
}
|
|
2698
|
-
.aplus-ap-grid th .vxe-cell--wrapper .vxe-cell--title {
|
|
2918
|
+
.aplus-ap-grid th.vxe-header--column .vxe-cell--wrapper .vxe-cell--title {
|
|
2699
2919
|
flex-shrink: 1;
|
|
2700
|
-
flex-grow:
|
|
2920
|
+
flex-grow: 0;
|
|
2921
|
+
}
|
|
2922
|
+
.aplus-ap-grid .fixed-left--wrapper .vxe-table--header,
|
|
2923
|
+
.aplus-ap-grid .fixed-right--wrapper .vxe-table--header {
|
|
2924
|
+
height: 100%;
|
|
2925
|
+
}
|
|
2926
|
+
.aplus-ap-grid .fixed-left--wrapper .vxe-table--footer,
|
|
2927
|
+
.aplus-ap-grid .fixed-right--wrapper .vxe-table--footer {
|
|
2928
|
+
height: 100%;
|
|
2701
2929
|
}
|
|
2702
2930
|
.aplus-editable-grid__header-cell--required {
|
|
2703
2931
|
color: #FF4D4F;
|
|
@@ -2725,7 +2953,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2725
2953
|
box-sizing: border-box;
|
|
2726
2954
|
margin: 0;
|
|
2727
2955
|
padding: 0;
|
|
2728
|
-
color:
|
|
2956
|
+
color: #182948;
|
|
2729
2957
|
font-size: 12px;
|
|
2730
2958
|
font-family: inherit;
|
|
2731
2959
|
line-height: 1.5;
|
|
@@ -2740,7 +2968,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2740
2968
|
.aplus-ap-text__label {
|
|
2741
2969
|
display: inline-flex;
|
|
2742
2970
|
align-items: baseline;
|
|
2743
|
-
color: var(--ap-text-
|
|
2971
|
+
color: var(--ap-text-color-3);
|
|
2744
2972
|
}
|
|
2745
2973
|
.aplus-ap-text__label::after {
|
|
2746
2974
|
content: ':';
|
|
@@ -2764,13 +2992,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2764
2992
|
line-height: 1;
|
|
2765
2993
|
}
|
|
2766
2994
|
.aplus-ap-text span.ant-typography {
|
|
2767
|
-
color: var(--ap-text-
|
|
2995
|
+
color: var(--ap-text-color-2);
|
|
2768
2996
|
}
|
|
2769
2997
|
.aplus-ap-text span.ant-typography.ant-typography-secondary {
|
|
2770
|
-
color: var(--ap-text-
|
|
2998
|
+
color: var(--ap-text-color-3);
|
|
2771
2999
|
}
|
|
2772
3000
|
.aplus-ap-text a.ant-typography {
|
|
2773
|
-
color: var(--
|
|
3001
|
+
color: var(--ap-color-link);
|
|
2774
3002
|
}
|
|
2775
3003
|
.aplus-ap-text-group:has(.ant-typography-ellipsis) {
|
|
2776
3004
|
max-width: 100%;
|
|
@@ -2850,7 +3078,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2850
3078
|
position: absolute;
|
|
2851
3079
|
z-index: 1;
|
|
2852
3080
|
display: none;
|
|
2853
|
-
background: var(--
|
|
3081
|
+
background: var(--ap-color-primary);
|
|
2854
3082
|
opacity: 0.2;
|
|
2855
3083
|
transition: none;
|
|
2856
3084
|
pointer-events: none;
|
|
@@ -2859,7 +3087,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2859
3087
|
box-sizing: border-box;
|
|
2860
3088
|
margin: 0;
|
|
2861
3089
|
padding: 0;
|
|
2862
|
-
color:
|
|
3090
|
+
color: #182948;
|
|
2863
3091
|
font-size: 12px;
|
|
2864
3092
|
line-height: 1.5;
|
|
2865
3093
|
list-style: none;
|
|
@@ -2933,7 +3161,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2933
3161
|
background: rgba(0, 0, 0, 0.04);
|
|
2934
3162
|
font-size: 10px;
|
|
2935
3163
|
border-radius: 2px;
|
|
2936
|
-
color:
|
|
3164
|
+
color: #182948;
|
|
2937
3165
|
cursor: pointer;
|
|
2938
3166
|
opacity: 0;
|
|
2939
3167
|
display: flex;
|
|
@@ -2973,7 +3201,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2973
3201
|
position: absolute;
|
|
2974
3202
|
z-index: 1;
|
|
2975
3203
|
display: none;
|
|
2976
|
-
background: var(--
|
|
3204
|
+
background: var(--ap-color-primary);
|
|
2977
3205
|
opacity: 0.2;
|
|
2978
3206
|
transition: none;
|
|
2979
3207
|
pointer-events: none;
|
|
@@ -3021,7 +3249,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3021
3249
|
position: absolute;
|
|
3022
3250
|
z-index: 1;
|
|
3023
3251
|
display: none;
|
|
3024
|
-
background: var(--
|
|
3252
|
+
background: var(--ap-color-primary);
|
|
3025
3253
|
opacity: 0.2;
|
|
3026
3254
|
transition: none;
|
|
3027
3255
|
pointer-events: none;
|
|
@@ -3074,7 +3302,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3074
3302
|
padding: 0;
|
|
3075
3303
|
}
|
|
3076
3304
|
.aplus-ap-view > .ant-dropdown-trigger {
|
|
3077
|
-
color: var(--ap-
|
|
3305
|
+
color: var(--ap-text-color-3);
|
|
3078
3306
|
}
|
|
3079
3307
|
.aplus-ap-view-main-content {
|
|
3080
3308
|
padding: 4px 8px;
|
|
@@ -3083,11 +3311,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3083
3311
|
justify-content: center;
|
|
3084
3312
|
}
|
|
3085
3313
|
.aplus-ap-view-main-content-disabled {
|
|
3086
|
-
color: var(--ap-
|
|
3314
|
+
color: var(--ap-text-color-4);
|
|
3087
3315
|
cursor: not-allowed;
|
|
3088
3316
|
}
|
|
3089
3317
|
.ant-btn-default:has(.aplus-ap-view-main-content-disabled) {
|
|
3090
|
-
border-color: var(--ap-
|
|
3318
|
+
border-color: var(--ap-border-color-base) !important;
|
|
3091
3319
|
}
|
|
3092
3320
|
.aplus-ap-view-icon {
|
|
3093
3321
|
width: 100%;
|
|
@@ -3154,13 +3382,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3154
3382
|
font-size: 12px;
|
|
3155
3383
|
display: flex;
|
|
3156
3384
|
align-items: center;
|
|
3157
|
-
color: var(--
|
|
3385
|
+
color: var(--ap-color-primary);
|
|
3158
3386
|
}
|
|
3159
3387
|
.aplus-ap-view-menu-list-content .menu-list-content-action-delete {
|
|
3160
3388
|
cursor: pointer;
|
|
3161
3389
|
display: flex;
|
|
3162
3390
|
align-items: center;
|
|
3163
|
-
color: var(--ap-
|
|
3391
|
+
color: var(--ap-text-color-3);
|
|
3164
3392
|
}
|
|
3165
3393
|
.aplus-ap-view-menu-list-content .menu-list-content-edit {
|
|
3166
3394
|
display: flex;
|
|
@@ -3173,7 +3401,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3173
3401
|
flex-shrink: 0;
|
|
3174
3402
|
}
|
|
3175
3403
|
.aplus-ap-view-menu-list-content:hover {
|
|
3176
|
-
background: var(--ap-
|
|
3404
|
+
background: var(--ap-color-bg-1);
|
|
3177
3405
|
}
|
|
3178
3406
|
.aplus-ap-view-menu-list-content:hover .menu-list-content-action {
|
|
3179
3407
|
display: block;
|
|
@@ -3184,7 +3412,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3184
3412
|
cursor: default;
|
|
3185
3413
|
}
|
|
3186
3414
|
.aplus-ap-view-menu-list-content-active .menu-list-content-name {
|
|
3187
|
-
color: var(--
|
|
3415
|
+
color: var(--ap-color-primary);
|
|
3188
3416
|
}
|
|
3189
3417
|
.aplus-ap-view-overlay .ant-dropdown-menu {
|
|
3190
3418
|
padding: 8px;
|
|
@@ -3195,3 +3423,51 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3195
3423
|
.aplus-ap-view-overlay .ant-dropdown-menu .ant-dropdown-menu-item:hover {
|
|
3196
3424
|
background: transparent;
|
|
3197
3425
|
}
|
|
3426
|
+
.aplus-ap-radio-group {
|
|
3427
|
+
font-size: 12px;
|
|
3428
|
+
padding: 8px 8px 0;
|
|
3429
|
+
background-color: #fff;
|
|
3430
|
+
}
|
|
3431
|
+
.aplus-ap-radio-group__item {
|
|
3432
|
+
cursor: pointer;
|
|
3433
|
+
padding-inline: 12px;
|
|
3434
|
+
border-radius: 4px;
|
|
3435
|
+
color: var(--ap-text-color-1);
|
|
3436
|
+
transition: all 0.3s ease-in-out;
|
|
3437
|
+
}
|
|
3438
|
+
.aplus-ap-radio-group__item:hover {
|
|
3439
|
+
background-color: var(--ap-color-bg-2);
|
|
3440
|
+
}
|
|
3441
|
+
.aplus-ap-radio-group__item--active {
|
|
3442
|
+
color: var(--ap-color-primary);
|
|
3443
|
+
background-color: var(--ap-radio-group-item-active-bg-color) !important;
|
|
3444
|
+
}
|
|
3445
|
+
.ant-drawer .ant-drawer-content-wrapper {
|
|
3446
|
+
box-shadow: none;
|
|
3447
|
+
}
|
|
3448
|
+
.ant-drawer .ant-drawer-content {
|
|
3449
|
+
overflow: inherit;
|
|
3450
|
+
}
|
|
3451
|
+
.aplus-ap-drawer-aplus .ant-drawer-wrapper-body {
|
|
3452
|
+
box-shadow: -8px 2px 24px 0px rgba(24, 41, 72, 0.2);
|
|
3453
|
+
}
|
|
3454
|
+
.aplus-ap-drawer-admin .ant-drawer-wrapper-body {
|
|
3455
|
+
box-shadow: -8px 2px 24px 0px rgba(51, 51, 51, 0.2);
|
|
3456
|
+
}
|
|
3457
|
+
.aplus-ap-drawer-close {
|
|
3458
|
+
width: 32px;
|
|
3459
|
+
height: 32px;
|
|
3460
|
+
display: flex;
|
|
3461
|
+
flex-direction: column;
|
|
3462
|
+
justify-content: center;
|
|
3463
|
+
align-items: center;
|
|
3464
|
+
border: 1px solid #D9D9D9;
|
|
3465
|
+
border-radius: 4px;
|
|
3466
|
+
cursor: pointer;
|
|
3467
|
+
}
|
|
3468
|
+
.aplus-ap-drawer-close .aplus-frontend-icon {
|
|
3469
|
+
font-size: 18px;
|
|
3470
|
+
}
|
|
3471
|
+
.aplus-ap-drawer-close:hover .aplus-frontend-icon {
|
|
3472
|
+
color: #FF4D4F;
|
|
3473
|
+
}
|