@aplus-frontend/ui 0.5.37 → 0.6.0-beta.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 +74 -72
- package/es/src/ap-field/select/index.vue.d.ts +2 -2
- package/es/src/ap-field/tree-select/index.vue.d.ts +3 -3
- package/es/src/ap-form/drawer-form/index.vue.d.ts +10 -10
- package/es/src/ap-form/interface.d.ts +31 -1
- package/es/src/ap-form/item/index.vue.d.ts +22 -22
- package/es/src/ap-form/items/checkbox/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/date/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/date-range/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/number/index.vue.d.ts +13 -13
- package/es/src/ap-form/items/radio/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/select/index.vue.d.ts +31 -31
- package/es/src/ap-form/items/switch/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/text/index.vue.d.ts +15 -15
- package/es/src/ap-form/items/text/password.vue.d.ts +15 -15
- package/es/src/ap-form/items/text-area/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/tree-select/index.vue.d.ts +35 -35
- package/es/src/ap-form/modal-form/index.vue.d.ts +10 -10
- package/es/src/ap-form/render/item.vue.d.ts +2 -2
- package/es/src/ap-form/search-form/components/popover-filter.vue.d.ts +4 -0
- package/es/src/ap-form/search-form/components/popover-filter.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-filter.vue2.mjs +102 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue.d.ts +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue2.mjs +128 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.d.ts +6 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue2.mjs +39 -0
- package/es/src/ap-form/search-form/hooks/use-count-per-row.d.ts +3 -0
- package/es/src/ap-form/search-form/hooks/use-count-per-row.mjs +17 -0
- package/es/src/ap-form/search-form/index.vue.d.ts +14 -16
- package/es/src/ap-form/search-form/index.vue.mjs +127 -127
- package/es/src/ap-grid/index.vue.mjs +97 -93
- package/es/src/ap-info-layout/ApInfoLayout.vue.mjs +21 -16
- package/es/src/ap-table/ap-table.vue2.mjs +108 -104
- package/es/src/ap-table/constants.d.ts +161 -161
- package/es/src/ap-table/context.d.ts +5 -0
- package/es/src/ap-table/context.mjs +13 -5
- package/es/src/ap-table/utils.d.ts +147 -147
- package/es/src/ap-upload/apUpload.vue.d.ts +8 -8
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +14 -1
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.mjs +65 -51
- package/es/src/business/ap-batch-action-group/index.d.ts +3 -1
- package/es/src/business/ap-size-input/ApSizeInput.d.ts +1 -1
- package/es/src/business/ap-size-input/index.d.ts +3 -3
- package/es/src/business/ap-table-modal/index.d.ts +15 -15
- package/es/src/business/ap-table-modal/table-modal.vue.d.ts +5 -5
- package/es/src/business/ap-view/ap-view.vue.d.ts +6 -0
- package/es/src/business/ap-view/ap-view.vue.mjs +4 -0
- package/es/src/business/ap-view/ap-view.vue2.mjs +171 -0
- package/es/src/business/ap-view/components/main-button-content.vue.d.ts +831 -0
- package/es/src/business/ap-view/components/main-button-content.vue.mjs +4 -0
- package/es/src/business/ap-view/components/main-button-content.vue2.mjs +175 -0
- package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +832 -0
- package/es/src/business/ap-view/components/menu-list-content.vue.mjs +4 -0
- package/es/src/business/ap-view/components/menu-list-content.vue2.mjs +156 -0
- package/es/src/business/ap-view/hooks/use-view-provide.d.ts +14 -0
- package/es/src/business/ap-view/hooks/use-view-provide.mjs +8 -0
- package/es/src/business/ap-view/icons/line-delete.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-delete.vue.mjs +29 -0
- package/es/src/business/ap-view/icons/line-down.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-down.vue.mjs +29 -0
- package/es/src/business/ap-view/icons/line-eye.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-eye.vue.mjs +29 -0
- package/es/src/business/ap-view/index.d.ts +27 -0
- package/es/src/business/ap-view/index.mjs +8 -0
- package/es/src/business/ap-view/interface.d.ts +54 -0
- package/es/src/business/ap-view/interface.mjs +1 -0
- package/es/src/business/ap-view/style/css.d.ts +0 -0
- package/es/src/business/ap-view/style/css.js +1 -0
- package/es/src/business/ap-view/style/index.d.ts +0 -0
- package/es/src/business/ap-view/style/index.js +1 -0
- package/es/src/business/ap-view/utils/enum.d.ts +1 -0
- package/es/src/business/ap-view/utils/enum.mjs +4 -0
- package/es/src/business/ap-view/utils/uuid.d.ts +5 -0
- package/es/src/business/ap-view/utils/uuid.mjs +22 -0
- package/es/src/business/batch-input-group/form-item.vue.d.ts +3 -3
- package/es/src/business/batch-input-group/index.vue.d.ts +6 -6
- package/es/src/business/index.d.ts +1 -0
- package/es/src/business/index.mjs +25 -23
- package/es/src/config-provider/config-provider-props.d.ts +5 -0
- package/es/src/config-provider/config-provider-props.mjs +4 -0
- package/es/src/config-provider/config-provider.d.ts +25 -1
- package/es/src/config-provider/config-provider.mjs +21 -20
- package/es/src/config-provider/css-var.d.ts +14 -0
- package/es/src/config-provider/css-var.mjs +40 -12
- package/es/src/config-provider/hooks/use-global-config.d.ts +5 -0
- package/es/src/config-provider/index.d.ts +89 -3
- package/es/src/full-screen/interface.d.ts +1 -1
- package/es/src/index.mjs +61 -59
- package/es/src/locale/lang/en.mjs +22 -1
- package/es/src/locale/lang/zh-cn.mjs +22 -1
- package/es/src/path-map.mjs +2 -1
- package/es/src/utils/config-provider-preset.d.ts +4 -4
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +6 -6
- package/lib/index.js +1 -1
- package/lib/src/ap-field/select/index.vue.d.ts +2 -2
- package/lib/src/ap-field/tree-select/index.vue.d.ts +3 -3
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +10 -10
- package/lib/src/ap-form/interface.d.ts +31 -1
- package/lib/src/ap-form/item/index.vue.d.ts +22 -22
- package/lib/src/ap-form/items/checkbox/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/date/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/date-range/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/number/index.vue.d.ts +13 -13
- package/lib/src/ap-form/items/radio/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/select/index.vue.d.ts +31 -31
- package/lib/src/ap-form/items/switch/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/text/index.vue.d.ts +15 -15
- package/lib/src/ap-form/items/text/password.vue.d.ts +15 -15
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/tree-select/index.vue.d.ts +35 -35
- package/lib/src/ap-form/modal-form/index.vue.d.ts +10 -10
- package/lib/src/ap-form/render/item.vue.d.ts +2 -2
- package/lib/src/ap-form/search-form/components/popover-filter.vue.d.ts +4 -0
- package/lib/src/ap-form/search-form/components/popover-filter.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-filter.vue2.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue.d.ts +4 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue2.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.d.ts +6 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue2.js +1 -0
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.d.ts +3 -0
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.js +1 -0
- package/lib/src/ap-form/search-form/index.vue.d.ts +14 -16
- package/lib/src/ap-form/search-form/index.vue.js +1 -1
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-info-layout/ApInfoLayout.vue.js +1 -1
- package/lib/src/ap-table/ap-table.vue2.js +1 -1
- package/lib/src/ap-table/constants.d.ts +161 -161
- package/lib/src/ap-table/context.d.ts +5 -0
- package/lib/src/ap-table/context.js +1 -1
- package/lib/src/ap-table/utils.d.ts +147 -147
- package/lib/src/ap-upload/apUpload.vue.d.ts +8 -8
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +14 -1
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.js +1 -1
- package/lib/src/business/ap-batch-action-group/index.d.ts +3 -1
- package/lib/src/business/ap-size-input/ApSizeInput.d.ts +1 -1
- package/lib/src/business/ap-size-input/index.d.ts +3 -3
- package/lib/src/business/ap-table-modal/index.d.ts +15 -15
- package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +5 -5
- package/lib/src/business/ap-view/ap-view.vue.d.ts +6 -0
- package/lib/src/business/ap-view/ap-view.vue.js +1 -0
- package/lib/src/business/ap-view/ap-view.vue2.js +1 -0
- package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +831 -0
- package/lib/src/business/ap-view/components/main-button-content.vue.js +1 -0
- package/lib/src/business/ap-view/components/main-button-content.vue2.js +1 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +832 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue.js +1 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue2.js +1 -0
- package/lib/src/business/ap-view/hooks/use-view-provide.d.ts +14 -0
- package/lib/src/business/ap-view/hooks/use-view-provide.js +1 -0
- package/lib/src/business/ap-view/icons/line-delete.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-delete.vue.js +1 -0
- package/lib/src/business/ap-view/icons/line-down.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-down.vue.js +1 -0
- package/lib/src/business/ap-view/icons/line-eye.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-eye.vue.js +1 -0
- package/lib/src/business/ap-view/index.d.ts +27 -0
- package/lib/src/business/ap-view/index.js +1 -0
- package/lib/src/business/ap-view/interface.d.ts +54 -0
- package/lib/src/business/ap-view/interface.js +1 -0
- package/lib/src/business/ap-view/style/css.cjs +1 -0
- package/lib/src/business/ap-view/style/css.d.ts +0 -0
- package/lib/src/business/ap-view/style/index.cjs +1 -0
- package/lib/src/business/ap-view/style/index.d.ts +0 -0
- package/lib/src/business/ap-view/utils/enum.d.ts +1 -0
- package/lib/src/business/ap-view/utils/enum.js +1 -0
- package/lib/src/business/ap-view/utils/uuid.d.ts +5 -0
- package/lib/src/business/ap-view/utils/uuid.js +1 -0
- package/lib/src/business/batch-input-group/form-item.vue.d.ts +3 -3
- package/lib/src/business/batch-input-group/index.vue.d.ts +6 -6
- package/lib/src/business/index.d.ts +1 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/config-provider/config-provider-props.d.ts +5 -0
- package/lib/src/config-provider/config-provider-props.js +1 -1
- package/lib/src/config-provider/config-provider.d.ts +25 -1
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/css-var.d.ts +14 -0
- package/lib/src/config-provider/css-var.js +1 -1
- package/lib/src/config-provider/hooks/use-global-config.d.ts +5 -0
- package/lib/src/config-provider/index.d.ts +89 -3
- package/lib/src/full-screen/interface.d.ts +1 -1
- 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/path-map.js +1 -1
- package/lib/src/utils/config-provider-preset.d.ts +4 -4
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +6 -6
- package/package.json +7 -7
- package/theme/ap-action/item-dropdown.css +28 -0
- package/theme/ap-action/item-dropdown.less +1 -1
- package/theme/ap-action/item.css +35 -1
- package/theme/ap-action/item.less +1 -2
- package/theme/ap-appendix/ap-appendix.css +28 -0
- package/theme/ap-attachment/ap-attachment.css +28 -0
- package/theme/ap-batch-action/ap-batch-action.css +28 -0
- package/theme/ap-button/ap-button.css +28 -0
- package/theme/ap-card/ap-card.css +28 -0
- package/theme/ap-descriptions/ap-descriptions.css +28 -0
- package/theme/ap-download/ap-download.css +28 -0
- package/theme/ap-expand-alert/ap-expand-alert.css +28 -0
- package/theme/ap-field/checkbox.css +28 -0
- package/theme/ap-field/index.css +28 -0
- package/theme/ap-field/number.css +28 -0
- package/theme/ap-field/radio.css +28 -0
- package/theme/ap-field/text-area.css +28 -0
- package/theme/ap-form/ap-form-item-group.css +28 -0
- package/theme/ap-form/ap-form-item.css +28 -0
- package/theme/ap-form/drawer-form.css +28 -0
- package/theme/ap-form/index.css +169 -0
- package/theme/ap-form/item-text-group.css +28 -0
- package/theme/ap-form/item-text.css +28 -0
- package/theme/ap-form/modal-form.css +28 -0
- package/theme/ap-form/search-form-sorter.css +120 -0
- package/theme/ap-form/search-form-sorter.less +71 -0
- package/theme/ap-form/search-form.css +169 -0
- package/theme/ap-form/search-form.less +56 -0
- package/theme/ap-grid/editable.css +28 -0
- package/theme/ap-grid/index.css +176 -1
- package/theme/ap-group-search/ap-extension-select.css +28 -0
- package/theme/ap-group-search/ap-group-search.css +28 -0
- package/theme/ap-group-search/ap-popover-select.css +28 -0
- package/theme/ap-image/ap-image.css +28 -0
- package/theme/ap-input-radio/ap-input-radio.css +28 -0
- package/theme/ap-label/ap-label.css +28 -0
- package/theme/ap-ladder/ap-ladder.css +28 -0
- package/theme/ap-layout/ap-info-layout.css +28 -0
- package/theme/ap-list/index.css +28 -0
- package/theme/ap-product-info/ap-product-info.css +28 -0
- package/theme/ap-select-layout/ap-select-layout.css +28 -0
- package/theme/ap-size-input/ap-size-input.css +28 -0
- package/theme/ap-status/ap-status.css +28 -0
- package/theme/ap-summary/index.css +28 -0
- package/theme/ap-table/ap-table-index.css +28 -0
- package/theme/ap-table/ap-table-paragraph-ellipsis.css +28 -0
- package/theme/ap-table/ap-table.css +190 -13
- package/theme/ap-table/ap-table.less +0 -1
- package/theme/ap-table/setting/index.css +42 -0
- package/theme/ap-table/setting/modal.css +36 -0
- package/theme/ap-table/setting/modal.less +1 -0
- package/theme/ap-table/setting/select-group.css +28 -0
- package/theme/ap-table/setting/sortable-item-meta.css +28 -0
- package/theme/ap-table/setting/sortable-item.css +28 -0
- package/theme/ap-table/setting/sorter.css +34 -0
- package/theme/ap-table/setting/sorter.less +1 -2
- package/theme/ap-table-modal/index.css +190 -13
- package/theme/ap-tag/ap-tag-group.css +28 -0
- package/theme/ap-tag/ap-tag.css +28 -0
- package/theme/ap-title/ap-title.css +28 -0
- package/theme/ap-upload/index.css +28 -0
- package/theme/ap-upload/multiple-file.css +28 -0
- package/theme/ap-upload/picture.css +28 -0
- package/theme/ap-upload/single-file.css +28 -0
- package/theme/ap-upload/upload.css +28 -0
- package/theme/ap-upload-single/index.css +28 -0
- package/theme/ap-view/ap-view.css +149 -0
- package/theme/ap-view/ap-view.less +128 -0
- package/theme/batch-input-group/index.css +28 -0
- package/theme/batch-input-group/popover-input.css +28 -0
- package/theme/check-card/index.css +49 -1
- package/theme/check-card/index.less +3 -4
- package/theme/editable-table/index.css +176 -1
- package/theme/full-screen/index.css +28 -0
- package/theme/index.css +340 -15
- package/theme/index.less +1 -0
- package/theme/mask/index.css +28 -0
- package/theme/mixins/config.less +1 -0
- package/theme/mixins/mixins.css +28 -0
- package/theme/mixins/mixins.less +35 -0
- package/theme/scroll-bar/index.css +28 -0
- package/theme/scroll-view/index.css +28 -0
- package/theme/splitter/index.css +28 -0
- package/theme/text/group.css +28 -0
- package/theme/text/index.css +36 -1
- package/theme/text/index.less +1 -1
- package/theme/work-order-modal/index.css +28 -0
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-info-layout-container {
|
|
2
30
|
height: 100%;
|
|
3
31
|
background-color: #fff;
|
package/theme/ap-list/index.css
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-list-content-container {
|
|
2
30
|
position: relative;
|
|
3
31
|
}
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-product-info {
|
|
2
30
|
display: flex;
|
|
3
31
|
}
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-select-layout {
|
|
2
30
|
display: flex;
|
|
3
31
|
height: 100%;
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-size-input {
|
|
2
30
|
display: flex;
|
|
3
31
|
align-items: center;
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
@font-face {
|
|
2
30
|
font-family: customFont;
|
|
3
31
|
src: url('https://front-ljh.oss-cn-hangzhou.aliyuncs.com/fonts/PlayfairDisplay-SemiBold.ttf');
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-summary__item {
|
|
2
30
|
height: 48px;
|
|
3
31
|
padding: 8px 16px !important;
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-table-index--bordered {
|
|
2
30
|
display: inline-flex;
|
|
3
31
|
justify-content: center;
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-table-paragraph-ellipsis {
|
|
2
30
|
display: flex;
|
|
3
31
|
align-items: center;
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-table-index--bordered {
|
|
2
30
|
display: inline-flex;
|
|
3
31
|
justify-content: center;
|
|
@@ -10,18 +38,6 @@
|
|
|
10
38
|
border-radius: 9px;
|
|
11
39
|
background-color: #979797;
|
|
12
40
|
}
|
|
13
|
-
.aplus-ap-table-pagination {
|
|
14
|
-
margin-top: 16px;
|
|
15
|
-
}
|
|
16
|
-
.aplus-ap-table-pagination__total {
|
|
17
|
-
font-size: 14px;
|
|
18
|
-
line-height: 22px;
|
|
19
|
-
color: #333333;
|
|
20
|
-
padding-block: 6px;
|
|
21
|
-
}
|
|
22
|
-
.aplus-ap-table-pagination__total-right {
|
|
23
|
-
padding-inline-start: 10px;
|
|
24
|
-
}
|
|
25
41
|
.aplus-ap-column-setting-wrapper {
|
|
26
42
|
display: flex;
|
|
27
43
|
flex-direction: row;
|
|
@@ -29,6 +45,14 @@
|
|
|
29
45
|
height: 100%;
|
|
30
46
|
}
|
|
31
47
|
.aplus-ap-column-setting-wrapper .aplus-ap-table-table-header__title {
|
|
48
|
+
box-sizing: border-box;
|
|
49
|
+
margin: 0;
|
|
50
|
+
padding: 0;
|
|
51
|
+
color: rgba(0 0 0 / 85%);
|
|
52
|
+
font-size: 14px;
|
|
53
|
+
font-family: inherit;
|
|
54
|
+
line-height: 22px;
|
|
55
|
+
list-style: none;
|
|
32
56
|
display: inline-block;
|
|
33
57
|
-webkit-line-clamp: unset;
|
|
34
58
|
-webkit-box-orient: unset;
|
|
@@ -149,8 +173,14 @@
|
|
|
149
173
|
padding: 16px 20px;
|
|
150
174
|
}
|
|
151
175
|
.aplus-column-setting-sorter-header-title {
|
|
176
|
+
box-sizing: border-box;
|
|
177
|
+
margin: 0;
|
|
178
|
+
padding: 0;
|
|
179
|
+
color: rgba(0 0 0 / 85%);
|
|
152
180
|
font-size: 14px;
|
|
181
|
+
font-family: inherit;
|
|
153
182
|
line-height: 22px;
|
|
183
|
+
list-style: none;
|
|
154
184
|
font-weight: bold;
|
|
155
185
|
color: #182948;
|
|
156
186
|
}
|
|
@@ -305,6 +335,98 @@
|
|
|
305
335
|
.aplus-ap-form-modal-form .ant-modal-close {
|
|
306
336
|
top: 16px;
|
|
307
337
|
}
|
|
338
|
+
.aplus-search-form-sorter-content {
|
|
339
|
+
width: 560px;
|
|
340
|
+
}
|
|
341
|
+
.aplus-search-form-sorter-header {
|
|
342
|
+
padding: 16px 16px 0px;
|
|
343
|
+
}
|
|
344
|
+
.aplus-search-form-sorter-header-title {
|
|
345
|
+
box-sizing: border-box;
|
|
346
|
+
margin: 0;
|
|
347
|
+
padding: 0;
|
|
348
|
+
color: rgba(0 0 0 / 85%);
|
|
349
|
+
font-size: 14px;
|
|
350
|
+
font-family: inherit;
|
|
351
|
+
line-height: 22px;
|
|
352
|
+
list-style: none;
|
|
353
|
+
font-size: 16px;
|
|
354
|
+
font-weight: 700;
|
|
355
|
+
display: inline-block;
|
|
356
|
+
padding-bottom: 4px;
|
|
357
|
+
}
|
|
358
|
+
.aplus-search-form-sorter-header-desc {
|
|
359
|
+
box-sizing: border-box;
|
|
360
|
+
margin: 0;
|
|
361
|
+
padding: 0;
|
|
362
|
+
color: rgba(0 0 0 / 85%);
|
|
363
|
+
font-size: 14px;
|
|
364
|
+
font-family: inherit;
|
|
365
|
+
line-height: 22px;
|
|
366
|
+
list-style: none;
|
|
367
|
+
color: #8896b0;
|
|
368
|
+
}
|
|
369
|
+
.aplus-search-form-sorter-header-action-wrapper {
|
|
370
|
+
padding: 8px;
|
|
371
|
+
margin: -8px;
|
|
372
|
+
cursor: pointer;
|
|
373
|
+
}
|
|
374
|
+
.aplus-search-form-sorter-header-reset-btn {
|
|
375
|
+
box-sizing: border-box;
|
|
376
|
+
margin: 0;
|
|
377
|
+
padding: 0;
|
|
378
|
+
color: rgba(0 0 0 / 85%);
|
|
379
|
+
font-size: 14px;
|
|
380
|
+
font-family: inherit;
|
|
381
|
+
line-height: 22px;
|
|
382
|
+
list-style: none;
|
|
383
|
+
color: #0070ff;
|
|
384
|
+
}
|
|
385
|
+
.aplus-search-form-sorter-sorter-wrapper {
|
|
386
|
+
display: flex;
|
|
387
|
+
flex-direction: row;
|
|
388
|
+
flex-wrap: wrap;
|
|
389
|
+
margin-left: -4px;
|
|
390
|
+
margin-right: -4px;
|
|
391
|
+
row-gap: 8px;
|
|
392
|
+
}
|
|
393
|
+
.aplus-search-form-sorter-sorter-item {
|
|
394
|
+
flex: 0 0 33.333333%;
|
|
395
|
+
max-width: 33.333333%;
|
|
396
|
+
padding-inline: 4px;
|
|
397
|
+
}
|
|
398
|
+
.aplus-search-form-sorter-sorter-item > div {
|
|
399
|
+
border: 1px solid #E9EDF3;
|
|
400
|
+
border-radius: 4px;
|
|
401
|
+
padding: 8px;
|
|
402
|
+
display: flex;
|
|
403
|
+
align-items: center;
|
|
404
|
+
}
|
|
405
|
+
.aplus-search-form-sorter-sorter-item > div:hover {
|
|
406
|
+
border-color: var(--basic-color-primary, #0070ff);
|
|
407
|
+
cursor: pointer;
|
|
408
|
+
}
|
|
409
|
+
.aplus-search-form-sorter-sorter-item > div:hover .aplus-search-form-sorter-sorter-item-holder {
|
|
410
|
+
color: var(--basic-color-primary, #0070ff) !important;
|
|
411
|
+
}
|
|
412
|
+
.aplus-search-form-sorter-sorter-item--hidden {
|
|
413
|
+
display: none;
|
|
414
|
+
}
|
|
415
|
+
.aplus-search-form-sorter-sorter-item-text {
|
|
416
|
+
box-sizing: border-box;
|
|
417
|
+
margin: 0;
|
|
418
|
+
padding: 0;
|
|
419
|
+
color: rgba(0 0 0 / 85%);
|
|
420
|
+
font-size: 14px;
|
|
421
|
+
font-family: inherit;
|
|
422
|
+
line-height: 22px;
|
|
423
|
+
list-style: none;
|
|
424
|
+
padding-left: 4px;
|
|
425
|
+
max-width: 100%;
|
|
426
|
+
white-space: nowrap;
|
|
427
|
+
overflow: hidden;
|
|
428
|
+
text-overflow: ellipsis;
|
|
429
|
+
}
|
|
308
430
|
.aplus-ap-form-search-form .ant-form-item {
|
|
309
431
|
margin-bottom: 16px;
|
|
310
432
|
}
|
|
@@ -314,6 +436,55 @@
|
|
|
314
436
|
.aplus-ap-form-search-form .ant-form-item-control .ant-input-number {
|
|
315
437
|
width: 100%;
|
|
316
438
|
}
|
|
439
|
+
.aplus-ap-form-search-form__popover .ant-form-item {
|
|
440
|
+
margin-bottom: 16px;
|
|
441
|
+
}
|
|
442
|
+
.aplus-ap-form-search-form__popover .ant-popover-arrow {
|
|
443
|
+
display: none;
|
|
444
|
+
}
|
|
445
|
+
.aplus-ap-form-search-form__popover .ant-popover-inner {
|
|
446
|
+
padding: 0;
|
|
447
|
+
}
|
|
448
|
+
.aplus-ap-form-search-form__popover-content {
|
|
449
|
+
padding: 12px 16px 16px;
|
|
450
|
+
}
|
|
451
|
+
.aplus-ap-form-search-form__popover-content textarea {
|
|
452
|
+
padding: 0;
|
|
453
|
+
}
|
|
454
|
+
.aplus-ap-form-search-form__popover-footer {
|
|
455
|
+
padding: 12px 16px;
|
|
456
|
+
}
|
|
457
|
+
.aplus-ap-form-search-form__popover-footer-confirm-btn {
|
|
458
|
+
margin-left: 10px;
|
|
459
|
+
}
|
|
460
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper {
|
|
461
|
+
flex-shrink: 0;
|
|
462
|
+
}
|
|
463
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper .ant-btn:not(:only-child):first-child {
|
|
464
|
+
border-top-right-radius: 0px;
|
|
465
|
+
border-bottom-right-radius: 0px;
|
|
466
|
+
}
|
|
467
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper .ant-btn:not(:only-child):first-child:hover {
|
|
468
|
+
z-index: 1;
|
|
469
|
+
}
|
|
470
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper .ant-btn:not(:only-child):last-child {
|
|
471
|
+
border-top-left-radius: 0px;
|
|
472
|
+
border-bottom-left-radius: 0px;
|
|
473
|
+
margin-left: -1px;
|
|
474
|
+
}
|
|
475
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper .ant-btn:not(:only-child):last-child:hover {
|
|
476
|
+
z-index: 1;
|
|
477
|
+
}
|
|
478
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper span.aplus-frontend-icon {
|
|
479
|
+
line-height: 0px;
|
|
480
|
+
vertical-align: -0.125em;
|
|
481
|
+
}
|
|
482
|
+
.aplus-ap-form-search-form-action-btn {
|
|
483
|
+
padding-inline: 12px;
|
|
484
|
+
}
|
|
485
|
+
.aplus-ap-form-search-form-action-btn-reset {
|
|
486
|
+
background-color: #E9EDF3;
|
|
487
|
+
}
|
|
317
488
|
.aplus-ap-form-item-text-group-compact .ant-select-focused {
|
|
318
489
|
z-index: 1;
|
|
319
490
|
}
|
|
@@ -389,9 +560,15 @@
|
|
|
389
560
|
word-break: break-all;
|
|
390
561
|
}
|
|
391
562
|
.aplus-action-item {
|
|
392
|
-
|
|
563
|
+
box-sizing: border-box;
|
|
564
|
+
margin: 0;
|
|
565
|
+
padding: 0;
|
|
566
|
+
color: rgba(0 0 0 / 85%);
|
|
393
567
|
font-size: 14px;
|
|
568
|
+
font-family: inherit;
|
|
394
569
|
line-height: 22px;
|
|
570
|
+
list-style: none;
|
|
571
|
+
display: inline-block;
|
|
395
572
|
cursor: pointer;
|
|
396
573
|
}
|
|
397
574
|
.aplus-action-item--primary {
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-column-setting-wrapper {
|
|
2
30
|
display: flex;
|
|
3
31
|
flex-direction: row;
|
|
@@ -5,6 +33,14 @@
|
|
|
5
33
|
height: 100%;
|
|
6
34
|
}
|
|
7
35
|
.aplus-ap-column-setting-wrapper .aplus-ap-table-table-header__title {
|
|
36
|
+
box-sizing: border-box;
|
|
37
|
+
margin: 0;
|
|
38
|
+
padding: 0;
|
|
39
|
+
color: rgba(0 0 0 / 85%);
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
font-family: inherit;
|
|
42
|
+
line-height: 22px;
|
|
43
|
+
list-style: none;
|
|
8
44
|
display: inline-block;
|
|
9
45
|
-webkit-line-clamp: unset;
|
|
10
46
|
-webkit-box-orient: unset;
|
|
@@ -125,8 +161,14 @@
|
|
|
125
161
|
padding: 16px 20px;
|
|
126
162
|
}
|
|
127
163
|
.aplus-column-setting-sorter-header-title {
|
|
164
|
+
box-sizing: border-box;
|
|
165
|
+
margin: 0;
|
|
166
|
+
padding: 0;
|
|
167
|
+
color: rgba(0 0 0 / 85%);
|
|
128
168
|
font-size: 14px;
|
|
169
|
+
font-family: inherit;
|
|
129
170
|
line-height: 22px;
|
|
171
|
+
list-style: none;
|
|
130
172
|
font-weight: bold;
|
|
131
173
|
color: #182948;
|
|
132
174
|
}
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-column-setting-wrapper {
|
|
2
30
|
display: flex;
|
|
3
31
|
flex-direction: row;
|
|
@@ -5,6 +33,14 @@
|
|
|
5
33
|
height: 100%;
|
|
6
34
|
}
|
|
7
35
|
.aplus-ap-column-setting-wrapper .aplus-ap-table-table-header__title {
|
|
36
|
+
box-sizing: border-box;
|
|
37
|
+
margin: 0;
|
|
38
|
+
padding: 0;
|
|
39
|
+
color: rgba(0 0 0 / 85%);
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
font-family: inherit;
|
|
42
|
+
line-height: 22px;
|
|
43
|
+
list-style: none;
|
|
8
44
|
display: inline-block;
|
|
9
45
|
-webkit-line-clamp: unset;
|
|
10
46
|
-webkit-box-orient: unset;
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-select-group-header {
|
|
2
30
|
background-color: #F2F6F9;
|
|
3
31
|
padding: 4px 12px;
|