@aplus-frontend/ui 0.6.0-beta.8 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.mjs +307 -289
- 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/components/ApDrawerClose.vue.d.ts +7 -0
- package/es/src/ap-drawer/components/ApDrawerClose.vue.mjs +4 -0
- package/es/src/ap-drawer/components/ApDrawerClose.vue2.mjs +25 -0
- package/es/src/ap-drawer/index.d.ts +2 -0
- package/es/src/ap-drawer/index.mjs +5 -2
- package/es/src/ap-drawer/utils/createDrawer.mjs +38 -33
- 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 +2 -4
- package/es/src/ap-field/radio/index.vue.d.ts +2 -4
- package/es/src/ap-field/rate/index.vue.d.ts +2 -4
- package/es/src/ap-field/select/index.vue.d.ts +3 -6
- 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.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 +5 -10
- package/es/src/ap-form/item/index.vue.mjs +69 -73
- package/es/src/ap-form/item-group/index.vue.mjs +34 -35
- package/es/src/ap-form/items/select/index.vue.mjs +12 -14
- 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.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/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 +79 -71
- package/es/src/ap-form/search-form/hooks/use-count-per-row.mjs +31 -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 +20 -20
- package/es/src/ap-grid/editable/form-item.vue.mjs +39 -36
- package/es/src/ap-grid/editable/index.vue.mjs +13 -10
- 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/hooks/use-table-style.d.ts +16 -0
- package/es/src/ap-grid/hooks/use-table-style.mjs +26 -0
- package/es/src/ap-grid/index.vue.mjs +295 -243
- package/es/src/ap-grid/interface.d.ts +32 -3
- package/es/src/ap-grid/utils/table.mjs +15 -15
- package/es/src/ap-list/index.vue.d.ts +2 -9
- package/es/src/ap-list/index.vue.mjs +113 -103
- package/es/src/ap-list/interface.d.ts +24 -3
- package/es/src/ap-modal/interface.d.ts +2 -1
- package/es/src/ap-modal/utils/createModalStream.mjs +24 -24
- package/es/src/ap-table/ap-table.vue.d.ts +10 -2
- package/es/src/ap-table/ap-table.vue2.mjs +86 -82
- package/es/src/ap-table/components/setting/modal/index.vue2.mjs +42 -44
- package/es/src/ap-table/constants.d.ts +22 -22
- package/es/src/ap-table/hooks/use-table-paging-ng.d.ts +25 -6
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +158 -130
- package/es/src/ap-table/interface.d.ts +17 -4
- package/es/src/ap-table/utils.d.ts +21 -21
- package/es/src/ap-tag/ap-tag-group.vue.mjs +32 -28
- package/es/src/business/ap-card/ApCard.vue.d.ts +2 -4
- package/es/src/business/ap-card/ApCard.vue2.mjs +34 -33
- package/es/src/business/ap-card/index.d.ts +2 -4
- package/es/src/business/ap-card/interface.d.ts +5 -0
- 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.vue2.mjs +92 -71
- 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 +108 -0
- package/es/src/business/ap-keep-alive/index.mjs +15 -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 +23 -0
- package/es/src/business/ap-keep-alive/utils.mjs +42 -0
- 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/interface.d.ts +2 -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 +21 -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 +73 -0
- package/es/src/business/ap-radio-group/index.d.ts +66 -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-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 +4 -1
- package/es/src/business/ap-view/ap-view.vue2.mjs +135 -115
- 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/index.d.ts +12 -3
- package/es/src/business/ap-view/interface.d.ts +7 -0
- package/es/src/business/batch-input-group/form-item.vue.mjs +14 -13
- 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/components.d.ts +1 -0
- package/es/src/editable-table/form-item.vue.mjs +23 -23
- package/es/src/full-screen/interface.d.ts +5 -6
- package/es/src/index.mjs +112 -97
- 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/mock-warning.d.ts +1 -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-descriptions/ap-descriptions.vue.js +1 -1
- package/lib/src/ap-descriptions/help-message/index.vue2.js +1 -1
- package/lib/src/ap-drawer/components/ApDrawerClose.vue.d.ts +7 -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 +2 -0
- package/lib/src/ap-drawer/index.js +1 -1
- package/lib/src/ap-drawer/utils/createDrawer.js +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 +2 -4
- package/lib/src/ap-field/radio/index.vue.d.ts +2 -4
- package/lib/src/ap-field/rate/index.vue.d.ts +2 -4
- package/lib/src/ap-field/select/index.vue.d.ts +3 -6
- 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.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 +5 -10
- package/lib/src/ap-form/item/index.vue.js +1 -1
- package/lib/src/ap-form/item-group/index.vue.js +1 -1
- package/lib/src/ap-form/items/select/index.vue.js +1 -1
- 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.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/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/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/hooks/use-table-style.d.ts +16 -0
- package/lib/src/ap-grid/hooks/use-table-style.js +1 -0
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-grid/interface.d.ts +32 -3
- package/lib/src/ap-grid/utils/table.js +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 +24 -3
- package/lib/src/ap-modal/interface.d.ts +2 -1
- package/lib/src/ap-modal/utils/createModalStream.js +1 -1
- 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/constants.d.ts +22 -22
- package/lib/src/ap-table/hooks/use-table-paging-ng.d.ts +25 -6
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/ap-table/interface.d.ts +17 -4
- package/lib/src/ap-table/utils.d.ts +21 -21
- package/lib/src/ap-tag/ap-tag-group.vue.js +1 -1
- package/lib/src/business/ap-card/ApCard.vue.d.ts +2 -4
- package/lib/src/business/ap-card/ApCard.vue2.js +1 -1
- package/lib/src/business/ap-card/index.d.ts +2 -4
- package/lib/src/business/ap-card/interface.d.ts +5 -0
- 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.vue2.js +1 -1
- 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 +108 -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 +23 -0
- package/lib/src/business/ap-keep-alive/utils.js +1 -0
- 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/interface.d.ts +2 -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 +21 -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 +66 -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-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 +4 -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/index.d.ts +12 -3
- package/lib/src/business/ap-view/interface.d.ts +7 -0
- package/lib/src/business/batch-input-group/form-item.vue.js +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/components.d.ts +1 -0
- package/lib/src/editable-table/form-item.vue.js +1 -1
- 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/mock-warning.d.ts +1 -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 +5 -18
- 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/drawer.css +3 -0
- package/theme/antd-global-overwrite/admin/drawer.less +5 -0
- package/theme/antd-global-overwrite/admin/field.css +42 -0
- package/theme/antd-global-overwrite/admin/field.less +43 -0
- package/theme/antd-global-overwrite/admin/index.css +93 -631
- package/theme/antd-global-overwrite/admin/index.less +1 -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 +20 -34
- package/theme/antd-global-overwrite/admin/modal.less +20 -38
- 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/aplus/alert.css +8 -18
- 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/drawer.css +3 -0
- package/theme/antd-global-overwrite/aplus/drawer.less +5 -0
- package/theme/antd-global-overwrite/aplus/field.css +36 -0
- package/theme/antd-global-overwrite/aplus/field.less +36 -0
- package/theme/antd-global-overwrite/aplus/index.css +93 -679
- package/theme/antd-global-overwrite/aplus/index.less +0 -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 +18 -39
- package/theme/antd-global-overwrite/aplus/modal.less +19 -45
- package/theme/antd-global-overwrite/aplus/table.css +11 -236
- package/theme/antd-global-overwrite/aplus/table.less +4 -134
- package/theme/ap-action/item-dropdown.css +4 -4
- package/theme/ap-action/item.css +23 -12
- package/theme/ap-action/item.less +18 -6
- package/theme/ap-appendix/ap-appendix.css +13 -13
- package/theme/ap-appendix/ap-appendix.less +8 -8
- package/theme/ap-attachment/ap-attachment.css +6 -5
- package/theme/ap-attachment/ap-attachment.less +2 -2
- package/theme/ap-batch-action/ap-batch-action.css +7 -7
- package/theme/ap-batch-action/ap-batch-action.less +3 -3
- package/theme/ap-button/ap-button.css +4 -4
- package/theme/ap-card/ap-card.css +5 -5
- 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 +10 -8
- package/theme/ap-descriptions/ap-descriptions.less +6 -4
- package/theme/ap-download/ap-download.css +7 -7
- package/theme/ap-drawer/ap-drawer.css +66 -0
- package/theme/ap-drawer/ap-drawer.less +27 -0
- package/theme/ap-expand-alert/ap-expand-alert.css +5 -4
- package/theme/ap-expand-alert/ap-expand-alert.less +2 -1
- package/theme/ap-field/checkbox.css +4 -4
- package/theme/ap-field/index.css +4 -4
- package/theme/ap-field/number.css +4 -4
- package/theme/ap-field/radio.css +4 -4
- package/theme/ap-field/text-area.css +4 -4
- package/theme/ap-form/ap-form-item-group.css +4 -4
- package/theme/ap-form/ap-form-item.css +12 -9
- package/theme/ap-form/ap-form-item.less +8 -5
- package/theme/ap-form/drawer-form.css +4 -4
- package/theme/ap-form/index.css +34 -22
- package/theme/ap-form/item-text-group.css +4 -4
- package/theme/ap-form/item-text.css +4 -4
- package/theme/ap-form/modal-form.css +4 -4
- package/theme/ap-form/search-form-sorter.css +17 -16
- package/theme/ap-form/search-form-sorter.less +5 -4
- package/theme/ap-form/search-form.css +34 -22
- package/theme/ap-form/search-form.less +9 -1
- package/theme/ap-grid/editable.css +4 -4
- package/theme/ap-grid/index.css +83 -44
- package/theme/ap-grid/index.less +26 -9
- package/theme/ap-group-search/ap-extension-select.css +4 -4
- package/theme/ap-group-search/ap-group-search.css +4 -4
- package/theme/ap-group-search/ap-popover-select.css +4 -4
- package/theme/ap-image/ap-image.css +4 -4
- package/theme/ap-input-radio/ap-input-radio.css +4 -4
- package/theme/ap-label/ap-label.css +4 -4
- package/theme/ap-ladder/ap-ladder.css +7 -6
- package/theme/ap-ladder/ap-ladder.less +1 -0
- package/theme/ap-layout/ap-info-layout.css +4 -4
- package/theme/ap-list/index.css +4 -4
- package/theme/ap-product-info/ap-product-info.css +24 -34
- package/theme/ap-product-info/ap-product-info.less +28 -42
- package/theme/ap-radio-group/ap-radio-group.css +66 -0
- package/theme/ap-radio-group/ap-radio-group.less +26 -0
- package/theme/ap-select-layout/ap-select-layout.css +6 -6
- package/theme/ap-size-input/ap-size-input.css +4 -4
- package/theme/ap-status/ap-status.css +5 -5
- package/theme/ap-status/ap-status.less +1 -1
- package/theme/ap-summary/index.css +4 -4
- package/theme/ap-table/ap-table-index.css +4 -4
- package/theme/ap-table/ap-table-paragraph-ellipsis.css +5 -5
- package/theme/ap-table/ap-table-paragraph-ellipsis.less +1 -1
- package/theme/ap-table/ap-table.css +90 -52
- package/theme/ap-table/ap-table.less +19 -7
- package/theme/ap-table/setting/index.css +19 -15
- package/theme/ap-table/setting/modal.css +11 -7
- package/theme/ap-table/setting/modal.less +5 -1
- package/theme/ap-table/setting/select-group.css +4 -4
- package/theme/ap-table/setting/sortable-item-meta.css +6 -6
- package/theme/ap-table/setting/sortable-item-meta.less +2 -2
- package/theme/ap-table/setting/sortable-item.css +4 -4
- package/theme/ap-table/setting/sorter.css +10 -10
- package/theme/ap-table/setting/sorter.less +4 -4
- package/theme/ap-table-modal/index.css +105 -65
- package/theme/ap-table-modal/index.less +15 -13
- package/theme/ap-tag/ap-tag-group.css +6 -6
- package/theme/ap-tag/ap-tag-group.less +2 -3
- package/theme/ap-tag/ap-tag.css +10 -10
- package/theme/ap-tag/ap-tag.less +4 -4
- package/theme/ap-title/ap-title.css +9 -7
- package/theme/ap-title/ap-title.less +5 -3
- package/theme/ap-upload/index.css +9 -9
- package/theme/ap-upload/multiple-file.css +5 -5
- package/theme/ap-upload/multiple-file.less +1 -1
- package/theme/ap-upload/picture.css +6 -6
- package/theme/ap-upload/picture.less +2 -2
- package/theme/ap-upload/single-file.css +6 -6
- package/theme/ap-upload/single-file.less +2 -2
- package/theme/ap-upload/upload.css +4 -4
- package/theme/ap-upload-single/index.css +8 -8
- package/theme/ap-upload-single/index.less +4 -4
- package/theme/ap-view/ap-view.css +11 -11
- package/theme/ap-view/ap-view.less +7 -7
- package/theme/batch-input-group/index.css +7 -6
- package/theme/batch-input-group/popover-input.css +7 -6
- package/theme/batch-input-group/popover-input.less +3 -2
- package/theme/check-card/index.css +15 -15
- package/theme/check-card/index.less +5 -5
- package/theme/editable-table/index.css +53 -30
- package/theme/full-screen/index.css +4 -4
- package/theme/index.css +382 -270
- package/theme/index.less +3 -0
- package/theme/mask/index.css +4 -4
- package/theme/mixins/config.less +4 -4
- package/theme/mixins/mixins.css +4 -4
- package/theme/mixins/mixins.less +2 -2
- package/theme/scroll-bar/index.css +4 -4
- package/theme/scroll-view/index.css +4 -4
- package/theme/splitter/index.css +10 -10
- package/theme/splitter/index.less +1 -1
- package/theme/text/group.css +4 -4
- package/theme/text/index.css +10 -10
- package/theme/text/index.less +4 -4
- package/theme/ui-mode.css +51 -83
- package/theme/ui-mode.less +99 -83
- package/theme/work-order-modal/index.css +4 -4
package/theme/index.css
CHANGED
|
@@ -1,103 +1,71 @@
|
|
|
1
1
|
[data-aplus-ui-mode='aplus'] {
|
|
2
|
-
--ap-
|
|
3
|
-
--ap-
|
|
4
|
-
--ap-
|
|
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;
|
|
5
10
|
--ap-form-bordered-shadow-color: rgba(5, 155, 255, 0.1);
|
|
6
|
-
--ap-
|
|
7
|
-
--ap-
|
|
8
|
-
--ap-
|
|
9
|
-
--ap-
|
|
10
|
-
--ap-
|
|
11
|
-
--
|
|
12
|
-
--check-card-hover-outline-color: #0070ff;
|
|
13
|
-
--check-card-checked-outline-color: #0070ff;
|
|
14
|
-
--check-card-checked-bg: #0070ff;
|
|
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;
|
|
15
17
|
--ap-table-header-bg: #f2f6f9;
|
|
16
|
-
--ap-
|
|
17
|
-
--ap-
|
|
18
|
-
--ap-
|
|
19
|
-
--ap-
|
|
20
|
-
--ap-
|
|
21
|
-
--ap-
|
|
22
|
-
--
|
|
23
|
-
--
|
|
24
|
-
--
|
|
25
|
-
--ap-descriptions-item-padding-bottom: 16px;
|
|
26
|
-
--ap-descriptions-item-label-width: auto;
|
|
27
|
-
--ap-descriptions-last-row-item-padding-bottom: 0px;
|
|
28
|
-
--ap-appendix-area-color-border: #dee4ed;
|
|
29
|
-
--ap-appendix-area-color-font: #182948;
|
|
30
|
-
--ap-appendix-area-color-font-hover: #0070ff;
|
|
31
|
-
--ap-appendix-area-color-font-disabled: #abb7cc;
|
|
32
|
-
--ap-appendix-area-color-icon: #abb7cc;
|
|
33
|
-
--ap-upload-single-color-main: #182948;
|
|
34
|
-
--ap-upload-single-color-sub: #abb7cc;
|
|
35
|
-
--ap-upload-single-color-border: #dee4ed;
|
|
36
|
-
--ap-upload-single-color-primary: #0070ff;
|
|
37
|
-
--batch-input-group-trigger-color: #526a90;
|
|
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;
|
|
38
27
|
--batch-input-group-trigger-color-disabled: rgba(24, 41, 72, 0.25);
|
|
39
|
-
--ap-
|
|
40
|
-
--ap-
|
|
41
|
-
--ap-text-content-color-minor: #8896b0;
|
|
42
|
-
--ap-view-icon-color: #8896b0;
|
|
43
|
-
--ap-view-bg-color: #f6f9fa;
|
|
44
|
-
--ap-view-message-color: #abb7cc;
|
|
45
|
-
--ap-view-border-color: #dee4ed;
|
|
28
|
+
--ap-radio-group-item-active-bg-color: rgba(0, 112, 255, 0.12);
|
|
29
|
+
--ap-drawer-wrapper-shadow: -8px 2px 24px 0px rgba(24, 41, 72, 0.2);
|
|
46
30
|
}
|
|
47
31
|
[data-aplus-ui-mode='admin'] {
|
|
48
|
-
--ap-
|
|
49
|
-
--ap-
|
|
50
|
-
--ap-
|
|
32
|
+
--ap-border-color-base: #d9d9d9;
|
|
33
|
+
--ap-hover-color-base: #85d4b0;
|
|
34
|
+
--ap-active-color-base: #85d4b0;
|
|
35
|
+
--ap-color-primary: #34b77c;
|
|
36
|
+
--ap-color-primary-disabled: #d6f1e5;
|
|
37
|
+
--ap-color-link: #1890ff;
|
|
38
|
+
--ap-color-link-hover: #5eb1ff;
|
|
39
|
+
--ap-color-link-disabled: #cce2ff;
|
|
51
40
|
--ap-form-bordered-shadow-color: rgba(11, 166, 66, 0.09);
|
|
52
|
-
--ap-
|
|
53
|
-
--ap-
|
|
54
|
-
--ap-
|
|
55
|
-
--ap-
|
|
56
|
-
--ap-
|
|
57
|
-
--
|
|
58
|
-
--
|
|
59
|
-
--
|
|
60
|
-
--
|
|
61
|
-
--ap-
|
|
62
|
-
--ap-
|
|
63
|
-
--ap-
|
|
64
|
-
--ap-
|
|
65
|
-
--ap-
|
|
66
|
-
--ap-
|
|
67
|
-
--ap-
|
|
68
|
-
--basic-color-primary: #34b77c;
|
|
69
|
-
--basic-scrollbar-thumb-color-base: #bfbfbf;
|
|
70
|
-
--basic-scrollbar-thumb-color-hover: #787878;
|
|
71
|
-
--ap-descriptions-item-padding-bottom: 16px;
|
|
72
|
-
--ap-descriptions-item-label-width: auto;
|
|
73
|
-
--ap-descriptions-last-row-item-padding-bottom: 0px;
|
|
74
|
-
--ap-appendix-area-color-border: #d9d9d9;
|
|
75
|
-
--ap-appendix-area-color-font: #333333;
|
|
76
|
-
--ap-appendix-area-color-font-hover: #1890ff;
|
|
77
|
-
--ap-appendix-area-color-font-disabled: #bfbfbf;
|
|
78
|
-
--ap-appendix-area-color-icon: #bfbfbf;
|
|
79
|
-
--ap-upload-single-color-main: #333333;
|
|
80
|
-
--ap-upload-single-color-sub: #bfbfbf;
|
|
81
|
-
--ap-upload-single-color-border: #d9d9d9;
|
|
82
|
-
--ap-upload-single-color-primary: #34b77c;
|
|
83
|
-
--batch-input-group-trigger-color: #999999;
|
|
41
|
+
--ap-color-success: #34b77c;
|
|
42
|
+
--ap-color-success-disabled: #d6f1e5;
|
|
43
|
+
--ap-color-error: #ff4d4f;
|
|
44
|
+
--ap-color-error-disabled: #ffdbdc;
|
|
45
|
+
--ap-color-warn: #faad14;
|
|
46
|
+
--ap-color-warn-disabled: #ffeed9;
|
|
47
|
+
--ap-table-header-bg: #f7f7f7;
|
|
48
|
+
--ap-text-color-1: #666666;
|
|
49
|
+
--ap-text-color-2: #333333;
|
|
50
|
+
--ap-text-color-3: #999999;
|
|
51
|
+
--ap-color-bg: #e9e9e9;
|
|
52
|
+
--ap-color-bg-1: #f6f9fa;
|
|
53
|
+
--ap-color-bg-2: #f5f5f5;
|
|
54
|
+
--ap-scrollbar-thumb-color-base: #bfbfbf;
|
|
55
|
+
--ap-scrollbar-thumb-color-hover: #787878;
|
|
56
|
+
--ap-text-color-4: #bfbfbf;
|
|
84
57
|
--batch-input-group-trigger-color-disabled: rgba(0, 0, 0, 0.25);
|
|
85
|
-
--ap-
|
|
86
|
-
--ap-
|
|
87
|
-
--ap-text-content-color-minor: #999999;
|
|
88
|
-
--ap-view-icon-color: #999999;
|
|
89
|
-
--ap-view-bg-color: #fafafa;
|
|
90
|
-
--ap-view-message-color: #bfbfbf;
|
|
91
|
-
--ap-view-border-color: #d9d9d9;
|
|
58
|
+
--ap-radio-group-item-active-bg-color: rgba(52, 183, 124, 0.12);
|
|
59
|
+
--ap-drawer-wrapper-shadow: -8px 2px 24px 0px rgba(51, 51, 51, 0.2);
|
|
92
60
|
}
|
|
93
61
|
.reset-component {
|
|
94
62
|
box-sizing: border-box;
|
|
95
63
|
margin: 0;
|
|
96
64
|
padding: 0;
|
|
97
|
-
color:
|
|
65
|
+
color: #182948;
|
|
98
66
|
font-size: 12px;
|
|
99
67
|
font-family: inherit;
|
|
100
|
-
line-height:
|
|
68
|
+
line-height: 18px;
|
|
101
69
|
list-style: none;
|
|
102
70
|
}
|
|
103
71
|
.reset-scrollbar ::-webkit-scrollbar {
|
|
@@ -105,7 +73,7 @@
|
|
|
105
73
|
height: 10px;
|
|
106
74
|
}
|
|
107
75
|
.reset-scrollbar ::-webkit-scrollbar-thumb {
|
|
108
|
-
background-color: var(--
|
|
76
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
109
77
|
background-clip: content-box;
|
|
110
78
|
border: 1px solid transparent;
|
|
111
79
|
border-radius: 4px;
|
|
@@ -116,7 +84,7 @@
|
|
|
116
84
|
}
|
|
117
85
|
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
|
|
118
86
|
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
|
|
119
|
-
background-color: var(--
|
|
87
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
120
88
|
}
|
|
121
89
|
.clear-fix::before {
|
|
122
90
|
display: table;
|
|
@@ -140,28 +108,28 @@
|
|
|
140
108
|
box-sizing: border-box;
|
|
141
109
|
margin: 0;
|
|
142
110
|
padding: 0;
|
|
143
|
-
color:
|
|
111
|
+
color: #182948;
|
|
144
112
|
font-size: 12px;
|
|
145
113
|
font-family: inherit;
|
|
146
|
-
line-height:
|
|
114
|
+
line-height: 18px;
|
|
147
115
|
list-style: none;
|
|
148
116
|
display: inline-block;
|
|
149
117
|
cursor: pointer;
|
|
150
118
|
}
|
|
151
119
|
.aplus-action-item--primary {
|
|
152
|
-
color: var(--ap-
|
|
120
|
+
color: var(--ap-color-link);
|
|
153
121
|
}
|
|
154
122
|
.aplus-action-item--primary:not(.aplus-action-item--disabled):hover {
|
|
155
|
-
color: var(--ap-
|
|
123
|
+
color: var(--ap-color-link-hover);
|
|
156
124
|
}
|
|
157
125
|
.aplus-action-item--success {
|
|
158
|
-
color: var(--ap-
|
|
126
|
+
color: var(--ap-color-success);
|
|
159
127
|
}
|
|
160
128
|
.aplus-action-item--error {
|
|
161
|
-
color: var(--ap-
|
|
129
|
+
color: var(--ap-color-error);
|
|
162
130
|
}
|
|
163
131
|
.aplus-action-item--warn {
|
|
164
|
-
color: var(--ap-
|
|
132
|
+
color: var(--ap-color-warn);
|
|
165
133
|
}
|
|
166
134
|
.aplus-action-item--loading {
|
|
167
135
|
opacity: 0.35;
|
|
@@ -172,9 +140,20 @@
|
|
|
172
140
|
margin-right: 4px;
|
|
173
141
|
}
|
|
174
142
|
.aplus-action-item--disabled {
|
|
175
|
-
color: #CCE2FF;
|
|
176
143
|
cursor: not-allowed;
|
|
177
144
|
}
|
|
145
|
+
.aplus-action-item--primary.aplus-action-item--disabled {
|
|
146
|
+
color: var(--ap-color-link-disabled);
|
|
147
|
+
}
|
|
148
|
+
.aplus-action-item--success.aplus-action-item--disabled {
|
|
149
|
+
color: var(--ap-color-success-disabled);
|
|
150
|
+
}
|
|
151
|
+
.aplus-action-item--error.aplus-action-item--disabled {
|
|
152
|
+
color: var(--ap-color-error-disabled);
|
|
153
|
+
}
|
|
154
|
+
.aplus-action-item--warn.aplus-action-item--disabled {
|
|
155
|
+
color: var(--ap-color-warn-disabled);
|
|
156
|
+
}
|
|
178
157
|
.aplus-action-item-dropdown__item .aplus-action-item {
|
|
179
158
|
width: 100%;
|
|
180
159
|
}
|
|
@@ -224,6 +203,7 @@
|
|
|
224
203
|
.aplus-ap-attachment__more {
|
|
225
204
|
display: inline-block;
|
|
226
205
|
font-size: 12px;
|
|
206
|
+
line-height: 18px;
|
|
227
207
|
cursor: pointer;
|
|
228
208
|
color: var(--download-main-color);
|
|
229
209
|
}
|
|
@@ -240,7 +220,7 @@
|
|
|
240
220
|
.aplus-ap-attachment__file-item {
|
|
241
221
|
flex: 1;
|
|
242
222
|
word-wrap: break-word;
|
|
243
|
-
margin-bottom:
|
|
223
|
+
margin-bottom: 12px;
|
|
244
224
|
font-size: 12px;
|
|
245
225
|
color: #000;
|
|
246
226
|
cursor: pointer;
|
|
@@ -275,10 +255,10 @@
|
|
|
275
255
|
display: flex;
|
|
276
256
|
align-items: center;
|
|
277
257
|
font-size: 12px;
|
|
278
|
-
color: var(--ap-
|
|
258
|
+
color: var(--ap-text-color-3);
|
|
279
259
|
}
|
|
280
260
|
.aplus-ap-batch-action-body .selected-desc-conut span {
|
|
281
|
-
color: var(--ap-
|
|
261
|
+
color: var(--ap-color-primary);
|
|
282
262
|
font-weight: bold;
|
|
283
263
|
min-width: 10px;
|
|
284
264
|
text-align: center;
|
|
@@ -294,7 +274,7 @@
|
|
|
294
274
|
width: 100%;
|
|
295
275
|
padding-bottom: 8px;
|
|
296
276
|
margin-bottom: 8px;
|
|
297
|
-
border-bottom: 1px solid var(--ap-
|
|
277
|
+
border-bottom: 1px solid var(--ap-color-bg);
|
|
298
278
|
}
|
|
299
279
|
.aplus-ap-action-button-border-link:not(:disabled):hover,
|
|
300
280
|
.aplus-ap-action-button-border-link:not(:disabled):active,
|
|
@@ -310,7 +290,7 @@
|
|
|
310
290
|
margin-top: 10px;
|
|
311
291
|
}
|
|
312
292
|
.aplus-ap-card-title {
|
|
313
|
-
margin-bottom:
|
|
293
|
+
margin-bottom: 12px;
|
|
314
294
|
}
|
|
315
295
|
/**
|
|
316
296
|
TODO:
|
|
@@ -320,13 +300,13 @@
|
|
|
320
300
|
table-layout: fixed;
|
|
321
301
|
}
|
|
322
302
|
.aplus-ap-descriptions .ant-descriptions td.ant-descriptions-item {
|
|
323
|
-
padding-bottom: var(--ap-descriptions-item-padding-bottom);
|
|
303
|
+
padding-bottom: var(--ap-descriptions-item-padding-bottom, 16px);
|
|
324
304
|
}
|
|
325
305
|
.aplus-ap-descriptions .ant-descriptions th.ant-descriptions-item {
|
|
326
306
|
padding-bottom: 8px;
|
|
327
307
|
}
|
|
328
308
|
.aplus-ap-descriptions .ant-descriptions .ant-descriptions-row:last-child .ant-descriptions-item {
|
|
329
|
-
padding-bottom: var(--ap-descriptions-last-row-item-padding-bottom);
|
|
309
|
+
padding-bottom: var(--ap-descriptions-last-row-item-padding-bottom, 0px);
|
|
330
310
|
}
|
|
331
311
|
.aplus-ap-descriptions .ant-descriptions .ant-descriptions-item-label::after {
|
|
332
312
|
margin-inline: 4px 12px;
|
|
@@ -352,10 +332,11 @@
|
|
|
352
332
|
}
|
|
353
333
|
.aplus-ap-descriptions--admin .ant-descriptions-row .ant-descriptions-item-label {
|
|
354
334
|
justify-content: flex-end;
|
|
355
|
-
width: var(--ap-descriptions-item-label-width);
|
|
335
|
+
width: var(--ap-descriptions-item-label-width, auto);
|
|
356
336
|
color: #999999;
|
|
357
337
|
}
|
|
358
338
|
.aplus-ap-descriptions--admin .ant-descriptions-row .ant-descriptions-item-label .ap-descriptions-item-content__help {
|
|
339
|
+
font-size: 14px;
|
|
359
340
|
margin-left: 4px;
|
|
360
341
|
color: #999999;
|
|
361
342
|
}
|
|
@@ -368,10 +349,11 @@
|
|
|
368
349
|
}
|
|
369
350
|
.aplus-ap-descriptions--aplus .ant-descriptions-row .ant-descriptions-item-label {
|
|
370
351
|
justify-content: flex-end;
|
|
371
|
-
width: var(--ap-descriptions-item-label-width);
|
|
352
|
+
width: var(--ap-descriptions-item-label-width, auto);
|
|
372
353
|
color: #8896B0;
|
|
373
354
|
}
|
|
374
355
|
.aplus-ap-descriptions--aplus .ant-descriptions-row .ant-descriptions-item-label .ap-descriptions-item-content__help {
|
|
356
|
+
font-size: 14px;
|
|
375
357
|
margin-left: 4px;
|
|
376
358
|
color: #8896B0;
|
|
377
359
|
}
|
|
@@ -408,15 +390,15 @@
|
|
|
408
390
|
color: var(--download-main-color-opacity);
|
|
409
391
|
}
|
|
410
392
|
.aplus-ap-download-inner-wrapper--large {
|
|
411
|
-
line-height:
|
|
393
|
+
line-height: 22;
|
|
412
394
|
font-size: 14px;
|
|
413
395
|
}
|
|
414
396
|
.aplus-ap-download-inner-wrapper--middle {
|
|
415
|
-
line-height:
|
|
397
|
+
line-height: 18px;
|
|
416
398
|
font-size: 12px;
|
|
417
399
|
}
|
|
418
400
|
.aplus-ap-download-inner-wrapper--small {
|
|
419
|
-
line-height:
|
|
401
|
+
line-height: 16px;
|
|
420
402
|
font-size: 10px;
|
|
421
403
|
}
|
|
422
404
|
.aplus-ap-download-inner-wrapper--disabled {
|
|
@@ -475,6 +457,7 @@
|
|
|
475
457
|
.aplus-ap-expand-alert__antAlert.ant-alert .ant-alert-icon {
|
|
476
458
|
font-size: 14px;
|
|
477
459
|
transform: translateY(2px);
|
|
460
|
+
display: block;
|
|
478
461
|
}
|
|
479
462
|
.aplus-ap-expand-alert--aplus .card-alert {
|
|
480
463
|
background-color: transparent !important;
|
|
@@ -517,14 +500,14 @@
|
|
|
517
500
|
}
|
|
518
501
|
.aplus-ap-form-item--bordered {
|
|
519
502
|
box-sizing: border-box;
|
|
520
|
-
border: 1px solid var(--ap-
|
|
503
|
+
border: 1px solid var(--ap-border-color-base);
|
|
521
504
|
border-radius: 4px;
|
|
522
505
|
padding-inline: 8px;
|
|
523
506
|
}
|
|
524
507
|
.aplus-ap-form-item--bordered .ant-input-affix-wrapper {
|
|
525
508
|
padding: 0;
|
|
526
509
|
}
|
|
527
|
-
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group) .ant-input-affix-wrapper {
|
|
510
|
+
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
|
|
528
511
|
padding-right: 8px;
|
|
529
512
|
}
|
|
530
513
|
.aplus-ap-form-item--bordered .ant-input {
|
|
@@ -549,6 +532,9 @@
|
|
|
549
532
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
550
533
|
height: 30px !important;
|
|
551
534
|
}
|
|
535
|
+
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
536
|
+
padding-right: 0;
|
|
537
|
+
}
|
|
552
538
|
.aplus-ap-form-item--bordered:has(.ant-select) {
|
|
553
539
|
padding-right: 0px;
|
|
554
540
|
}
|
|
@@ -566,17 +552,17 @@
|
|
|
566
552
|
min-height: 30px;
|
|
567
553
|
}
|
|
568
554
|
.aplus-ap-form-item--bordered:hover {
|
|
569
|
-
border-color: var(--ap-
|
|
555
|
+
border-color: var(--ap-hover-color-base);
|
|
570
556
|
}
|
|
571
557
|
.aplus-ap-form-item--bordered:focus {
|
|
572
|
-
border-color: var(--ap-
|
|
558
|
+
border-color: var(--ap-active-color-base);
|
|
573
559
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
574
560
|
}
|
|
575
561
|
.aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
|
|
576
562
|
width: calc(100% + 12px);
|
|
577
563
|
}
|
|
578
564
|
.aplus-ap-form-item--focused {
|
|
579
|
-
border-color: var(--ap-
|
|
565
|
+
border-color: var(--ap-active-color-base);
|
|
580
566
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
581
567
|
}
|
|
582
568
|
.aplus-ap-form-item .ant-form-show-help .ant-form-item-explain-error {
|
|
@@ -642,10 +628,10 @@
|
|
|
642
628
|
box-sizing: border-box;
|
|
643
629
|
margin: 0;
|
|
644
630
|
padding: 0;
|
|
645
|
-
color:
|
|
631
|
+
color: #182948;
|
|
646
632
|
font-size: 12px;
|
|
647
633
|
font-family: inherit;
|
|
648
|
-
line-height:
|
|
634
|
+
line-height: 18px;
|
|
649
635
|
list-style: none;
|
|
650
636
|
font-size: 14px;
|
|
651
637
|
font-weight: 700;
|
|
@@ -656,12 +642,12 @@
|
|
|
656
642
|
box-sizing: border-box;
|
|
657
643
|
margin: 0;
|
|
658
644
|
padding: 0;
|
|
659
|
-
color:
|
|
645
|
+
color: #182948;
|
|
660
646
|
font-size: 12px;
|
|
661
647
|
font-family: inherit;
|
|
662
|
-
line-height:
|
|
648
|
+
line-height: 18px;
|
|
663
649
|
list-style: none;
|
|
664
|
-
color:
|
|
650
|
+
color: var(--ap-text-color-3);
|
|
665
651
|
}
|
|
666
652
|
.aplus-search-form-sorter-header-action-wrapper {
|
|
667
653
|
padding: 8px;
|
|
@@ -672,12 +658,12 @@
|
|
|
672
658
|
box-sizing: border-box;
|
|
673
659
|
margin: 0;
|
|
674
660
|
padding: 0;
|
|
675
|
-
color:
|
|
661
|
+
color: #182948;
|
|
676
662
|
font-size: 12px;
|
|
677
663
|
font-family: inherit;
|
|
678
|
-
line-height:
|
|
664
|
+
line-height: 18px;
|
|
679
665
|
list-style: none;
|
|
680
|
-
color:
|
|
666
|
+
color: var(--ap-color-link);
|
|
681
667
|
}
|
|
682
668
|
.aplus-search-form-sorter-sorter-wrapper {
|
|
683
669
|
display: flex;
|
|
@@ -698,13 +684,14 @@
|
|
|
698
684
|
padding: 8px;
|
|
699
685
|
display: flex;
|
|
700
686
|
align-items: center;
|
|
687
|
+
background-color: #fff;
|
|
701
688
|
}
|
|
702
689
|
.aplus-search-form-sorter-sorter-item > div:hover {
|
|
703
|
-
border-color: var(--
|
|
690
|
+
border-color: var(--ap-color-primary);
|
|
704
691
|
cursor: pointer;
|
|
705
692
|
}
|
|
706
693
|
.aplus-search-form-sorter-sorter-item > div:hover .aplus-search-form-sorter-sorter-item-holder {
|
|
707
|
-
color: var(--
|
|
694
|
+
color: var(--ap-color-primary) !important;
|
|
708
695
|
}
|
|
709
696
|
.aplus-search-form-sorter-sorter-item--hidden {
|
|
710
697
|
display: none;
|
|
@@ -713,10 +700,10 @@
|
|
|
713
700
|
box-sizing: border-box;
|
|
714
701
|
margin: 0;
|
|
715
702
|
padding: 0;
|
|
716
|
-
color:
|
|
703
|
+
color: #182948;
|
|
717
704
|
font-size: 12px;
|
|
718
705
|
font-family: inherit;
|
|
719
|
-
line-height:
|
|
706
|
+
line-height: 18px;
|
|
720
707
|
list-style: none;
|
|
721
708
|
padding-left: 4px;
|
|
722
709
|
max-width: 100%;
|
|
@@ -757,6 +744,14 @@
|
|
|
757
744
|
.aplus-ap-form-search-form__popover-footer button.ant-btn {
|
|
758
745
|
padding-inline: 16px;
|
|
759
746
|
}
|
|
747
|
+
.aplus-ap-form-search-form-trigger-btn {
|
|
748
|
+
font-size: 0px;
|
|
749
|
+
}
|
|
750
|
+
.aplus-ap-form-search-form-trigger-btn-active {
|
|
751
|
+
color: var(--ap-hover-color-base);
|
|
752
|
+
border-color: var(--ap-hover-color-base);
|
|
753
|
+
z-index: 1;
|
|
754
|
+
}
|
|
760
755
|
.aplus-ap-form-search-form-column-setting-trigger-wrapper {
|
|
761
756
|
flex-shrink: 0;
|
|
762
757
|
}
|
|
@@ -783,7 +778,7 @@
|
|
|
783
778
|
padding-inline: 12px;
|
|
784
779
|
}
|
|
785
780
|
.aplus-ap-form-search-form-action-btn-reset {
|
|
786
|
-
background-color:
|
|
781
|
+
background-color: var(--ap-color-bg);
|
|
787
782
|
}
|
|
788
783
|
.aplus-ap-form-item-text-group-compact .ant-select-focused {
|
|
789
784
|
z-index: 1;
|
|
@@ -881,6 +876,7 @@
|
|
|
881
876
|
position: relative;
|
|
882
877
|
width: inherit;
|
|
883
878
|
font-size: 12px;
|
|
879
|
+
line-height: 18px;
|
|
884
880
|
/** 自动溢出省略 */
|
|
885
881
|
/** Aplus端样式 */
|
|
886
882
|
/** Admin端样式 */
|
|
@@ -983,11 +979,11 @@
|
|
|
983
979
|
margin-left: 4px;
|
|
984
980
|
}
|
|
985
981
|
.aplus-ap-ladder__major {
|
|
986
|
-
line-height:
|
|
982
|
+
line-height: 18px;
|
|
987
983
|
color: #182948;
|
|
988
984
|
}
|
|
989
985
|
.aplus-ap-ladder__minor {
|
|
990
|
-
line-height:
|
|
986
|
+
line-height: 18px;
|
|
991
987
|
color: #8896B0;
|
|
992
988
|
}
|
|
993
989
|
.aplus-ap-ladder__label {
|
|
@@ -1038,7 +1034,7 @@
|
|
|
1038
1034
|
.aplus-ap-product-info__img {
|
|
1039
1035
|
width: 44px;
|
|
1040
1036
|
height: 44px;
|
|
1041
|
-
margin-right:
|
|
1037
|
+
margin-right: 8px;
|
|
1042
1038
|
flex-shrink: 0;
|
|
1043
1039
|
}
|
|
1044
1040
|
.aplus-ap-product-info__content {
|
|
@@ -1047,49 +1043,35 @@
|
|
|
1047
1043
|
flex-direction: column;
|
|
1048
1044
|
overflow: hidden;
|
|
1049
1045
|
}
|
|
1050
|
-
.aplus-ap-product-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
white-space: nowrap;
|
|
1054
|
-
height: 22px;
|
|
1055
|
-
line-height: 22px;
|
|
1056
|
-
}
|
|
1057
|
-
.aplus-ap-product-info__title-tip {
|
|
1058
|
-
color: #fff;
|
|
1059
|
-
}
|
|
1060
|
-
.aplus-ap-product-info__row {
|
|
1061
|
-
display: grid;
|
|
1062
|
-
grid-template-columns: 1fr 1fr;
|
|
1046
|
+
.aplus-ap-product-info__row-container {
|
|
1047
|
+
display: flex;
|
|
1048
|
+
flex-wrap: wrap;
|
|
1063
1049
|
}
|
|
1064
|
-
.aplus-ap-product-info__row-
|
|
1065
|
-
|
|
1066
|
-
|
|
1050
|
+
.aplus-ap-product-info__row-item {
|
|
1051
|
+
position: relative;
|
|
1052
|
+
display: flex;
|
|
1067
1053
|
}
|
|
1068
1054
|
.aplus-ap-product-info__divider {
|
|
1069
|
-
|
|
1055
|
+
width: 1px;
|
|
1070
1056
|
position: relative;
|
|
1057
|
+
height: 12px;
|
|
1071
1058
|
top: 50%;
|
|
1072
|
-
margin
|
|
1059
|
+
margin: -6px 16px 0px 0px;
|
|
1060
|
+
z-index: 1;
|
|
1073
1061
|
}
|
|
1074
1062
|
.aplus-ap-product-info__divider-vertical {
|
|
1075
1063
|
width: 1px;
|
|
1064
|
+
height: 100%;
|
|
1076
1065
|
background-color: #E9EDF3;
|
|
1077
|
-
height: 12px;
|
|
1078
1066
|
position: absolute;
|
|
1079
|
-
|
|
1080
|
-
}
|
|
1081
|
-
.aplus-ap-product-info--full-width {
|
|
1082
|
-
grid-column: 1 / -1;
|
|
1067
|
+
transform: translateX(-50%);
|
|
1083
1068
|
}
|
|
1084
1069
|
.aplus-ap-product-info__item {
|
|
1085
1070
|
display: flex;
|
|
1086
1071
|
align-items: baseline;
|
|
1087
1072
|
}
|
|
1088
|
-
.aplus-ap-product-info
|
|
1089
|
-
|
|
1090
|
-
}
|
|
1091
|
-
.aplus-ap-product-info--right {
|
|
1092
|
-
justify-self: end;
|
|
1073
|
+
.aplus-ap-product-info--full {
|
|
1074
|
+
width: 100%;
|
|
1093
1075
|
}
|
|
1094
1076
|
.aplus-ap-product-info__label {
|
|
1095
1077
|
color: #8896b0;
|
|
@@ -1100,7 +1082,8 @@
|
|
|
1100
1082
|
padding: 0 2px;
|
|
1101
1083
|
}
|
|
1102
1084
|
.aplus-ap-product-info__value {
|
|
1103
|
-
|
|
1085
|
+
max-width: 300px;
|
|
1086
|
+
color: var(--ap-text-color-3);
|
|
1104
1087
|
overflow: hidden;
|
|
1105
1088
|
text-overflow: ellipsis;
|
|
1106
1089
|
white-space: nowrap;
|
|
@@ -1109,6 +1092,9 @@
|
|
|
1109
1092
|
color: #0070ff;
|
|
1110
1093
|
cursor: pointer;
|
|
1111
1094
|
}
|
|
1095
|
+
.aplus-ap-product-info--admin .aplus-ap-product-info__title {
|
|
1096
|
+
color: #333333;
|
|
1097
|
+
}
|
|
1112
1098
|
.aplus-ap-product-info--admin .aplus-ap-product-info__label {
|
|
1113
1099
|
color: #999;
|
|
1114
1100
|
}
|
|
@@ -1118,6 +1104,56 @@
|
|
|
1118
1104
|
.aplus-ap-product-info--admin .aplus-ap-product-info--link {
|
|
1119
1105
|
color: #0070ff;
|
|
1120
1106
|
}
|
|
1107
|
+
.aplus-ap-copy {
|
|
1108
|
+
display: flex;
|
|
1109
|
+
align-items: center;
|
|
1110
|
+
width: 100%;
|
|
1111
|
+
}
|
|
1112
|
+
.aplus-ap-copy .copy-btn {
|
|
1113
|
+
opacity: 0;
|
|
1114
|
+
transition: opacity 0.2s ease;
|
|
1115
|
+
}
|
|
1116
|
+
.aplus-ap-copy:hover .copy-btn {
|
|
1117
|
+
opacity: 1;
|
|
1118
|
+
}
|
|
1119
|
+
.aplus-ap-copy__text {
|
|
1120
|
+
overflow: hidden;
|
|
1121
|
+
text-overflow: ellipsis;
|
|
1122
|
+
white-space: nowrap;
|
|
1123
|
+
height: 18px;
|
|
1124
|
+
line-height: 18px;
|
|
1125
|
+
}
|
|
1126
|
+
.aplus-ap-copy--text-major {
|
|
1127
|
+
color: var(--ap-text-color-2);
|
|
1128
|
+
}
|
|
1129
|
+
.aplus-ap-copy--text-minor {
|
|
1130
|
+
color: var(--ap-text-color-3);
|
|
1131
|
+
}
|
|
1132
|
+
.aplus-ap-copy--text-link {
|
|
1133
|
+
color: var(--ap-color-link);
|
|
1134
|
+
cursor: pointer;
|
|
1135
|
+
}
|
|
1136
|
+
.aplus-ap-copy--text-link:hover {
|
|
1137
|
+
color: var(--ap-color-link-hover);
|
|
1138
|
+
}
|
|
1139
|
+
.aplus-ap-copy__copy-btn {
|
|
1140
|
+
flex-shrink: 0;
|
|
1141
|
+
width: 16px;
|
|
1142
|
+
margin-left: 4px;
|
|
1143
|
+
}
|
|
1144
|
+
.aplus-ap-copy__copy-btn .aplus-frontend-icon {
|
|
1145
|
+
cursor: pointer;
|
|
1146
|
+
color: #ABB7CC;
|
|
1147
|
+
height: 14px;
|
|
1148
|
+
line-height: 14px;
|
|
1149
|
+
}
|
|
1150
|
+
.aplus-ap-copy__copy-btn:hover .aplus-frontend-icon {
|
|
1151
|
+
cursor: pointer;
|
|
1152
|
+
color: var(--ap-color-link);
|
|
1153
|
+
}
|
|
1154
|
+
.aplus-ap-copy--admin .aplus-ap-product-info__text {
|
|
1155
|
+
color: #333333;
|
|
1156
|
+
}
|
|
1121
1157
|
.aplus-info-layout-container {
|
|
1122
1158
|
height: 100%;
|
|
1123
1159
|
background-color: #fff;
|
|
@@ -1242,7 +1278,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1242
1278
|
color: #333;
|
|
1243
1279
|
font-size: 14px;
|
|
1244
1280
|
font-weight: bold;
|
|
1245
|
-
line-height:
|
|
1281
|
+
line-height: 22;
|
|
1246
1282
|
}
|
|
1247
1283
|
.aplus-ap-select-layout-side__header--imgWrap {
|
|
1248
1284
|
border-radius: 2px;
|
|
@@ -1326,7 +1362,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1326
1362
|
margin: 0;
|
|
1327
1363
|
font-size: 14px;
|
|
1328
1364
|
font-weight: bold;
|
|
1329
|
-
line-height:
|
|
1365
|
+
line-height: 22;
|
|
1330
1366
|
}
|
|
1331
1367
|
@font-face {
|
|
1332
1368
|
font-family: customFont;
|
|
@@ -1335,7 +1371,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1335
1371
|
}
|
|
1336
1372
|
.aplus-ap-status {
|
|
1337
1373
|
font-size: 16px;
|
|
1338
|
-
line-height:
|
|
1374
|
+
line-height: 2;
|
|
1339
1375
|
display: inline-block;
|
|
1340
1376
|
position: relative;
|
|
1341
1377
|
font-family: 'customFont';
|
|
@@ -1370,15 +1406,16 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1370
1406
|
flex-direction: row;
|
|
1371
1407
|
flex-wrap: nowrap;
|
|
1372
1408
|
height: 100%;
|
|
1409
|
+
padding-block-end: 12px;
|
|
1373
1410
|
}
|
|
1374
1411
|
.aplus-ap-column-setting-wrapper .aplus-ap-table-table-header__title {
|
|
1375
1412
|
box-sizing: border-box;
|
|
1376
1413
|
margin: 0;
|
|
1377
1414
|
padding: 0;
|
|
1378
|
-
color:
|
|
1415
|
+
color: #182948;
|
|
1379
1416
|
font-size: 12px;
|
|
1380
1417
|
font-family: inherit;
|
|
1381
|
-
line-height:
|
|
1418
|
+
line-height: 18px;
|
|
1382
1419
|
list-style: none;
|
|
1383
1420
|
display: inline-block;
|
|
1384
1421
|
-webkit-line-clamp: unset;
|
|
@@ -1404,7 +1441,10 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1404
1441
|
flex-wrap: nowrap;
|
|
1405
1442
|
justify-content: space-between;
|
|
1406
1443
|
align-items: center;
|
|
1407
|
-
padding:
|
|
1444
|
+
padding: 8px;
|
|
1445
|
+
}
|
|
1446
|
+
.aplus-ap-column-setting-left__header-tips {
|
|
1447
|
+
color: var(--ap-text-color-3);
|
|
1408
1448
|
}
|
|
1409
1449
|
.aplus-ap-column-setting-left__content {
|
|
1410
1450
|
flex: 1;
|
|
@@ -1449,7 +1489,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1449
1489
|
display: block;
|
|
1450
1490
|
}
|
|
1451
1491
|
.aplus-sortable-item-meta:hover .aplus-sortable-item-meta-left__holder {
|
|
1452
|
-
color: var(--
|
|
1492
|
+
color: var(--ap-color-primary) !important;
|
|
1453
1493
|
}
|
|
1454
1494
|
.aplus-sortable-item-meta-left {
|
|
1455
1495
|
flex: 1;
|
|
@@ -1479,7 +1519,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1479
1519
|
margin-left: 16px;
|
|
1480
1520
|
}
|
|
1481
1521
|
.aplus-sortable-item-meta-action-icon:hover {
|
|
1482
|
-
color: var(--
|
|
1522
|
+
color: var(--ap-color-primary);
|
|
1483
1523
|
}
|
|
1484
1524
|
.aplus-sortable-item .is-hidden {
|
|
1485
1525
|
display: none;
|
|
@@ -1492,29 +1532,29 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1492
1532
|
.aplus-column-setting-sorter-section-title {
|
|
1493
1533
|
font-size: 12px;
|
|
1494
1534
|
line-height: 20px;
|
|
1495
|
-
color:
|
|
1535
|
+
color: var(--ap-text-color-3);
|
|
1496
1536
|
padding: 2px 8px;
|
|
1497
1537
|
margin: 4px;
|
|
1498
1538
|
}
|
|
1499
1539
|
.aplus-column-setting-sorter-header {
|
|
1500
|
-
padding:
|
|
1540
|
+
padding: 12px 20px;
|
|
1501
1541
|
}
|
|
1502
1542
|
.aplus-column-setting-sorter-header-title {
|
|
1503
1543
|
box-sizing: border-box;
|
|
1504
1544
|
margin: 0;
|
|
1505
1545
|
padding: 0;
|
|
1506
|
-
color:
|
|
1546
|
+
color: #182948;
|
|
1507
1547
|
font-size: 12px;
|
|
1508
1548
|
font-family: inherit;
|
|
1509
|
-
line-height:
|
|
1549
|
+
line-height: 18px;
|
|
1510
1550
|
list-style: none;
|
|
1511
1551
|
font-weight: bold;
|
|
1512
|
-
color:
|
|
1552
|
+
color: var(--ap-text-color-2);
|
|
1513
1553
|
}
|
|
1514
1554
|
.aplus-column-setting-sorter-content {
|
|
1515
1555
|
flex: 1;
|
|
1516
1556
|
overflow-y: auto;
|
|
1517
|
-
padding: 8px 12px
|
|
1557
|
+
padding: 8px 12px 0px 8px;
|
|
1518
1558
|
}
|
|
1519
1559
|
.aplus-ap-table-paragraph-ellipsis {
|
|
1520
1560
|
display: flex;
|
|
@@ -1539,14 +1579,14 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1539
1579
|
flex-shrink: 0;
|
|
1540
1580
|
margin-left: 8px;
|
|
1541
1581
|
cursor: pointer;
|
|
1542
|
-
color: var(--ap-
|
|
1582
|
+
color: var(--ap-color-link);
|
|
1543
1583
|
}
|
|
1544
1584
|
.aplus-ap-table ::-webkit-scrollbar {
|
|
1545
1585
|
width: 10px;
|
|
1546
1586
|
height: 10px;
|
|
1547
1587
|
}
|
|
1548
1588
|
.aplus-ap-table ::-webkit-scrollbar-thumb {
|
|
1549
|
-
background-color: var(--
|
|
1589
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
1550
1590
|
background-clip: content-box;
|
|
1551
1591
|
border: 1px solid transparent;
|
|
1552
1592
|
border-radius: 4px;
|
|
@@ -1557,12 +1597,15 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1557
1597
|
}
|
|
1558
1598
|
.aplus-ap-table ::-webkit-scrollbar-thumb:hover,
|
|
1559
1599
|
.aplus-ap-table ::-webkit-scrollbar-thumb:active {
|
|
1560
|
-
background-color: var(--
|
|
1600
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
1561
1601
|
}
|
|
1562
1602
|
.aplus-ap-table-wrapper {
|
|
1563
|
-
padding: 8px
|
|
1603
|
+
padding: 8px;
|
|
1564
1604
|
background-color: #fff;
|
|
1565
1605
|
}
|
|
1606
|
+
.aplus-ap-table-wrapper:has(.ant-pagination) {
|
|
1607
|
+
padding-bottom: 0;
|
|
1608
|
+
}
|
|
1566
1609
|
.aplus-ap-table-adaptive {
|
|
1567
1610
|
height: 100%;
|
|
1568
1611
|
display: flex;
|
|
@@ -1603,16 +1646,24 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1603
1646
|
flex-direction: column;
|
|
1604
1647
|
}
|
|
1605
1648
|
.aplus-ap-table__table-wrapper-card {
|
|
1606
|
-
padding: 8px
|
|
1649
|
+
padding: 8px;
|
|
1607
1650
|
border-radius: 4px;
|
|
1608
1651
|
background-color: #fff;
|
|
1609
1652
|
overflow: hidden;
|
|
1610
1653
|
}
|
|
1611
|
-
.aplus-ap-
|
|
1612
|
-
|
|
1654
|
+
.aplus-ap-table__table-wrapper-card:has(.ant-pagination) {
|
|
1655
|
+
padding-bottom: 0;
|
|
1613
1656
|
}
|
|
1614
|
-
.aplus-ap-table-table .ant-pagination
|
|
1657
|
+
.aplus-ap-table-table ul.ant-table-pagination.ant-pagination {
|
|
1658
|
+
margin-block: 8px;
|
|
1659
|
+
align-items: center;
|
|
1660
|
+
}
|
|
1661
|
+
.aplus-ap-table-table ul.ant-table-pagination.ant-pagination .ant-pagination-total-text {
|
|
1615
1662
|
flex: 1;
|
|
1663
|
+
height: unset;
|
|
1664
|
+
line-height: 18px;
|
|
1665
|
+
display: flex;
|
|
1666
|
+
align-items: center;
|
|
1616
1667
|
}
|
|
1617
1668
|
.aplus-ap-table-table tr > th.ant-table-cell {
|
|
1618
1669
|
background-color: var(--ap-table-header-bg, #F2F6F9);
|
|
@@ -1657,13 +1708,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1657
1708
|
margin-bottom: 0;
|
|
1658
1709
|
}
|
|
1659
1710
|
.aplus-ap-table-pagination-count-text {
|
|
1660
|
-
color: var(--ap-
|
|
1711
|
+
color: var(--ap-text-color-2);
|
|
1661
1712
|
}
|
|
1662
1713
|
.aplus-ap-table-pagination--total-right {
|
|
1663
1714
|
padding-left: 12px;
|
|
1664
1715
|
}
|
|
1665
1716
|
.aplus-ap-table-pagination-total-wrapper {
|
|
1666
|
-
color: var(--ap-
|
|
1717
|
+
color: var(--ap-text-color-1);
|
|
1667
1718
|
}
|
|
1668
1719
|
.aplus-ap-table-header {
|
|
1669
1720
|
padding-bottom: 8px;
|
|
@@ -1690,7 +1741,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1690
1741
|
flex: 1;
|
|
1691
1742
|
}
|
|
1692
1743
|
.aplus-ap-table-setting-trigger-button {
|
|
1693
|
-
color: var(--ap-
|
|
1744
|
+
color: var(--ap-text-color-3);
|
|
1694
1745
|
}
|
|
1695
1746
|
.aplus-ap-table-setting-trigger-button:hover {
|
|
1696
1747
|
color: unset;
|
|
@@ -1717,22 +1768,22 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1717
1768
|
}
|
|
1718
1769
|
.aplus-tag-wrapper .aplus-tag-inner-wrapper--large {
|
|
1719
1770
|
padding: 6px;
|
|
1720
|
-
line-height:
|
|
1771
|
+
line-height: 22;
|
|
1721
1772
|
font-size: 14px;
|
|
1722
1773
|
}
|
|
1723
1774
|
.aplus-tag-wrapper .aplus-tag-inner-wrapper--middle {
|
|
1724
|
-
line-height:
|
|
1725
|
-
padding: 3px
|
|
1775
|
+
line-height: 18px;
|
|
1776
|
+
padding: 3px 6px;
|
|
1726
1777
|
font-size: 12px;
|
|
1727
1778
|
}
|
|
1728
1779
|
.aplus-tag-wrapper .aplus-tag-inner-wrapper--small {
|
|
1729
1780
|
padding: 0 4px;
|
|
1730
|
-
line-height:
|
|
1731
|
-
font-size:
|
|
1781
|
+
line-height: 18px;
|
|
1782
|
+
font-size: 12px;
|
|
1732
1783
|
}
|
|
1733
1784
|
.aplus-tag-wrapper-purely > * {
|
|
1734
1785
|
background-color: var(--tag-main-color-background);
|
|
1735
|
-
color: var(--ap-
|
|
1786
|
+
color: var(--ap-text-color-2);
|
|
1736
1787
|
}
|
|
1737
1788
|
.aplus-tag-wrapper-border > * {
|
|
1738
1789
|
border: 1px solid var(--tag-main-color);
|
|
@@ -1764,11 +1815,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1764
1815
|
}
|
|
1765
1816
|
.aplus-tag-group-ellipsis-text--admin {
|
|
1766
1817
|
font-size: 12px;
|
|
1767
|
-
color: #
|
|
1818
|
+
color: #333;
|
|
1768
1819
|
}
|
|
1769
1820
|
.aplus-tag-group-ellipsis-text--aplus {
|
|
1770
1821
|
font-size: 12px;
|
|
1771
|
-
color: #
|
|
1822
|
+
color: #182948;
|
|
1772
1823
|
}
|
|
1773
1824
|
.aplus-ap-title {
|
|
1774
1825
|
position: relative;
|
|
@@ -1786,7 +1837,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1786
1837
|
top: 50%;
|
|
1787
1838
|
transform: translateY(-50%);
|
|
1788
1839
|
width: 3px;
|
|
1789
|
-
height:
|
|
1840
|
+
height: 14px;
|
|
1790
1841
|
background: #0070ff;
|
|
1791
1842
|
border-radius: 0px 4px 4px 0px;
|
|
1792
1843
|
z-index: 1;
|
|
@@ -1798,8 +1849,9 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1798
1849
|
align-items: center;
|
|
1799
1850
|
}
|
|
1800
1851
|
.aplus-ap-title__prefix .anticon-question-circle {
|
|
1852
|
+
font-size: 14px;
|
|
1801
1853
|
margin-left: 5px;
|
|
1802
|
-
color: #
|
|
1854
|
+
color: #8896b0;
|
|
1803
1855
|
}
|
|
1804
1856
|
.aplus-ap-title--admin {
|
|
1805
1857
|
padding-left: 14px;
|
|
@@ -1823,8 +1875,9 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1823
1875
|
align-items: center;
|
|
1824
1876
|
}
|
|
1825
1877
|
.aplus-ap-title--admin .aplus-ap-title__prefix .anticon-question-circle {
|
|
1878
|
+
font-size: 14px;
|
|
1826
1879
|
margin-left: 5px;
|
|
1827
|
-
color: #
|
|
1880
|
+
color: #999999;
|
|
1828
1881
|
}
|
|
1829
1882
|
.aplus-ap-title__suffix {
|
|
1830
1883
|
color: #526a90;
|
|
@@ -1836,7 +1889,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1836
1889
|
.aplus-ap-upload-multiple-file .multiple-file-context .file-btn {
|
|
1837
1890
|
display: flex;
|
|
1838
1891
|
align-items: center;
|
|
1839
|
-
padding: 7px
|
|
1892
|
+
padding: 7px 12px;
|
|
1840
1893
|
transition: all 0.3s;
|
|
1841
1894
|
border: 1px solid #dee4ed;
|
|
1842
1895
|
border-radius: 4px;
|
|
@@ -1916,8 +1969,8 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1916
1969
|
aspect-ratio: 1 / 1;
|
|
1917
1970
|
}
|
|
1918
1971
|
.aplus-ap-upload-picture .picture-context .picture-upload > * + * {
|
|
1919
|
-
margin-top:
|
|
1920
|
-
font-size:
|
|
1972
|
+
margin-top: 4px;
|
|
1973
|
+
font-size: 12px;
|
|
1921
1974
|
}
|
|
1922
1975
|
.aplus-ap-upload-picture .picture-context .picture-upload:hover {
|
|
1923
1976
|
border: 1px dashed #0070ff;
|
|
@@ -2033,8 +2086,8 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2033
2086
|
.aplus-ap-upload-single-file .state-un .state-un-title {
|
|
2034
2087
|
margin-top: 10px;
|
|
2035
2088
|
color: #182948;
|
|
2036
|
-
font-size:
|
|
2037
|
-
line-height:
|
|
2089
|
+
font-size: 14px;
|
|
2090
|
+
line-height: 22;
|
|
2038
2091
|
}
|
|
2039
2092
|
.aplus-ap-upload-single-file .state-un .state-un-subtitle {
|
|
2040
2093
|
margin-top: 4px;
|
|
@@ -2111,10 +2164,10 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2111
2164
|
box-sizing: border-box;
|
|
2112
2165
|
margin: 0;
|
|
2113
2166
|
padding: 0;
|
|
2114
|
-
color:
|
|
2167
|
+
color: #182948;
|
|
2115
2168
|
font-size: 12px;
|
|
2116
2169
|
font-family: inherit;
|
|
2117
|
-
line-height:
|
|
2170
|
+
line-height: 18px;
|
|
2118
2171
|
list-style: none;
|
|
2119
2172
|
border-radius: 4px;
|
|
2120
2173
|
position: relative;
|
|
@@ -2124,11 +2177,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2124
2177
|
cursor: not-allowed !important;
|
|
2125
2178
|
}
|
|
2126
2179
|
.aplus-check-card--bordered {
|
|
2127
|
-
outline: 1px solid var(--
|
|
2180
|
+
outline: 1px solid var(--ap-border-color-base);
|
|
2128
2181
|
}
|
|
2129
2182
|
.aplus-check-card:hover:not(.aplus-check-card--disabled) {
|
|
2130
2183
|
cursor: pointer;
|
|
2131
|
-
outline: 1px solid var(--
|
|
2184
|
+
outline: 1px solid var(--ap-color-primary);
|
|
2132
2185
|
}
|
|
2133
2186
|
.aplus-check-card::after {
|
|
2134
2187
|
content: '';
|
|
@@ -2143,14 +2196,14 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2143
2196
|
border-radius: 4px;
|
|
2144
2197
|
}
|
|
2145
2198
|
.aplus-check-card--checked {
|
|
2146
|
-
outline: 2px solid var(--
|
|
2199
|
+
outline: 2px solid var(--ap-color-primary);
|
|
2147
2200
|
}
|
|
2148
2201
|
.aplus-check-card--checked:hover:not(.aplus-check-card--disabled) {
|
|
2149
|
-
outline: 2px solid var(--
|
|
2202
|
+
outline: 2px solid var(--ap-color-primary);
|
|
2150
2203
|
}
|
|
2151
2204
|
.aplus-check-card--checked::after {
|
|
2152
2205
|
opacity: 1;
|
|
2153
|
-
border: var(--check-card-indicator-size, 14px) solid var(--
|
|
2206
|
+
border: var(--check-card-indicator-size, 14px) solid var(--ap-color-primary);
|
|
2154
2207
|
border-inline-start: var(--check-card-indicator-size, 14px) solid transparent;
|
|
2155
2208
|
border-block-end: var(--check-card-indicator-size, 14px) solid transparent;
|
|
2156
2209
|
inset-block-start: -2px;
|
|
@@ -2175,10 +2228,10 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2175
2228
|
box-sizing: border-box;
|
|
2176
2229
|
margin: 0;
|
|
2177
2230
|
padding: 0;
|
|
2178
|
-
color:
|
|
2231
|
+
color: #182948;
|
|
2179
2232
|
font-size: 12px;
|
|
2180
2233
|
font-family: inherit;
|
|
2181
|
-
line-height:
|
|
2234
|
+
line-height: 18px;
|
|
2182
2235
|
list-style: none;
|
|
2183
2236
|
margin-bottom: 4px;
|
|
2184
2237
|
color: #333;
|
|
@@ -2191,10 +2244,10 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2191
2244
|
box-sizing: border-box;
|
|
2192
2245
|
margin: 0;
|
|
2193
2246
|
padding: 0;
|
|
2194
|
-
color:
|
|
2247
|
+
color: #182948;
|
|
2195
2248
|
font-size: 12px;
|
|
2196
2249
|
font-family: inherit;
|
|
2197
|
-
line-height:
|
|
2250
|
+
line-height: 18px;
|
|
2198
2251
|
list-style: none;
|
|
2199
2252
|
color: #333;
|
|
2200
2253
|
}
|
|
@@ -2296,40 +2349,42 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2296
2349
|
height: 100%;
|
|
2297
2350
|
}
|
|
2298
2351
|
.aplus-ap-table-modal--table-layout.complex-layout {
|
|
2352
|
+
height: 100%;
|
|
2299
2353
|
position: relative;
|
|
2300
2354
|
}
|
|
2301
|
-
.aplus-ap-table-modal--table-layout.complex-layout::before {
|
|
2302
|
-
content: '';
|
|
2303
|
-
width: calc(100% + 40px);
|
|
2304
|
-
height: 1px;
|
|
2305
|
-
background-color: #dee4ed;
|
|
2306
|
-
position: absolute;
|
|
2307
|
-
left: -20px;
|
|
2308
|
-
bottom: 0px;
|
|
2309
|
-
}
|
|
2310
2355
|
.aplus-ap-table-modal--table-layout-left {
|
|
2311
2356
|
width: calc(100% - 410px);
|
|
2312
2357
|
padding-right: 20px;
|
|
2313
|
-
padding-bottom: 16px;
|
|
2314
2358
|
box-sizing: border-box;
|
|
2359
|
+
display: flex;
|
|
2360
|
+
flex-direction: column;
|
|
2361
|
+
}
|
|
2362
|
+
.aplus-ap-table-modal--table-layout-left-content {
|
|
2363
|
+
flex: 1;
|
|
2364
|
+
}
|
|
2365
|
+
.aplus-ap-table-modal--table-layout-left-content .ant-table-body {
|
|
2366
|
+
height: 100%;
|
|
2315
2367
|
}
|
|
2316
2368
|
.aplus-ap-table-modal--table-layout-right {
|
|
2317
2369
|
width: 410px;
|
|
2318
2370
|
padding-left: 20px;
|
|
2319
2371
|
position: relative;
|
|
2372
|
+
display: flex;
|
|
2373
|
+
flex-direction: column;
|
|
2320
2374
|
}
|
|
2321
2375
|
.aplus-ap-table-modal--table-layout-right-content {
|
|
2322
|
-
|
|
2376
|
+
flex: 1;
|
|
2377
|
+
max-height: 540px;
|
|
2323
2378
|
overflow-y: auto;
|
|
2324
2379
|
}
|
|
2325
2380
|
.aplus-ap-table-modal--table-layout-right::before {
|
|
2326
2381
|
content: '';
|
|
2327
|
-
height: calc(100% +
|
|
2382
|
+
height: calc(100% + 16px);
|
|
2328
2383
|
width: 1px;
|
|
2329
2384
|
background-color: #dee4ed;
|
|
2330
2385
|
position: absolute;
|
|
2331
2386
|
left: 0px;
|
|
2332
|
-
top: -
|
|
2387
|
+
top: -16px;
|
|
2333
2388
|
}
|
|
2334
2389
|
.aplus-scroll-bar {
|
|
2335
2390
|
position: relative;
|
|
@@ -2389,11 +2444,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2389
2444
|
height: min-content;
|
|
2390
2445
|
}
|
|
2391
2446
|
.aplus-ap-appendix__file-area {
|
|
2392
|
-
margin-top:
|
|
2447
|
+
margin-top: 12px;
|
|
2393
2448
|
}
|
|
2394
2449
|
.aplus-ap-appendix__file-area--border {
|
|
2395
|
-
border: 1px dashed var(--ap-
|
|
2396
|
-
padding:
|
|
2450
|
+
border: 1px dashed var(--ap-border-color-base);
|
|
2451
|
+
padding: 12px;
|
|
2397
2452
|
border-radius: 4px;
|
|
2398
2453
|
}
|
|
2399
2454
|
.aplus-ap-appendix__file-area-content {
|
|
@@ -2420,7 +2475,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2420
2475
|
}
|
|
2421
2476
|
.aplus-ap-appendix__file-area-content-item-icon svg {
|
|
2422
2477
|
width: 16px;
|
|
2423
|
-
color: var(--ap-
|
|
2478
|
+
color: var(--ap-text-color-4);
|
|
2424
2479
|
}
|
|
2425
2480
|
.aplus-ap-appendix__file-area-content-item-file-name {
|
|
2426
2481
|
min-width: 0;
|
|
@@ -2432,21 +2487,21 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2432
2487
|
}
|
|
2433
2488
|
.aplus-ap-appendix__file-area-content-item-file-name .ant-typography {
|
|
2434
2489
|
font-size: 12px;
|
|
2435
|
-
line-height:
|
|
2436
|
-
color: var(--ap-
|
|
2490
|
+
line-height: 18px;
|
|
2491
|
+
color: var(--ap-text-color-2);
|
|
2437
2492
|
transition: color 0.2s;
|
|
2438
2493
|
}
|
|
2439
2494
|
.aplus-ap-appendix__file-area-content-item-content:hover .ant-typography {
|
|
2440
|
-
color: var(--ap-
|
|
2495
|
+
color: var(--ap-color-link);
|
|
2441
2496
|
}
|
|
2442
2497
|
.aplus-ap-appendix__file-area-content-item--loading-content {
|
|
2443
2498
|
cursor: not-allowed;
|
|
2444
2499
|
}
|
|
2445
2500
|
.aplus-ap-appendix__file-area-content-item--loading .ant-typography {
|
|
2446
|
-
color: var(--ap-
|
|
2501
|
+
color: var(--ap-text-color-4);
|
|
2447
2502
|
}
|
|
2448
2503
|
.aplus-ap-appendix__file-area-content-item--loading-content:hover .ant-typography {
|
|
2449
|
-
color: var(--ap-
|
|
2504
|
+
color: var(--ap-text-color-4);
|
|
2450
2505
|
}
|
|
2451
2506
|
.aplus-ap-group-search__search > .ant-select-selector {
|
|
2452
2507
|
padding: 0px 10px 0 0 !important;
|
|
@@ -2559,7 +2614,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2559
2614
|
}
|
|
2560
2615
|
.aplus-ap-upload-single .ant-upload-drag {
|
|
2561
2616
|
background: #F2F6F9;
|
|
2562
|
-
border: 1px dashed var(--ap-
|
|
2617
|
+
border: 1px dashed var(--ap-border-color-base);
|
|
2563
2618
|
height: 200px;
|
|
2564
2619
|
}
|
|
2565
2620
|
.aplus-ap-upload-single .ant-upload-drag:not(.ant-upload-disabled):hover {
|
|
@@ -2620,7 +2675,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2620
2675
|
cursor: pointer;
|
|
2621
2676
|
}
|
|
2622
2677
|
.aplus-ap-upload-single__content-ing-name {
|
|
2623
|
-
--name-color: var(--ap-
|
|
2678
|
+
--name-color: var(--ap-text-color-2);
|
|
2624
2679
|
}
|
|
2625
2680
|
.aplus-ap-upload-single__content-ing-name .ant-progress-line {
|
|
2626
2681
|
margin-inline-end: 0;
|
|
@@ -2643,13 +2698,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2643
2698
|
}
|
|
2644
2699
|
.aplus-ap-upload-single__content-empty-title {
|
|
2645
2700
|
margin-top: 10px;
|
|
2646
|
-
color: var(--ap-
|
|
2701
|
+
color: var(--ap-text-color-2);
|
|
2647
2702
|
font-size: 16px;
|
|
2648
2703
|
line-height: 22px;
|
|
2649
2704
|
}
|
|
2650
2705
|
.aplus-ap-upload-single__content-empty-sub-title {
|
|
2651
2706
|
margin-top: 4px;
|
|
2652
|
-
color: var(--ap-
|
|
2707
|
+
color: var(--ap-text-color-4);
|
|
2653
2708
|
font-size: 12px;
|
|
2654
2709
|
line-height: 18px;
|
|
2655
2710
|
}
|
|
@@ -2667,11 +2722,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2667
2722
|
.aplus-batch-input-group-popover-input-trigger-icon {
|
|
2668
2723
|
cursor: pointer;
|
|
2669
2724
|
font-size: 16px;
|
|
2670
|
-
color: var(--
|
|
2725
|
+
color: var(--ap-text-color-1);
|
|
2671
2726
|
line-height: 0;
|
|
2672
2727
|
}
|
|
2673
2728
|
.aplus-batch-input-group-popover-input-trigger-icon:hover {
|
|
2674
|
-
color: var(--
|
|
2729
|
+
color: var(--ap-color-primary);
|
|
2675
2730
|
}
|
|
2676
2731
|
.aplus-batch-input-group-popover-input-trigger-icon--disabled {
|
|
2677
2732
|
cursor: not-allowed;
|
|
@@ -2697,6 +2752,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2697
2752
|
}
|
|
2698
2753
|
.aplus-batch-input-group-popover-input__popover--content textarea {
|
|
2699
2754
|
padding: 0;
|
|
2755
|
+
resize: none;
|
|
2700
2756
|
}
|
|
2701
2757
|
.aplus-batch-input-group {
|
|
2702
2758
|
position: relative;
|
|
@@ -2732,7 +2788,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2732
2788
|
height: 10px;
|
|
2733
2789
|
}
|
|
2734
2790
|
.aplus-ap-grid ::-webkit-scrollbar-thumb {
|
|
2735
|
-
background-color: var(--
|
|
2791
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
2736
2792
|
background-clip: content-box;
|
|
2737
2793
|
border: 1px solid transparent;
|
|
2738
2794
|
border-radius: 4px;
|
|
@@ -2743,18 +2799,20 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2743
2799
|
}
|
|
2744
2800
|
.aplus-ap-grid ::-webkit-scrollbar-thumb:hover,
|
|
2745
2801
|
.aplus-ap-grid ::-webkit-scrollbar-thumb:active {
|
|
2746
|
-
background-color: var(--
|
|
2802
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
2747
2803
|
}
|
|
2748
|
-
.aplus-ap-grid .vxe-table .vxe-cell
|
|
2804
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell,
|
|
2805
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-header--column.is--padding div.vxe-cell {
|
|
2749
2806
|
min-height: unset !important;
|
|
2750
|
-
padding: 9px 12px
|
|
2807
|
+
padding: 9px 12px;
|
|
2751
2808
|
font-size: 12px;
|
|
2752
|
-
line-height:
|
|
2809
|
+
line-height: 18px;
|
|
2753
2810
|
}
|
|
2754
|
-
.aplus-ap-grid .vxe-table.size--mini .vxe-cell
|
|
2811
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell,
|
|
2812
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-header--column.is--padding div.vxe-cell {
|
|
2755
2813
|
min-height: unset !important;
|
|
2756
|
-
padding: 6px 9px
|
|
2757
|
-
line-height:
|
|
2814
|
+
padding: 6px 9px;
|
|
2815
|
+
line-height: 18px;
|
|
2758
2816
|
}
|
|
2759
2817
|
.aplus-ap-grid-adaptive {
|
|
2760
2818
|
height: 100%;
|
|
@@ -2766,7 +2824,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2766
2824
|
flex: 1;
|
|
2767
2825
|
}
|
|
2768
2826
|
.aplus-ap-grid .aplus-ap-grid-pagination-wrapper ul.ant-pagination {
|
|
2769
|
-
margin-block:
|
|
2827
|
+
margin-block: 8px;
|
|
2770
2828
|
}
|
|
2771
2829
|
.aplus-ap-grid-sticky .aplus-ap-grid-pagination-wrapper {
|
|
2772
2830
|
background-color: #fff;
|
|
@@ -2826,19 +2884,24 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2826
2884
|
margin-block: 12px;
|
|
2827
2885
|
display: flex;
|
|
2828
2886
|
flex-wrap: wrap;
|
|
2887
|
+
align-items: center;
|
|
2829
2888
|
row-gap: 8px;
|
|
2830
2889
|
}
|
|
2831
2890
|
.aplus-ap-grid-pagination .ant-pagination-total-text {
|
|
2832
2891
|
flex: 1;
|
|
2892
|
+
height: unset;
|
|
2893
|
+
line-height: 18px;
|
|
2894
|
+
display: flex;
|
|
2895
|
+
align-items: center;
|
|
2833
2896
|
}
|
|
2834
2897
|
.aplus-ap-grid-pagination-count-text {
|
|
2835
|
-
color: var(--ap-
|
|
2898
|
+
color: var(--ap-text-color-2);
|
|
2836
2899
|
}
|
|
2837
2900
|
.aplus-ap-grid-pagination--total-right {
|
|
2838
2901
|
padding-left: 12px;
|
|
2839
2902
|
}
|
|
2840
2903
|
.aplus-ap-grid-pagination-total-wrapper {
|
|
2841
|
-
color: var(--ap-
|
|
2904
|
+
color: var(--ap-text-color-1);
|
|
2842
2905
|
}
|
|
2843
2906
|
.aplus-ap-grid-table-header__title {
|
|
2844
2907
|
display: -webkit-inline-box;
|
|
@@ -2852,15 +2915,24 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2852
2915
|
word-break: break-all;
|
|
2853
2916
|
flex: 1;
|
|
2854
2917
|
}
|
|
2855
|
-
.aplus-ap-grid th .vxe-cell--wrapper {
|
|
2918
|
+
.aplus-ap-grid th.vxe-header--column .vxe-cell--wrapper {
|
|
2856
2919
|
display: flex;
|
|
2857
2920
|
flex-direction: row;
|
|
2858
2921
|
flex-wrap: nowrap;
|
|
2859
2922
|
align-items: center;
|
|
2923
|
+
min-width: unset;
|
|
2860
2924
|
}
|
|
2861
|
-
.aplus-ap-grid th .vxe-cell--wrapper .vxe-cell--title {
|
|
2925
|
+
.aplus-ap-grid th.vxe-header--column .vxe-cell--wrapper .vxe-cell--title {
|
|
2862
2926
|
flex-shrink: 1;
|
|
2863
|
-
flex-grow:
|
|
2927
|
+
flex-grow: 0;
|
|
2928
|
+
}
|
|
2929
|
+
.aplus-ap-grid .fixed-left--wrapper .vxe-table--header,
|
|
2930
|
+
.aplus-ap-grid .fixed-right--wrapper .vxe-table--header {
|
|
2931
|
+
height: 100%;
|
|
2932
|
+
}
|
|
2933
|
+
.aplus-ap-grid .fixed-left--wrapper .vxe-table--footer,
|
|
2934
|
+
.aplus-ap-grid .fixed-right--wrapper .vxe-table--footer {
|
|
2935
|
+
height: 100%;
|
|
2864
2936
|
}
|
|
2865
2937
|
.aplus-editable-grid__header-cell--required {
|
|
2866
2938
|
color: #FF4D4F;
|
|
@@ -2888,10 +2960,10 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2888
2960
|
box-sizing: border-box;
|
|
2889
2961
|
margin: 0;
|
|
2890
2962
|
padding: 0;
|
|
2891
|
-
color:
|
|
2963
|
+
color: #182948;
|
|
2892
2964
|
font-size: 12px;
|
|
2893
2965
|
font-family: inherit;
|
|
2894
|
-
line-height:
|
|
2966
|
+
line-height: 18px;
|
|
2895
2967
|
list-style: none;
|
|
2896
2968
|
display: flex;
|
|
2897
2969
|
align-items: baseline;
|
|
@@ -2903,7 +2975,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2903
2975
|
.aplus-ap-text__label {
|
|
2904
2976
|
display: inline-flex;
|
|
2905
2977
|
align-items: baseline;
|
|
2906
|
-
color: var(--ap-text-
|
|
2978
|
+
color: var(--ap-text-color-3);
|
|
2907
2979
|
}
|
|
2908
2980
|
.aplus-ap-text__label::after {
|
|
2909
2981
|
content: ':';
|
|
@@ -2927,13 +2999,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2927
2999
|
line-height: 1;
|
|
2928
3000
|
}
|
|
2929
3001
|
.aplus-ap-text span.ant-typography {
|
|
2930
|
-
color: var(--ap-text-
|
|
3002
|
+
color: var(--ap-text-color-2);
|
|
2931
3003
|
}
|
|
2932
3004
|
.aplus-ap-text span.ant-typography.ant-typography-secondary {
|
|
2933
|
-
color: var(--ap-text-
|
|
3005
|
+
color: var(--ap-text-color-3);
|
|
2934
3006
|
}
|
|
2935
3007
|
.aplus-ap-text a.ant-typography {
|
|
2936
|
-
color: var(--
|
|
3008
|
+
color: var(--ap-color-link);
|
|
2937
3009
|
}
|
|
2938
3010
|
.aplus-ap-text-group:has(.ant-typography-ellipsis) {
|
|
2939
3011
|
max-width: 100%;
|
|
@@ -3013,7 +3085,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3013
3085
|
position: absolute;
|
|
3014
3086
|
z-index: 1;
|
|
3015
3087
|
display: none;
|
|
3016
|
-
background: var(--
|
|
3088
|
+
background: var(--ap-color-primary);
|
|
3017
3089
|
opacity: 0.2;
|
|
3018
3090
|
transition: none;
|
|
3019
3091
|
pointer-events: none;
|
|
@@ -3022,9 +3094,9 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3022
3094
|
box-sizing: border-box;
|
|
3023
3095
|
margin: 0;
|
|
3024
3096
|
padding: 0;
|
|
3025
|
-
color:
|
|
3097
|
+
color: #182948;
|
|
3026
3098
|
font-size: 12px;
|
|
3027
|
-
line-height:
|
|
3099
|
+
line-height: 18px;
|
|
3028
3100
|
list-style: none;
|
|
3029
3101
|
font-family: inherit;
|
|
3030
3102
|
display: flex;
|
|
@@ -3096,7 +3168,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3096
3168
|
background: rgba(0, 0, 0, 0.04);
|
|
3097
3169
|
font-size: 10px;
|
|
3098
3170
|
border-radius: 2px;
|
|
3099
|
-
color:
|
|
3171
|
+
color: #182948;
|
|
3100
3172
|
cursor: pointer;
|
|
3101
3173
|
opacity: 0;
|
|
3102
3174
|
display: flex;
|
|
@@ -3136,7 +3208,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3136
3208
|
position: absolute;
|
|
3137
3209
|
z-index: 1;
|
|
3138
3210
|
display: none;
|
|
3139
|
-
background: var(--
|
|
3211
|
+
background: var(--ap-color-primary);
|
|
3140
3212
|
opacity: 0.2;
|
|
3141
3213
|
transition: none;
|
|
3142
3214
|
pointer-events: none;
|
|
@@ -3184,7 +3256,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3184
3256
|
position: absolute;
|
|
3185
3257
|
z-index: 1;
|
|
3186
3258
|
display: none;
|
|
3187
|
-
background: var(--
|
|
3259
|
+
background: var(--ap-color-primary);
|
|
3188
3260
|
opacity: 0.2;
|
|
3189
3261
|
transition: none;
|
|
3190
3262
|
pointer-events: none;
|
|
@@ -3237,7 +3309,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3237
3309
|
padding: 0;
|
|
3238
3310
|
}
|
|
3239
3311
|
.aplus-ap-view > .ant-dropdown-trigger {
|
|
3240
|
-
color: var(--ap-
|
|
3312
|
+
color: var(--ap-text-color-3);
|
|
3241
3313
|
}
|
|
3242
3314
|
.aplus-ap-view-main-content {
|
|
3243
3315
|
padding: 4px 8px;
|
|
@@ -3246,11 +3318,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3246
3318
|
justify-content: center;
|
|
3247
3319
|
}
|
|
3248
3320
|
.aplus-ap-view-main-content-disabled {
|
|
3249
|
-
color: var(--ap-
|
|
3321
|
+
color: var(--ap-text-color-4);
|
|
3250
3322
|
cursor: not-allowed;
|
|
3251
3323
|
}
|
|
3252
3324
|
.ant-btn-default:has(.aplus-ap-view-main-content-disabled) {
|
|
3253
|
-
border-color: var(--ap-
|
|
3325
|
+
border-color: var(--ap-border-color-base) !important;
|
|
3254
3326
|
}
|
|
3255
3327
|
.aplus-ap-view-icon {
|
|
3256
3328
|
width: 100%;
|
|
@@ -3317,13 +3389,13 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3317
3389
|
font-size: 12px;
|
|
3318
3390
|
display: flex;
|
|
3319
3391
|
align-items: center;
|
|
3320
|
-
color: var(--
|
|
3392
|
+
color: var(--ap-color-primary);
|
|
3321
3393
|
}
|
|
3322
3394
|
.aplus-ap-view-menu-list-content .menu-list-content-action-delete {
|
|
3323
3395
|
cursor: pointer;
|
|
3324
3396
|
display: flex;
|
|
3325
3397
|
align-items: center;
|
|
3326
|
-
color: var(--ap-
|
|
3398
|
+
color: var(--ap-text-color-3);
|
|
3327
3399
|
}
|
|
3328
3400
|
.aplus-ap-view-menu-list-content .menu-list-content-edit {
|
|
3329
3401
|
display: flex;
|
|
@@ -3336,7 +3408,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3336
3408
|
flex-shrink: 0;
|
|
3337
3409
|
}
|
|
3338
3410
|
.aplus-ap-view-menu-list-content:hover {
|
|
3339
|
-
background: var(--ap-
|
|
3411
|
+
background: var(--ap-color-bg-1);
|
|
3340
3412
|
}
|
|
3341
3413
|
.aplus-ap-view-menu-list-content:hover .menu-list-content-action {
|
|
3342
3414
|
display: block;
|
|
@@ -3347,7 +3419,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3347
3419
|
cursor: default;
|
|
3348
3420
|
}
|
|
3349
3421
|
.aplus-ap-view-menu-list-content-active .menu-list-content-name {
|
|
3350
|
-
color: var(--
|
|
3422
|
+
color: var(--ap-color-primary);
|
|
3351
3423
|
}
|
|
3352
3424
|
.aplus-ap-view-overlay .ant-dropdown-menu {
|
|
3353
3425
|
padding: 8px;
|
|
@@ -3358,3 +3430,43 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3358
3430
|
.aplus-ap-view-overlay .ant-dropdown-menu .ant-dropdown-menu-item:hover {
|
|
3359
3431
|
background: transparent;
|
|
3360
3432
|
}
|
|
3433
|
+
.aplus-ap-radio-group {
|
|
3434
|
+
font-size: 12px;
|
|
3435
|
+
padding: 8px 8px 0;
|
|
3436
|
+
background-color: #fff;
|
|
3437
|
+
}
|
|
3438
|
+
.aplus-ap-radio-group__item {
|
|
3439
|
+
cursor: pointer;
|
|
3440
|
+
padding-inline: 12px;
|
|
3441
|
+
border-radius: 4px;
|
|
3442
|
+
color: var(--ap-text-color-1);
|
|
3443
|
+
transition: all 0.3s ease-in-out;
|
|
3444
|
+
will-change: background-color;
|
|
3445
|
+
}
|
|
3446
|
+
.aplus-ap-radio-group__item:hover {
|
|
3447
|
+
background-color: var(--ap-color-bg-2);
|
|
3448
|
+
}
|
|
3449
|
+
.aplus-ap-radio-group__item--active {
|
|
3450
|
+
color: var(--ap-color-primary);
|
|
3451
|
+
background-color: var(--ap-radio-group-item-active-bg-color) !important;
|
|
3452
|
+
}
|
|
3453
|
+
.aplus-ap-drawer-close {
|
|
3454
|
+
width: 32px;
|
|
3455
|
+
height: 32px;
|
|
3456
|
+
display: flex;
|
|
3457
|
+
flex-direction: column;
|
|
3458
|
+
justify-content: center;
|
|
3459
|
+
align-items: center;
|
|
3460
|
+
border: 1px solid var(--ap-border-color-base, #D9D9D9);
|
|
3461
|
+
border-radius: 4px;
|
|
3462
|
+
cursor: pointer;
|
|
3463
|
+
}
|
|
3464
|
+
.aplus-ap-drawer-close .aplus-frontend-icon {
|
|
3465
|
+
font-size: 18px;
|
|
3466
|
+
display: flex;
|
|
3467
|
+
align-items: center;
|
|
3468
|
+
transition: color 0.3s;
|
|
3469
|
+
}
|
|
3470
|
+
.aplus-ap-drawer-close:hover .aplus-frontend-icon {
|
|
3471
|
+
color: var(--ap-color-error, #FF4D4F);
|
|
3472
|
+
}
|