easy3wui 1.5.89-beta2 → 1.5.89-beta4
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/assets/gridPage.css +51 -21
- package/assets/index.css +51 -21
- package/package.json +1 -1
package/assets/gridPage.css
CHANGED
|
@@ -21,21 +21,31 @@
|
|
|
21
21
|
.scrollY .ant-table-thead > tr > th {
|
|
22
22
|
text-align: center;
|
|
23
23
|
}
|
|
24
|
-
.scrollY .ant-table-
|
|
24
|
+
.scrollY .ant-table-tbody > tr:nth-child(even) > td {
|
|
25
25
|
background: var(--table-header-bg);
|
|
26
26
|
}
|
|
27
|
-
.scrollY .ant-table-
|
|
27
|
+
.scrollY .ant-table-tbody > tr:nth-child(odd) > td {
|
|
28
28
|
background: #fff;
|
|
29
29
|
}
|
|
30
|
-
.scrollY .ant-table-
|
|
30
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
31
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
32
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
33
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
34
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
35
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
36
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
|
|
37
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
|
|
38
|
+
background: var(--table-header-bg);
|
|
39
|
+
}
|
|
40
|
+
.scrollY .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
31
41
|
background: var(--table-row-hover-bg);
|
|
32
42
|
}
|
|
33
|
-
.scrollY .ant-table-
|
|
34
|
-
.scrollY .ant-table-
|
|
43
|
+
.scrollY .ant-table-bordered .ant-table-thead > tr > th,
|
|
44
|
+
.scrollY .ant-table-bordered .ant-table-tbody > tr > td {
|
|
35
45
|
border-right: 0;
|
|
36
46
|
}
|
|
37
|
-
.scrollY .ant-table-
|
|
38
|
-
.scrollY .ant-table-
|
|
47
|
+
.scrollY .ant-table-thead > tr > th,
|
|
48
|
+
.scrollY .ant-table-tbody > tr > td {
|
|
39
49
|
border-bottom: 0;
|
|
40
50
|
}
|
|
41
51
|
.scrollX .ant-table-thead > tr > th {
|
|
@@ -70,21 +80,31 @@
|
|
|
70
80
|
white-space: nowrap;
|
|
71
81
|
overflow: hidden;
|
|
72
82
|
}
|
|
73
|
-
.scrollX .ant-table-
|
|
83
|
+
.scrollX .ant-table-tbody > tr:nth-child(even) > td {
|
|
74
84
|
background: var(--table-header-bg);
|
|
75
85
|
}
|
|
76
|
-
.scrollX .ant-table-
|
|
86
|
+
.scrollX .ant-table-tbody > tr:nth-child(odd) > td {
|
|
77
87
|
background: #fff;
|
|
78
88
|
}
|
|
79
|
-
.scrollX .ant-table-
|
|
89
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
90
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
91
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
92
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
93
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
94
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
95
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
|
|
96
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
|
|
97
|
+
background: var(--table-header-bg);
|
|
98
|
+
}
|
|
99
|
+
.scrollX .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
80
100
|
background: var(--table-row-hover-bg);
|
|
81
101
|
}
|
|
82
|
-
.scrollX .ant-table-
|
|
83
|
-
.scrollX .ant-table-
|
|
102
|
+
.scrollX .ant-table-bordered .ant-table-thead > tr > th,
|
|
103
|
+
.scrollX .ant-table-bordered .ant-table-tbody > tr > td {
|
|
84
104
|
border-right: 0;
|
|
85
105
|
}
|
|
86
|
-
.scrollX .ant-table-
|
|
87
|
-
.scrollX .ant-table-
|
|
106
|
+
.scrollX .ant-table-thead > tr > th,
|
|
107
|
+
.scrollX .ant-table-tbody > tr > td {
|
|
88
108
|
border-bottom: 0;
|
|
89
109
|
}
|
|
90
110
|
.scrollPrint .ant-table-thead > tr > th {
|
|
@@ -109,21 +129,31 @@
|
|
|
109
129
|
max-width: 240px;
|
|
110
130
|
text-align: left;
|
|
111
131
|
}
|
|
112
|
-
.scrollPrint .ant-table-
|
|
132
|
+
.scrollPrint .ant-table-tbody > tr:nth-child(even) > td {
|
|
113
133
|
background: var(--table-header-bg);
|
|
114
134
|
}
|
|
115
|
-
.scrollPrint .ant-table-
|
|
135
|
+
.scrollPrint .ant-table-tbody > tr:nth-child(odd) > td {
|
|
116
136
|
background: #fff;
|
|
117
137
|
}
|
|
118
|
-
.scrollPrint .ant-table-
|
|
138
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
139
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
140
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
141
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
142
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
143
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
144
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
|
|
145
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
|
|
146
|
+
background: var(--table-header-bg);
|
|
147
|
+
}
|
|
148
|
+
.scrollPrint .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
119
149
|
background: var(--table-row-hover-bg);
|
|
120
150
|
}
|
|
121
|
-
.scrollPrint .ant-table-
|
|
122
|
-
.scrollPrint .ant-table-
|
|
151
|
+
.scrollPrint .ant-table-bordered .ant-table-thead > tr > th,
|
|
152
|
+
.scrollPrint .ant-table-bordered .ant-table-tbody > tr > td {
|
|
123
153
|
border-right: 0;
|
|
124
154
|
}
|
|
125
|
-
.scrollPrint .ant-table-
|
|
126
|
-
.scrollPrint .ant-table-
|
|
155
|
+
.scrollPrint .ant-table-thead > tr > th,
|
|
156
|
+
.scrollPrint .ant-table-tbody > tr > td {
|
|
127
157
|
border-bottom: 0;
|
|
128
158
|
}
|
|
129
159
|
.butt {
|
package/assets/index.css
CHANGED
|
@@ -2321,21 +2321,31 @@
|
|
|
2321
2321
|
.scrollY .ant-table-thead > tr > th {
|
|
2322
2322
|
text-align: center;
|
|
2323
2323
|
}
|
|
2324
|
-
.scrollY .ant-table-
|
|
2324
|
+
.scrollY .ant-table-tbody > tr:nth-child(even) > td {
|
|
2325
2325
|
background: var(--table-header-bg);
|
|
2326
2326
|
}
|
|
2327
|
-
.scrollY .ant-table-
|
|
2327
|
+
.scrollY .ant-table-tbody > tr:nth-child(odd) > td {
|
|
2328
2328
|
background: #fff;
|
|
2329
2329
|
}
|
|
2330
|
-
.scrollY .ant-table-
|
|
2330
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2331
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
2332
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2333
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
2334
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2335
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2336
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
|
|
2337
|
+
.scrollY .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
|
|
2338
|
+
background: var(--table-header-bg);
|
|
2339
|
+
}
|
|
2340
|
+
.scrollY .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
2331
2341
|
background: var(--table-row-hover-bg);
|
|
2332
2342
|
}
|
|
2333
|
-
.scrollY .ant-table-
|
|
2334
|
-
.scrollY .ant-table-
|
|
2343
|
+
.scrollY .ant-table-bordered .ant-table-thead > tr > th,
|
|
2344
|
+
.scrollY .ant-table-bordered .ant-table-tbody > tr > td {
|
|
2335
2345
|
border-right: 0;
|
|
2336
2346
|
}
|
|
2337
|
-
.scrollY .ant-table-
|
|
2338
|
-
.scrollY .ant-table-
|
|
2347
|
+
.scrollY .ant-table-thead > tr > th,
|
|
2348
|
+
.scrollY .ant-table-tbody > tr > td {
|
|
2339
2349
|
border-bottom: 0;
|
|
2340
2350
|
}
|
|
2341
2351
|
.scrollX .ant-table-thead > tr > th {
|
|
@@ -2370,21 +2380,31 @@
|
|
|
2370
2380
|
white-space: nowrap;
|
|
2371
2381
|
overflow: hidden;
|
|
2372
2382
|
}
|
|
2373
|
-
.scrollX .ant-table-
|
|
2383
|
+
.scrollX .ant-table-tbody > tr:nth-child(even) > td {
|
|
2374
2384
|
background: var(--table-header-bg);
|
|
2375
2385
|
}
|
|
2376
|
-
.scrollX .ant-table-
|
|
2386
|
+
.scrollX .ant-table-tbody > tr:nth-child(odd) > td {
|
|
2377
2387
|
background: #fff;
|
|
2378
2388
|
}
|
|
2379
|
-
.scrollX .ant-table-
|
|
2389
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2390
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
2391
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2392
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
2393
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2394
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2395
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
|
|
2396
|
+
.scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
|
|
2397
|
+
background: var(--table-header-bg);
|
|
2398
|
+
}
|
|
2399
|
+
.scrollX .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
2380
2400
|
background: var(--table-row-hover-bg);
|
|
2381
2401
|
}
|
|
2382
|
-
.scrollX .ant-table-
|
|
2383
|
-
.scrollX .ant-table-
|
|
2402
|
+
.scrollX .ant-table-bordered .ant-table-thead > tr > th,
|
|
2403
|
+
.scrollX .ant-table-bordered .ant-table-tbody > tr > td {
|
|
2384
2404
|
border-right: 0;
|
|
2385
2405
|
}
|
|
2386
|
-
.scrollX .ant-table-
|
|
2387
|
-
.scrollX .ant-table-
|
|
2406
|
+
.scrollX .ant-table-thead > tr > th,
|
|
2407
|
+
.scrollX .ant-table-tbody > tr > td {
|
|
2388
2408
|
border-bottom: 0;
|
|
2389
2409
|
}
|
|
2390
2410
|
.scrollPrint .ant-table-thead > tr > th {
|
|
@@ -2409,21 +2429,31 @@
|
|
|
2409
2429
|
max-width: 240px;
|
|
2410
2430
|
text-align: left;
|
|
2411
2431
|
}
|
|
2412
|
-
.scrollPrint .ant-table-
|
|
2432
|
+
.scrollPrint .ant-table-tbody > tr:nth-child(even) > td {
|
|
2413
2433
|
background: var(--table-header-bg);
|
|
2414
2434
|
}
|
|
2415
|
-
.scrollPrint .ant-table-
|
|
2435
|
+
.scrollPrint .ant-table-tbody > tr:nth-child(odd) > td {
|
|
2416
2436
|
background: #fff;
|
|
2417
2437
|
}
|
|
2418
|
-
.scrollPrint .ant-table-
|
|
2438
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2439
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
2440
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2441
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
2442
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2443
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
2444
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
|
|
2445
|
+
.scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
|
|
2446
|
+
background: var(--table-header-bg);
|
|
2447
|
+
}
|
|
2448
|
+
.scrollPrint .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
2419
2449
|
background: var(--table-row-hover-bg);
|
|
2420
2450
|
}
|
|
2421
|
-
.scrollPrint .ant-table-
|
|
2422
|
-
.scrollPrint .ant-table-
|
|
2451
|
+
.scrollPrint .ant-table-bordered .ant-table-thead > tr > th,
|
|
2452
|
+
.scrollPrint .ant-table-bordered .ant-table-tbody > tr > td {
|
|
2423
2453
|
border-right: 0;
|
|
2424
2454
|
}
|
|
2425
|
-
.scrollPrint .ant-table-
|
|
2426
|
-
.scrollPrint .ant-table-
|
|
2455
|
+
.scrollPrint .ant-table-thead > tr > th,
|
|
2456
|
+
.scrollPrint .ant-table-tbody > tr > td {
|
|
2427
2457
|
border-bottom: 0;
|
|
2428
2458
|
}
|
|
2429
2459
|
.butt {
|