@aplus-frontend/ui 0.1.13 → 0.1.14
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/src/ap-download/ap-download.vue.mjs +27 -27
- package/es/src/ap-download/hooks/useStyle.d.ts +1 -1
- package/es/src/ap-download/hooks/useStyle.mjs +13 -13
- package/es/src/theme/antd-global-overwrite/admin/form.css +5 -5
- package/es/src/theme/antd-global-overwrite/admin/index.css +128 -21
- package/es/src/theme/antd-global-overwrite/admin/pagination.css +16 -16
- package/es/src/theme/antd-global-overwrite/admin/table.css +107 -0
- package/es/src/theme/antd-global-overwrite/aplus/form.css +14 -14
- package/es/src/theme/antd-global-overwrite/aplus/index.css +174 -67
- package/es/src/theme/antd-global-overwrite/aplus/pagination.css +20 -20
- package/es/src/theme/antd-global-overwrite/aplus/table.css +140 -33
- package/lib/src/ap-download/ap-download.vue.js +1 -1
- package/lib/src/ap-download/hooks/useStyle.d.ts +1 -1
- package/lib/src/ap-download/hooks/useStyle.js +1 -1
- package/lib/src/theme/antd-global-overwrite/admin/form.css +5 -5
- package/lib/src/theme/antd-global-overwrite/admin/index.css +128 -21
- package/lib/src/theme/antd-global-overwrite/admin/pagination.css +16 -16
- package/lib/src/theme/antd-global-overwrite/admin/table.css +107 -0
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +14 -14
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +174 -67
- package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +20 -20
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +140 -33
- package/package.json +3 -3
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as y, computed as s, unref as t, openBlock as w, createElementBlock as z, normalizeStyle as b, normalizeClass as n, createElementVNode as a, renderSlot as N, toDisplayString as O } from "vue";
|
|
2
2
|
import "../config-provider/index.mjs";
|
|
3
|
-
import { useOssInit as
|
|
3
|
+
import { useOssInit as S } from "./hooks/index.mjs";
|
|
4
4
|
import "./style/ap-download.css";
|
|
5
|
-
import { getFileInfo as
|
|
6
|
-
import { useStyle as
|
|
7
|
-
import { useLocale as
|
|
8
|
-
import { useGlobalConfig as
|
|
9
|
-
const
|
|
5
|
+
import { getFileInfo as h } from "./utils/getFileInfo.mjs";
|
|
6
|
+
import { useStyle as A } from "./hooks/useStyle.mjs";
|
|
7
|
+
import { useLocale as B } from "../config-provider/hooks/use-locale.mjs";
|
|
8
|
+
import { useGlobalConfig as F } from "../config-provider/hooks/use-global-config.mjs";
|
|
9
|
+
const k = { class: "icon" }, v = { class: "text" }, V = /* @__PURE__ */ y({
|
|
10
10
|
name: "ApDownload",
|
|
11
11
|
__name: "ap-download",
|
|
12
12
|
props: {
|
|
@@ -19,35 +19,35 @@ const A = { class: "icon" }, B = { class: "text" }, W = /* @__PURE__ */ g({
|
|
|
19
19
|
getOssAccess: {}
|
|
20
20
|
},
|
|
21
21
|
setup(l) {
|
|
22
|
-
const { lang: r } =
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
),
|
|
22
|
+
const { lang: r } = B(), c = s(() => r.value === "zh-cn" ? "zh_CN" : "en_US"), e = l, i = F("apUpload"), p = s(() => e.disabled), d = s(() => e.color), m = s(() => e.size), { wrapperStyle: f, getWrapperClass: u, getInnerWrapperClass: g } = A(
|
|
23
|
+
d,
|
|
24
|
+
m,
|
|
25
|
+
p
|
|
26
|
+
), _ = s(() => {
|
|
27
27
|
var o;
|
|
28
28
|
return e.getOssAccess || ((o = i.value) == null ? void 0 : o.getOssAccess);
|
|
29
|
-
}),
|
|
30
|
-
e.disabled || await (await
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
)).downloadFile(
|
|
29
|
+
}), C = async () => {
|
|
30
|
+
e.disabled || await (await S(
|
|
31
|
+
_.value,
|
|
32
|
+
t(c)
|
|
33
|
+
)).downloadFile(h(e.needName, e.fileName));
|
|
34
34
|
};
|
|
35
|
-
return (o,
|
|
36
|
-
style:
|
|
37
|
-
class: n(
|
|
38
|
-
onClick:
|
|
35
|
+
return (o, x) => (w(), z("span", {
|
|
36
|
+
style: b(t(f)),
|
|
37
|
+
class: n(t(u)),
|
|
38
|
+
onClick: C
|
|
39
39
|
}, [
|
|
40
|
-
|
|
41
|
-
class: n(
|
|
40
|
+
a("span", {
|
|
41
|
+
class: n(t(g))
|
|
42
42
|
}, [
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
a("span", k, [
|
|
44
|
+
N(o.$slots, "icon")
|
|
45
45
|
]),
|
|
46
|
-
|
|
46
|
+
a("span", v, O(o.text), 1)
|
|
47
47
|
], 2)
|
|
48
48
|
], 6));
|
|
49
49
|
}
|
|
50
50
|
});
|
|
51
51
|
export {
|
|
52
|
-
|
|
52
|
+
V as default
|
|
53
53
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComputedRef } from 'vue';
|
|
2
|
-
export declare function useStyle(color: string
|
|
2
|
+
export declare function useStyle(color: ComputedRef<string>, size: ComputedRef<string>, disabled: ComputedRef<boolean>): {
|
|
3
3
|
wrapperStyle: ComputedRef<Record<string, any>>;
|
|
4
4
|
getWrapperClass: ComputedRef<string[]>;
|
|
5
5
|
getInnerWrapperClass: ComputedRef<string[]>;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { computed as
|
|
2
|
-
import { getHexWithOpacity as
|
|
1
|
+
import { computed as a } from "vue";
|
|
2
|
+
import { getHexWithOpacity as m } from "../utils/getFileInfo.mjs";
|
|
3
3
|
import "../../config-provider/index.mjs";
|
|
4
4
|
import { useNamespace as d } from "../../config-provider/hooks/use-namespace.mjs";
|
|
5
5
|
import { useGlobalConfig as c } from "../../config-provider/hooks/use-global-config.mjs";
|
|
6
|
-
function
|
|
7
|
-
const { b:
|
|
8
|
-
"--download-main-color":
|
|
9
|
-
"--download-main-color-opacity":
|
|
10
|
-
})),
|
|
11
|
-
const
|
|
12
|
-
return t && (i.value === "aplus" ?
|
|
6
|
+
function y(o, p, t) {
|
|
7
|
+
const { b: n, bm: e } = d("ap-download"), i = c("uiMode"), l = a(() => ({
|
|
8
|
+
"--download-main-color": o.value,
|
|
9
|
+
"--download-main-color-opacity": m(o.value, 0.6)
|
|
10
|
+
})), s = a(() => [n("wrapper"), e("wrapper", p.value)].filter(Boolean)), u = a(() => {
|
|
11
|
+
const r = [n("inner-wrapper"), e("inner-wrapper", p.value)];
|
|
12
|
+
return t.value && (i.value === "aplus" ? r.push(e("inner-wrapper", "disabled")) : r.push(e("inner-wrapper", "disabled-admin"))), r;
|
|
13
13
|
});
|
|
14
14
|
return {
|
|
15
|
-
wrapperStyle:
|
|
16
|
-
getWrapperClass:
|
|
17
|
-
getInnerWrapperClass:
|
|
15
|
+
wrapperStyle: l,
|
|
16
|
+
getWrapperClass: s,
|
|
17
|
+
getInnerWrapperClass: u
|
|
18
18
|
};
|
|
19
19
|
}
|
|
20
20
|
export {
|
|
21
|
-
|
|
21
|
+
y as useStyle
|
|
22
22
|
};
|
|
@@ -44,22 +44,22 @@
|
|
|
44
44
|
input.ant-input[disabled] {
|
|
45
45
|
color: #666666;
|
|
46
46
|
}
|
|
47
|
-
div[class
|
|
47
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] {
|
|
48
48
|
padding: 16px;
|
|
49
49
|
}
|
|
50
|
-
div[class
|
|
50
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
51
51
|
display: flex;
|
|
52
52
|
align-items: center;
|
|
53
53
|
justify-content: flex-end;
|
|
54
54
|
}
|
|
55
|
-
div[class
|
|
55
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
56
56
|
order: 1;
|
|
57
57
|
}
|
|
58
|
-
div[class
|
|
58
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
59
59
|
order: 2;
|
|
60
60
|
margin-right: 0;
|
|
61
61
|
}
|
|
62
|
-
div[class
|
|
62
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
63
63
|
order: 3;
|
|
64
64
|
margin-left: 0.5rem;
|
|
65
65
|
}
|
|
@@ -124,22 +124,22 @@
|
|
|
124
124
|
input.ant-input[disabled] {
|
|
125
125
|
color: #666666;
|
|
126
126
|
}
|
|
127
|
-
div[class
|
|
127
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] {
|
|
128
128
|
padding: 16px;
|
|
129
129
|
}
|
|
130
|
-
div[class
|
|
130
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
131
131
|
display: flex;
|
|
132
132
|
align-items: center;
|
|
133
133
|
justify-content: flex-end;
|
|
134
134
|
}
|
|
135
|
-
div[class
|
|
135
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
136
136
|
order: 1;
|
|
137
137
|
}
|
|
138
|
-
div[class
|
|
138
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
139
139
|
order: 2;
|
|
140
140
|
margin-right: 0;
|
|
141
141
|
}
|
|
142
|
-
div[class
|
|
142
|
+
div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
143
143
|
order: 3;
|
|
144
144
|
margin-left: 0.5rem;
|
|
145
145
|
}
|
|
@@ -278,22 +278,22 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
278
278
|
color: #ff4d4f;
|
|
279
279
|
}
|
|
280
280
|
[class$='-basic-table'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right,
|
|
281
|
-
[class
|
|
281
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right {
|
|
282
282
|
margin: 16px 0 0;
|
|
283
283
|
}
|
|
284
284
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination,
|
|
285
|
-
[class
|
|
285
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination {
|
|
286
286
|
position: relative;
|
|
287
287
|
}
|
|
288
288
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text,
|
|
289
|
-
[class
|
|
289
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text {
|
|
290
290
|
position: absolute;
|
|
291
291
|
left: 0;
|
|
292
292
|
height: 30px;
|
|
293
293
|
line-height: 30px;
|
|
294
294
|
}
|
|
295
295
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item,
|
|
296
|
-
[class
|
|
296
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item {
|
|
297
297
|
box-sizing: border-box;
|
|
298
298
|
min-width: 30px;
|
|
299
299
|
height: 30px;
|
|
@@ -305,13 +305,13 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
305
305
|
border-radius: 4px;
|
|
306
306
|
}
|
|
307
307
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
308
|
-
[class
|
|
309
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class
|
|
310
|
-
[class
|
|
308
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
309
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
310
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active) {
|
|
311
311
|
border: 1px solid #d9d9d9;
|
|
312
312
|
}
|
|
313
313
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-prev,
|
|
314
|
-
[class
|
|
314
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-prev {
|
|
315
315
|
width: 30px;
|
|
316
316
|
height: 30px;
|
|
317
317
|
margin: 0 4px;
|
|
@@ -319,7 +319,7 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
319
319
|
border: 1px solid #d9d9d9;
|
|
320
320
|
}
|
|
321
321
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-next,
|
|
322
|
-
[class
|
|
322
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-next {
|
|
323
323
|
width: 30px;
|
|
324
324
|
height: 30px;
|
|
325
325
|
margin: 0 4px;
|
|
@@ -327,34 +327,34 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
327
327
|
border: 1px solid #d9d9d9;
|
|
328
328
|
}
|
|
329
329
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled,
|
|
330
|
-
[class
|
|
330
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled {
|
|
331
331
|
border: 1px solid #d9d9d9;
|
|
332
332
|
}
|
|
333
333
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options,
|
|
334
|
-
[class
|
|
334
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options {
|
|
335
335
|
margin-left: 4px;
|
|
336
336
|
}
|
|
337
337
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector,
|
|
338
|
-
[class
|
|
338
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector {
|
|
339
339
|
min-width: 90px;
|
|
340
340
|
height: 30px;
|
|
341
341
|
}
|
|
342
342
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item,
|
|
343
|
-
[class
|
|
343
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item {
|
|
344
344
|
line-height: 28px;
|
|
345
345
|
}
|
|
346
346
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow,
|
|
347
|
-
[class
|
|
347
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow {
|
|
348
348
|
color: #333333;
|
|
349
349
|
}
|
|
350
350
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper,
|
|
351
|
-
[class
|
|
351
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper {
|
|
352
352
|
margin-left: 20px;
|
|
353
353
|
color: #333333;
|
|
354
354
|
font-size: 14px;
|
|
355
355
|
}
|
|
356
356
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input,
|
|
357
|
-
[class
|
|
357
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input {
|
|
358
358
|
min-width: 60px;
|
|
359
359
|
height: 30px;
|
|
360
360
|
margin: 0 8px;
|
|
@@ -592,3 +592,110 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
592
592
|
[class$='-basic-table-row__striped'] td {
|
|
593
593
|
background-color: #fafafa;
|
|
594
594
|
}
|
|
595
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
596
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
597
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
598
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
599
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
600
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
601
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
602
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
603
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
604
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper,
|
|
605
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper,
|
|
606
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper,
|
|
607
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
608
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
609
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
610
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
611
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
612
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container {
|
|
613
|
+
overflow: visible;
|
|
614
|
+
}
|
|
615
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
616
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
617
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
618
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
619
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
620
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
621
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
622
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
623
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
624
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
625
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
626
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
627
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
628
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
629
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
630
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
631
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
632
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table {
|
|
633
|
+
overflow: visible;
|
|
634
|
+
}
|
|
635
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
636
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
637
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
638
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
639
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
640
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
641
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
642
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
643
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
644
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
645
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
646
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
647
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
648
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
649
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
650
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
651
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
652
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
653
|
+
overflow: visible;
|
|
654
|
+
}
|
|
655
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
656
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
657
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
658
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
659
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
660
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
661
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
662
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
663
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
664
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
665
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
666
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
667
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
668
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
669
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
670
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
671
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
672
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
673
|
+
position: sticky;
|
|
674
|
+
top: 0;
|
|
675
|
+
z-index: 99;
|
|
676
|
+
}
|
|
677
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
678
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
679
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
680
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
681
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
682
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
683
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
684
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
685
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
686
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
687
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
688
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
689
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
690
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
691
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
692
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
693
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
694
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination {
|
|
695
|
+
position: sticky;
|
|
696
|
+
bottom: 0;
|
|
697
|
+
z-index: 99;
|
|
698
|
+
margin: 0;
|
|
699
|
+
padding: 16px 0;
|
|
700
|
+
background-color: #ffffff;
|
|
701
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
[class$='-basic-table'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right,
|
|
2
|
-
[class
|
|
2
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right {
|
|
3
3
|
margin: 16px 0 0;
|
|
4
4
|
}
|
|
5
5
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination,
|
|
6
|
-
[class
|
|
6
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination {
|
|
7
7
|
position: relative;
|
|
8
8
|
}
|
|
9
9
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text,
|
|
10
|
-
[class
|
|
10
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-total-text {
|
|
11
11
|
position: absolute;
|
|
12
12
|
left: 0;
|
|
13
13
|
height: 30px;
|
|
14
14
|
line-height: 30px;
|
|
15
15
|
}
|
|
16
16
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item,
|
|
17
|
-
[class
|
|
17
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item {
|
|
18
18
|
box-sizing: border-box;
|
|
19
19
|
min-width: 30px;
|
|
20
20
|
height: 30px;
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
border-radius: 4px;
|
|
27
27
|
}
|
|
28
28
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
29
|
-
[class
|
|
30
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class
|
|
31
|
-
[class
|
|
29
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
30
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active),
|
|
31
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item:not([class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-item-active) {
|
|
32
32
|
border: 1px solid #d9d9d9;
|
|
33
33
|
}
|
|
34
34
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-prev,
|
|
35
|
-
[class
|
|
35
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-prev {
|
|
36
36
|
width: 30px;
|
|
37
37
|
height: 30px;
|
|
38
38
|
margin: 0 4px;
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
border: 1px solid #d9d9d9;
|
|
41
41
|
}
|
|
42
42
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-next,
|
|
43
|
-
[class
|
|
43
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-next {
|
|
44
44
|
width: 30px;
|
|
45
45
|
height: 30px;
|
|
46
46
|
margin: 0 4px;
|
|
@@ -48,34 +48,34 @@
|
|
|
48
48
|
border: 1px solid #d9d9d9;
|
|
49
49
|
}
|
|
50
50
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled,
|
|
51
|
-
[class
|
|
51
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled {
|
|
52
52
|
border: 1px solid #d9d9d9;
|
|
53
53
|
}
|
|
54
54
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options,
|
|
55
|
-
[class
|
|
55
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options {
|
|
56
56
|
margin-left: 4px;
|
|
57
57
|
}
|
|
58
58
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector,
|
|
59
|
-
[class
|
|
59
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector {
|
|
60
60
|
min-width: 90px;
|
|
61
61
|
height: 30px;
|
|
62
62
|
}
|
|
63
63
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item,
|
|
64
|
-
[class
|
|
64
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item {
|
|
65
65
|
line-height: 28px;
|
|
66
66
|
}
|
|
67
67
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow,
|
|
68
|
-
[class
|
|
68
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow {
|
|
69
69
|
color: #333333;
|
|
70
70
|
}
|
|
71
71
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper,
|
|
72
|
-
[class
|
|
72
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper {
|
|
73
73
|
margin-left: 20px;
|
|
74
74
|
color: #333333;
|
|
75
75
|
font-size: 14px;
|
|
76
76
|
}
|
|
77
77
|
[class$='-basic-table'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input,
|
|
78
|
-
[class
|
|
78
|
+
[class*='-basic-table-form-container'] .ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input {
|
|
79
79
|
min-width: 60px;
|
|
80
80
|
height: 30px;
|
|
81
81
|
margin: 0 8px;
|
|
@@ -102,3 +102,110 @@
|
|
|
102
102
|
[class$='-basic-table-row__striped'] td {
|
|
103
103
|
background-color: #fafafa;
|
|
104
104
|
}
|
|
105
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
106
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
107
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
108
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
109
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
110
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
111
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
112
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
113
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
114
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper,
|
|
115
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper,
|
|
116
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper,
|
|
117
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
118
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
119
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
120
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
121
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
122
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container {
|
|
123
|
+
overflow: visible;
|
|
124
|
+
}
|
|
125
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
126
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
127
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
128
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
129
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
130
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
131
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
132
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
133
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
134
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
135
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
136
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
137
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
138
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
139
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
140
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
141
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
142
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table {
|
|
143
|
+
overflow: visible;
|
|
144
|
+
}
|
|
145
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
146
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
147
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
148
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
149
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
150
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
151
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
152
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
153
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
154
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
155
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
156
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
157
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
158
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
159
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
160
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
161
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
162
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
163
|
+
overflow: visible;
|
|
164
|
+
}
|
|
165
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
166
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
167
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
168
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
169
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
170
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
171
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
172
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
173
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
174
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
175
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
176
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
177
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
178
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
179
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
180
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
181
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
182
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
183
|
+
position: sticky;
|
|
184
|
+
top: 0;
|
|
185
|
+
z-index: 99;
|
|
186
|
+
}
|
|
187
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
188
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
189
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
190
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
191
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
192
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
193
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
194
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
195
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
196
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
197
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
198
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
199
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
200
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
201
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
202
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
203
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
204
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination {
|
|
205
|
+
position: sticky;
|
|
206
|
+
bottom: 0;
|
|
207
|
+
z-index: 99;
|
|
208
|
+
margin: 0;
|
|
209
|
+
padding: 16px 0;
|
|
210
|
+
background-color: #ffffff;
|
|
211
|
+
}
|