@tntd/reference 1.2.1 → 1.2.3
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/AHref/index.js +19 -5
- package/es/ReferenceBatchCheck/ReferenceBatchCheck.js +13 -19
- package/es/ReferenceBatchCheck/index.js +3 -3
- package/es/ReferenceBatchDrawer/index.js +15 -20
- package/es/ReferenceCheck/ReferenceCheck.js +7 -9
- package/es/ReferenceCheck/index.js +3 -3
- package/es/ReferenceDrawer/index.js +10 -11
- package/es/ReferenceDrawer/index.less +9 -0
- package/es/ReferenceInfo/index.js +11 -17
- package/lib/AHref/index.js +19 -5
- package/lib/AHref/index.js.map +1 -1
- package/lib/ReferenceBatchCheck/ReferenceBatchCheck.js +17 -23
- package/lib/ReferenceBatchCheck/index.js +7 -7
- package/lib/ReferenceBatchDrawer/index.js +19 -24
- package/lib/ReferenceBatchDrawer/index.js.map +1 -1
- package/lib/ReferenceCheck/ReferenceCheck.js +11 -13
- package/lib/ReferenceCheck/index.js +7 -7
- package/lib/ReferenceDrawer/index.js +14 -15
- package/lib/ReferenceDrawer/index.js.map +1 -1
- package/lib/ReferenceDrawer/index.less +9 -0
- package/lib/ReferenceInfo/index.js +11 -17
- package/package.json +2 -2
- package/src/AHref/index.js +11 -0
- package/src/ReferenceBatchDrawer/index.js +3 -1
- package/src/ReferenceDrawer/index.js +31 -31
- package/src/ReferenceDrawer/index.less +9 -0
- package/umd/tntd-reference.min.css +959 -260
|
@@ -47,7 +47,9 @@ body {
|
|
|
47
47
|
margin: 0;
|
|
48
48
|
color: #17233d;
|
|
49
49
|
font-size: 14px;
|
|
50
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
|
|
50
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
|
|
51
|
+
'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
|
|
52
|
+
'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
51
53
|
font-variant: tabular-nums;
|
|
52
54
|
line-height: 1.57142857;
|
|
53
55
|
background-color: #fff;
|
|
@@ -230,9 +232,9 @@ select {
|
|
|
230
232
|
text-transform: none;
|
|
231
233
|
}
|
|
232
234
|
button,
|
|
233
|
-
html [type=
|
|
234
|
-
[type=
|
|
235
|
-
[type=
|
|
235
|
+
html [type='button'],
|
|
236
|
+
[type='reset'],
|
|
237
|
+
[type='submit'] {
|
|
236
238
|
-webkit-appearance: button;
|
|
237
239
|
}
|
|
238
240
|
button::-moz-focus-inner,
|
|
@@ -636,7 +638,8 @@ mark {
|
|
|
636
638
|
border-radius: inherit;
|
|
637
639
|
box-shadow: 0 0 0 0 #126bfb;
|
|
638
640
|
opacity: 0.2;
|
|
639
|
-
animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1),
|
|
641
|
+
animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1),
|
|
642
|
+
waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
|
|
640
643
|
animation-fill-mode: forwards;
|
|
641
644
|
content: '';
|
|
642
645
|
pointer-events: none;
|
|
@@ -1232,11 +1235,13 @@ mark {
|
|
|
1232
1235
|
overflow: hidden;
|
|
1233
1236
|
}
|
|
1234
1237
|
.ant-motion-collapse-legacy-active {
|
|
1235
|
-
transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
1238
|
+
transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
1239
|
+
opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
|
|
1236
1240
|
}
|
|
1237
1241
|
.ant-motion-collapse {
|
|
1238
1242
|
overflow: hidden;
|
|
1239
|
-
transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
1243
|
+
transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
1244
|
+
opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
|
|
1240
1245
|
}
|
|
1241
1246
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
1242
1247
|
/* stylelint-disable no-duplicate-selectors */
|
|
@@ -1257,7 +1262,8 @@ mark {
|
|
|
1257
1262
|
transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), height 0s ease 0.3s, width 0s ease 0.3s;
|
|
1258
1263
|
}
|
|
1259
1264
|
.ant-drawer > * {
|
|
1260
|
-
transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1),
|
|
1265
|
+
transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1),
|
|
1266
|
+
box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
|
|
1261
1267
|
}
|
|
1262
1268
|
.ant-drawer-content-wrapper {
|
|
1263
1269
|
position: absolute;
|
|
@@ -1502,15 +1508,15 @@ mark {
|
|
|
1502
1508
|
}
|
|
1503
1509
|
.tnt-drawer.ant-drawer-right .ant-drawer-content {
|
|
1504
1510
|
border-radius: 8px 0px 0px 8px;
|
|
1505
|
-
background: #
|
|
1511
|
+
background: #f8f9fb;
|
|
1506
1512
|
}
|
|
1507
1513
|
.tnt-drawer.ant-drawer-left .ant-drawer-content {
|
|
1508
1514
|
border-radius: 0px 8px 8px 0px;
|
|
1509
|
-
background: #
|
|
1515
|
+
background: #f8f9fb;
|
|
1510
1516
|
}
|
|
1511
1517
|
.tnt-drawer.ant-drawer-top .ant-drawer-content {
|
|
1512
1518
|
border-radius: 0px 0px 8px 8px;
|
|
1513
|
-
background: #
|
|
1519
|
+
background: #f8f9fb;
|
|
1514
1520
|
padding-top: 48px;
|
|
1515
1521
|
}
|
|
1516
1522
|
.tnt-drawer.ant-drawer-top .ant-drawer-wrapper-body {
|
|
@@ -1518,7 +1524,7 @@ mark {
|
|
|
1518
1524
|
}
|
|
1519
1525
|
.tnt-drawer.ant-drawer-bottom .ant-drawer-content {
|
|
1520
1526
|
border-radius: 8px 8px 0px 0px;
|
|
1521
|
-
background: #
|
|
1527
|
+
background: #f8f9fb;
|
|
1522
1528
|
padding-top: 48px;
|
|
1523
1529
|
}
|
|
1524
1530
|
.tnt-drawer.ant-drawer-bottom .ant-drawer-wrapper-body {
|
|
@@ -1531,7 +1537,7 @@ mark {
|
|
|
1531
1537
|
top: 0;
|
|
1532
1538
|
width: 100%;
|
|
1533
1539
|
background: #fff;
|
|
1534
|
-
border-bottom: 1px solid #
|
|
1540
|
+
border-bottom: 1px solid #e9edf3;
|
|
1535
1541
|
z-index: 100;
|
|
1536
1542
|
}
|
|
1537
1543
|
.tnt-drawer.ant-drawer .ant-drawer-body {
|
|
@@ -1545,20 +1551,26 @@ mark {
|
|
|
1545
1551
|
padding: 8px 24px;
|
|
1546
1552
|
background: #fff;
|
|
1547
1553
|
text-align: right;
|
|
1548
|
-
border-top: 1px solid #
|
|
1554
|
+
border-top: 1px solid #e9edf3;
|
|
1549
1555
|
z-index: 100;
|
|
1550
1556
|
}
|
|
1551
1557
|
.tnt-drawer.ant-drawer .ant-drawer-wrapper-body .ant-drawer-footer-style .ant-btn {
|
|
1552
1558
|
margin-left: 16px;
|
|
1553
1559
|
}
|
|
1554
|
-
.tnt-drawer.ant-drawer
|
|
1560
|
+
.tnt-drawer.ant-drawer
|
|
1561
|
+
.ant-drawer-wrapper-body
|
|
1562
|
+
.ant-drawer-footer-style
|
|
1563
|
+
button:not([class*='ant-btn-']):not([class*='tnt-btn-']) {
|
|
1555
1564
|
color: #17233d;
|
|
1556
1565
|
background-color: #f8f9fb;
|
|
1557
1566
|
border-color: #f8f9fb;
|
|
1558
1567
|
text-shadow: none;
|
|
1559
1568
|
box-shadow: none;
|
|
1560
1569
|
}
|
|
1561
|
-
.tnt-drawer.ant-drawer
|
|
1570
|
+
.tnt-drawer.ant-drawer
|
|
1571
|
+
.ant-drawer-wrapper-body
|
|
1572
|
+
.ant-drawer-footer-style
|
|
1573
|
+
button:not([class*='ant-btn-']):not([class*='tnt-btn-']):hover {
|
|
1562
1574
|
color: var(--blue-6);
|
|
1563
1575
|
background-color: #f0f5ff;
|
|
1564
1576
|
border-color: #f0f5ff;
|
|
@@ -2546,13 +2558,15 @@ mark {
|
|
|
2546
2558
|
.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) {
|
|
2547
2559
|
padding-left: 29px;
|
|
2548
2560
|
}
|
|
2549
|
-
.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only)
|
|
2561
|
+
.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only)
|
|
2562
|
+
.anticon:not(:last-child) {
|
|
2550
2563
|
margin-left: -14px;
|
|
2551
2564
|
}
|
|
2552
2565
|
.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) {
|
|
2553
2566
|
padding-left: 24px;
|
|
2554
2567
|
}
|
|
2555
|
-
.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only)
|
|
2568
|
+
.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only)
|
|
2569
|
+
.anticon {
|
|
2556
2570
|
margin-left: -17px;
|
|
2557
2571
|
}
|
|
2558
2572
|
.ant-btn-group {
|
|
@@ -3249,14 +3263,16 @@ a.ant-btn-sm {
|
|
|
3249
3263
|
.tnt-btn-ai:hover,
|
|
3250
3264
|
.tnt-btn-ai:focus {
|
|
3251
3265
|
color: #fff;
|
|
3252
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
|
|
3266
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
|
|
3267
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3253
3268
|
animation: ai-hover-in 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
3254
3269
|
animation-fill-mode: both;
|
|
3255
3270
|
}
|
|
3256
3271
|
.tnt-btn-ai:active,
|
|
3257
3272
|
.tnt-btn-ai.active {
|
|
3258
3273
|
color: #fff;
|
|
3259
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
|
|
3274
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
|
|
3275
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3260
3276
|
animation: ai-active-in 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
3261
3277
|
animation-fill-mode: both;
|
|
3262
3278
|
}
|
|
@@ -3323,7 +3339,8 @@ a.ant-btn-sm {
|
|
|
3323
3339
|
}
|
|
3324
3340
|
.tnt-btn-ai[disabled],
|
|
3325
3341
|
.tnt-btn-ai.ant-btn-disabled {
|
|
3326
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%),
|
|
3342
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%),
|
|
3343
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%) !important;
|
|
3327
3344
|
animation: none !important;
|
|
3328
3345
|
cursor: not-allowed;
|
|
3329
3346
|
}
|
|
@@ -3333,7 +3350,8 @@ a.ant-btn-sm {
|
|
|
3333
3350
|
.tnt-btn-ai.ant-btn-disabled:focus,
|
|
3334
3351
|
.tnt-btn-ai[disabled]:active,
|
|
3335
3352
|
.tnt-btn-ai.ant-btn-disabled:active {
|
|
3336
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%),
|
|
3353
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%),
|
|
3354
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%) !important;
|
|
3337
3355
|
animation: none !important;
|
|
3338
3356
|
}
|
|
3339
3357
|
@keyframes ai-hover-in {
|
|
@@ -3341,66 +3359,86 @@ a.ant-btn-sm {
|
|
|
3341
3359
|
background: linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3342
3360
|
}
|
|
3343
3361
|
10% {
|
|
3344
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%),
|
|
3362
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%),
|
|
3363
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3345
3364
|
}
|
|
3346
3365
|
20% {
|
|
3347
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%),
|
|
3366
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%),
|
|
3367
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3348
3368
|
}
|
|
3349
3369
|
30% {
|
|
3350
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%),
|
|
3370
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%),
|
|
3371
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3351
3372
|
}
|
|
3352
3373
|
40% {
|
|
3353
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%),
|
|
3374
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%),
|
|
3375
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3354
3376
|
}
|
|
3355
3377
|
50% {
|
|
3356
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%),
|
|
3378
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%),
|
|
3379
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3357
3380
|
}
|
|
3358
3381
|
60% {
|
|
3359
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%),
|
|
3382
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%),
|
|
3383
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3360
3384
|
}
|
|
3361
3385
|
70% {
|
|
3362
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.14) 100%),
|
|
3386
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.14) 100%),
|
|
3387
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3363
3388
|
}
|
|
3364
3389
|
80% {
|
|
3365
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.16) 100%),
|
|
3390
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.16) 100%),
|
|
3391
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3366
3392
|
}
|
|
3367
3393
|
90% {
|
|
3368
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.18) 100%),
|
|
3394
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.18) 100%),
|
|
3395
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3369
3396
|
}
|
|
3370
3397
|
100% {
|
|
3371
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
|
|
3398
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
|
|
3399
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3372
3400
|
}
|
|
3373
3401
|
}
|
|
3374
3402
|
@keyframes ai-hover-out {
|
|
3375
3403
|
0% {
|
|
3376
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
|
|
3404
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
|
|
3405
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3377
3406
|
}
|
|
3378
3407
|
10% {
|
|
3379
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.18) 100%),
|
|
3408
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.18) 100%),
|
|
3409
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3380
3410
|
}
|
|
3381
3411
|
20% {
|
|
3382
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.16) 100%),
|
|
3412
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.16) 100%),
|
|
3413
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3383
3414
|
}
|
|
3384
3415
|
30% {
|
|
3385
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.14) 100%),
|
|
3416
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.14) 100%),
|
|
3417
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3386
3418
|
}
|
|
3387
3419
|
40% {
|
|
3388
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%),
|
|
3420
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%),
|
|
3421
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3389
3422
|
}
|
|
3390
3423
|
50% {
|
|
3391
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%),
|
|
3424
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%),
|
|
3425
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3392
3426
|
}
|
|
3393
3427
|
60% {
|
|
3394
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%),
|
|
3428
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%),
|
|
3429
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3395
3430
|
}
|
|
3396
3431
|
70% {
|
|
3397
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%),
|
|
3432
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%),
|
|
3433
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3398
3434
|
}
|
|
3399
3435
|
80% {
|
|
3400
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%),
|
|
3436
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%),
|
|
3437
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3401
3438
|
}
|
|
3402
3439
|
90% {
|
|
3403
|
-
background: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%),
|
|
3440
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%),
|
|
3441
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3404
3442
|
}
|
|
3405
3443
|
100% {
|
|
3406
3444
|
background: linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
@@ -3411,34 +3449,44 @@ a.ant-btn-sm {
|
|
|
3411
3449
|
background: linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3412
3450
|
}
|
|
3413
3451
|
10% {
|
|
3414
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.02) 100%),
|
|
3452
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.02) 100%),
|
|
3453
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3415
3454
|
}
|
|
3416
3455
|
20% {
|
|
3417
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 100%),
|
|
3456
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 100%),
|
|
3457
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3418
3458
|
}
|
|
3419
3459
|
30% {
|
|
3420
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%),
|
|
3460
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%),
|
|
3461
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3421
3462
|
}
|
|
3422
3463
|
40% {
|
|
3423
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%),
|
|
3464
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%),
|
|
3465
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3424
3466
|
}
|
|
3425
3467
|
50% {
|
|
3426
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%),
|
|
3468
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%),
|
|
3469
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3427
3470
|
}
|
|
3428
3471
|
60% {
|
|
3429
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 100%),
|
|
3472
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 100%),
|
|
3473
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3430
3474
|
}
|
|
3431
3475
|
70% {
|
|
3432
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.14) 100%),
|
|
3476
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.14) 100%),
|
|
3477
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3433
3478
|
}
|
|
3434
3479
|
80% {
|
|
3435
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.16) 100%),
|
|
3480
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.16) 100%),
|
|
3481
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3436
3482
|
}
|
|
3437
3483
|
90% {
|
|
3438
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.18) 100%),
|
|
3484
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.18) 100%),
|
|
3485
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3439
3486
|
}
|
|
3440
3487
|
100% {
|
|
3441
|
-
background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
|
|
3488
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
|
|
3489
|
+
linear-gradient(128deg, #bf5fff 6.08%, #2e69ff 96.35%);
|
|
3442
3490
|
}
|
|
3443
3491
|
}
|
|
3444
3492
|
.tnt-btn.ant-btn-primary-disabled,
|
|
@@ -4531,8 +4579,18 @@ a.ant-btn-sm {
|
|
|
4531
4579
|
text-align: center;
|
|
4532
4580
|
transition: all 0.3s;
|
|
4533
4581
|
}
|
|
4534
|
-
.ant-table-thead
|
|
4535
|
-
|
|
4582
|
+
.ant-table-thead
|
|
4583
|
+
> tr
|
|
4584
|
+
> th
|
|
4585
|
+
.ant-table-column-sorter
|
|
4586
|
+
.ant-table-column-sorter-inner
|
|
4587
|
+
.ant-table-column-sorter-up,
|
|
4588
|
+
.ant-table-thead
|
|
4589
|
+
> tr
|
|
4590
|
+
> th
|
|
4591
|
+
.ant-table-column-sorter
|
|
4592
|
+
.ant-table-column-sorter-inner
|
|
4593
|
+
.ant-table-column-sorter-down {
|
|
4536
4594
|
display: inline-block;
|
|
4537
4595
|
font-size: 16px;
|
|
4538
4596
|
font-size: 11px \9;
|
|
@@ -4543,23 +4601,60 @@ a.ant-btn-sm {
|
|
|
4543
4601
|
line-height: 1em;
|
|
4544
4602
|
transition: all 0.3s;
|
|
4545
4603
|
}
|
|
4546
|
-
:root
|
|
4547
|
-
|
|
4604
|
+
:root
|
|
4605
|
+
.ant-table-thead
|
|
4606
|
+
> tr
|
|
4607
|
+
> th
|
|
4608
|
+
.ant-table-column-sorter
|
|
4609
|
+
.ant-table-column-sorter-inner
|
|
4610
|
+
.ant-table-column-sorter-up,
|
|
4611
|
+
:root
|
|
4612
|
+
.ant-table-thead
|
|
4613
|
+
> tr
|
|
4614
|
+
> th
|
|
4615
|
+
.ant-table-column-sorter
|
|
4616
|
+
.ant-table-column-sorter-inner
|
|
4617
|
+
.ant-table-column-sorter-down {
|
|
4548
4618
|
font-size: 16px;
|
|
4549
4619
|
}
|
|
4550
|
-
.ant-table-thead
|
|
4551
|
-
|
|
4620
|
+
.ant-table-thead
|
|
4621
|
+
> tr
|
|
4622
|
+
> th
|
|
4623
|
+
.ant-table-column-sorter
|
|
4624
|
+
.ant-table-column-sorter-inner
|
|
4625
|
+
.ant-table-column-sorter-up.on,
|
|
4626
|
+
.ant-table-thead
|
|
4627
|
+
> tr
|
|
4628
|
+
> th
|
|
4629
|
+
.ant-table-column-sorter
|
|
4630
|
+
.ant-table-column-sorter-inner
|
|
4631
|
+
.ant-table-column-sorter-down.on {
|
|
4552
4632
|
color: #126bfb;
|
|
4553
4633
|
}
|
|
4554
4634
|
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full {
|
|
4555
4635
|
margin-top: -0.15em;
|
|
4556
4636
|
}
|
|
4557
|
-
.ant-table-thead
|
|
4558
|
-
|
|
4637
|
+
.ant-table-thead
|
|
4638
|
+
> tr
|
|
4639
|
+
> th
|
|
4640
|
+
.ant-table-column-sorter
|
|
4641
|
+
.ant-table-column-sorter-inner-full
|
|
4642
|
+
.ant-table-column-sorter-up,
|
|
4643
|
+
.ant-table-thead
|
|
4644
|
+
> tr
|
|
4645
|
+
> th
|
|
4646
|
+
.ant-table-column-sorter
|
|
4647
|
+
.ant-table-column-sorter-inner-full
|
|
4648
|
+
.ant-table-column-sorter-down {
|
|
4559
4649
|
height: 0.5em;
|
|
4560
4650
|
line-height: 0.5em;
|
|
4561
4651
|
}
|
|
4562
|
-
.ant-table-thead
|
|
4652
|
+
.ant-table-thead
|
|
4653
|
+
> tr
|
|
4654
|
+
> th
|
|
4655
|
+
.ant-table-column-sorter
|
|
4656
|
+
.ant-table-column-sorter-inner-full
|
|
4657
|
+
.ant-table-column-sorter-down {
|
|
4563
4658
|
margin-top: 0.125em;
|
|
4564
4659
|
}
|
|
4565
4660
|
.ant-table-thead > tr > th.ant-table-column-has-actions {
|
|
@@ -4571,18 +4666,36 @@ a.ant-btn-sm {
|
|
|
4571
4666
|
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters {
|
|
4572
4667
|
padding-right: 30px !important;
|
|
4573
4668
|
}
|
|
4574
|
-
.ant-table-thead
|
|
4575
|
-
|
|
4669
|
+
.ant-table-thead
|
|
4670
|
+
> tr
|
|
4671
|
+
> th.ant-table-column-has-actions.ant-table-column-has-filters
|
|
4672
|
+
.anticon-filter.ant-table-filter-open,
|
|
4673
|
+
.ant-table-thead
|
|
4674
|
+
> tr
|
|
4675
|
+
> th.ant-table-column-has-actions.ant-table-column-has-filters
|
|
4676
|
+
.ant-table-filter-icon.ant-table-filter-open {
|
|
4576
4677
|
color: #454f64;
|
|
4577
4678
|
background: #dee3ec;
|
|
4578
4679
|
}
|
|
4579
|
-
.ant-table-thead
|
|
4580
|
-
|
|
4680
|
+
.ant-table-thead
|
|
4681
|
+
> tr
|
|
4682
|
+
> th.ant-table-column-has-actions.ant-table-column-has-filters:hover
|
|
4683
|
+
.anticon-filter:hover,
|
|
4684
|
+
.ant-table-thead
|
|
4685
|
+
> tr
|
|
4686
|
+
> th.ant-table-column-has-actions.ant-table-column-has-filters:hover
|
|
4687
|
+
.ant-table-filter-icon:hover {
|
|
4581
4688
|
color: #454f64;
|
|
4582
4689
|
background: #dee3ec;
|
|
4583
4690
|
}
|
|
4584
|
-
.ant-table-thead
|
|
4585
|
-
|
|
4691
|
+
.ant-table-thead
|
|
4692
|
+
> tr
|
|
4693
|
+
> th.ant-table-column-has-actions.ant-table-column-has-filters:hover
|
|
4694
|
+
.anticon-filter:active,
|
|
4695
|
+
.ant-table-thead
|
|
4696
|
+
> tr
|
|
4697
|
+
> th.ant-table-column-has-actions.ant-table-column-has-filters:hover
|
|
4698
|
+
.ant-table-filter-icon:active {
|
|
4586
4699
|
color: #17233d;
|
|
4587
4700
|
}
|
|
4588
4701
|
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters {
|
|
@@ -4591,12 +4704,24 @@ a.ant-btn-sm {
|
|
|
4591
4704
|
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover {
|
|
4592
4705
|
background: #eef1f5;
|
|
4593
4706
|
}
|
|
4594
|
-
.ant-table-thead
|
|
4595
|
-
|
|
4707
|
+
.ant-table-thead
|
|
4708
|
+
> tr
|
|
4709
|
+
> th.ant-table-column-has-actions.ant-table-column-has-sorters:hover
|
|
4710
|
+
.anticon-filter,
|
|
4711
|
+
.ant-table-thead
|
|
4712
|
+
> tr
|
|
4713
|
+
> th.ant-table-column-has-actions.ant-table-column-has-sorters:hover
|
|
4714
|
+
.ant-table-filter-icon {
|
|
4596
4715
|
background: #eef1f5;
|
|
4597
4716
|
}
|
|
4598
|
-
.ant-table-thead
|
|
4599
|
-
|
|
4717
|
+
.ant-table-thead
|
|
4718
|
+
> tr
|
|
4719
|
+
> th.ant-table-column-has-actions.ant-table-column-has-sorters:active
|
|
4720
|
+
.ant-table-column-sorter-up:not(.on),
|
|
4721
|
+
.ant-table-thead
|
|
4722
|
+
> tr
|
|
4723
|
+
> th.ant-table-column-has-actions.ant-table-column-has-sorters:active
|
|
4724
|
+
.ant-table-column-sorter-down:not(.on) {
|
|
4600
4725
|
color: #454f64;
|
|
4601
4726
|
}
|
|
4602
4727
|
.ant-table-thead > tr > th .ant-table-header-column {
|
|
@@ -4607,11 +4732,21 @@ a.ant-btn-sm {
|
|
|
4607
4732
|
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters {
|
|
4608
4733
|
display: table;
|
|
4609
4734
|
}
|
|
4610
|
-
.ant-table-thead
|
|
4735
|
+
.ant-table-thead
|
|
4736
|
+
> tr
|
|
4737
|
+
> th
|
|
4738
|
+
.ant-table-header-column
|
|
4739
|
+
.ant-table-column-sorters
|
|
4740
|
+
> .ant-table-column-title {
|
|
4611
4741
|
display: table-cell;
|
|
4612
4742
|
vertical-align: middle;
|
|
4613
4743
|
}
|
|
4614
|
-
.ant-table-thead
|
|
4744
|
+
.ant-table-thead
|
|
4745
|
+
> tr
|
|
4746
|
+
> th
|
|
4747
|
+
.ant-table-header-column
|
|
4748
|
+
.ant-table-column-sorters
|
|
4749
|
+
> *:not(.ant-table-column-sorter) {
|
|
4615
4750
|
position: relative;
|
|
4616
4751
|
}
|
|
4617
4752
|
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters::before {
|
|
@@ -4661,11 +4796,16 @@ a.ant-btn-sm {
|
|
|
4661
4796
|
.ant-table-tbody > tr:last-child > td:last-child {
|
|
4662
4797
|
border-bottom-right-radius: 8px;
|
|
4663
4798
|
}
|
|
4664
|
-
.ant-table-hide-cell-shadowed
|
|
4799
|
+
.ant-table-hide-cell-shadowed
|
|
4800
|
+
.ant-table-tbody
|
|
4801
|
+
> tr.ant-table-row-hover:not(.ant-table-expanded-row),
|
|
4665
4802
|
.ant-table-hide-cell-shadowed .ant-table-tbody > tr:hover:not(.ant-table-expanded-row) {
|
|
4666
4803
|
box-shadow: none;
|
|
4667
4804
|
}
|
|
4668
|
-
.ant-table-hide-cell-shadowed
|
|
4805
|
+
.ant-table-hide-cell-shadowed
|
|
4806
|
+
.ant-table-tbody
|
|
4807
|
+
> tr.ant-table-row-hover:not(.ant-table-expanded-row)
|
|
4808
|
+
> td,
|
|
4669
4809
|
.ant-table-hide-cell-shadowed .ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
|
|
4670
4810
|
background: #f8f9fb;
|
|
4671
4811
|
}
|
|
@@ -4805,7 +4945,12 @@ a.ant-btn-sm {
|
|
|
4805
4945
|
.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child {
|
|
4806
4946
|
border-right: 1px solid #e1e6ee;
|
|
4807
4947
|
}
|
|
4808
|
-
.ant-table-bordered
|
|
4948
|
+
.ant-table-bordered
|
|
4949
|
+
.ant-table-content:has(.ant-table-fixed-right)
|
|
4950
|
+
.ant-table-scroll
|
|
4951
|
+
.ant-table-thead
|
|
4952
|
+
> tr
|
|
4953
|
+
> th:last-child {
|
|
4809
4954
|
border-right: 1px solid #e1e6ee;
|
|
4810
4955
|
}
|
|
4811
4956
|
.ant-table-bordered .ant-table-tbody > tr:last-child > td {
|
|
@@ -4850,7 +4995,10 @@ a.ant-btn-sm {
|
|
|
4850
4995
|
border-radius: 8px;
|
|
4851
4996
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
4852
4997
|
}
|
|
4853
|
-
.ant-table-filter-dropdown
|
|
4998
|
+
.ant-table-filter-dropdown
|
|
4999
|
+
.ant-dropdown-menu
|
|
5000
|
+
.ant-dropdown-submenu-contain-selected
|
|
5001
|
+
.ant-dropdown-menu-submenu-title::after {
|
|
4854
5002
|
color: #126bfb;
|
|
4855
5003
|
font-weight: bold;
|
|
4856
5004
|
text-shadow: 0 0 2px #b5dbff;
|
|
@@ -4859,7 +5007,10 @@ a.ant-btn-sm {
|
|
|
4859
5007
|
overflow: hidden;
|
|
4860
5008
|
}
|
|
4861
5009
|
.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child,
|
|
4862
|
-
.ant-table-filter-dropdown
|
|
5010
|
+
.ant-table-filter-dropdown
|
|
5011
|
+
> .ant-dropdown-menu
|
|
5012
|
+
> .ant-dropdown-menu-submenu:last-child
|
|
5013
|
+
.ant-dropdown-menu-submenu-title {
|
|
4863
5014
|
border-radius: 0;
|
|
4864
5015
|
}
|
|
4865
5016
|
.ant-table-filter-dropdown-btns {
|
|
@@ -5022,7 +5173,12 @@ tr.ant-table-expanded-row td > .ant-table-wrapper {
|
|
|
5022
5173
|
border: 1px solid #e1e6ee;
|
|
5023
5174
|
border-width: 1px 1px 1px 0;
|
|
5024
5175
|
}
|
|
5025
|
-
.ant-table-bordered.ant-table-fixed-header
|
|
5176
|
+
.ant-table-bordered.ant-table-fixed-header
|
|
5177
|
+
.ant-table-scroll
|
|
5178
|
+
.ant-table-header.ant-table-hide-scrollbar
|
|
5179
|
+
.ant-table-thead
|
|
5180
|
+
> tr:only-child
|
|
5181
|
+
> th:last-child {
|
|
5026
5182
|
border-right-color: transparent;
|
|
5027
5183
|
}
|
|
5028
5184
|
.ant-table-fixed-left,
|
|
@@ -5120,20 +5276,108 @@ tr.ant-table-expanded-row td > .ant-table-wrapper {
|
|
|
5120
5276
|
}
|
|
5121
5277
|
.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
5122
5278
|
.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
5123
|
-
.ant-table-middle
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5279
|
+
.ant-table-middle
|
|
5280
|
+
> .ant-table-content
|
|
5281
|
+
> .ant-table-scroll
|
|
5282
|
+
> .ant-table-header
|
|
5283
|
+
> table
|
|
5284
|
+
> .ant-table-thead
|
|
5285
|
+
> tr
|
|
5286
|
+
> th,
|
|
5287
|
+
.ant-table-middle
|
|
5288
|
+
> .ant-table-content
|
|
5289
|
+
> .ant-table-scroll
|
|
5290
|
+
> .ant-table-body
|
|
5291
|
+
> table
|
|
5292
|
+
> .ant-table-thead
|
|
5293
|
+
> tr
|
|
5294
|
+
> th,
|
|
5295
|
+
.ant-table-middle
|
|
5296
|
+
> .ant-table-content
|
|
5297
|
+
> .ant-table-fixed-left
|
|
5298
|
+
> .ant-table-header
|
|
5299
|
+
> table
|
|
5300
|
+
> .ant-table-thead
|
|
5301
|
+
> tr
|
|
5302
|
+
> th,
|
|
5303
|
+
.ant-table-middle
|
|
5304
|
+
> .ant-table-content
|
|
5305
|
+
> .ant-table-fixed-right
|
|
5306
|
+
> .ant-table-header
|
|
5307
|
+
> table
|
|
5308
|
+
> .ant-table-thead
|
|
5309
|
+
> tr
|
|
5310
|
+
> th,
|
|
5311
|
+
.ant-table-middle
|
|
5312
|
+
> .ant-table-content
|
|
5313
|
+
> .ant-table-fixed-left
|
|
5314
|
+
> .ant-table-body-outer
|
|
5315
|
+
> .ant-table-body-inner
|
|
5316
|
+
> table
|
|
5317
|
+
> .ant-table-thead
|
|
5318
|
+
> tr
|
|
5319
|
+
> th,
|
|
5320
|
+
.ant-table-middle
|
|
5321
|
+
> .ant-table-content
|
|
5322
|
+
> .ant-table-fixed-right
|
|
5323
|
+
> .ant-table-body-outer
|
|
5324
|
+
> .ant-table-body-inner
|
|
5325
|
+
> table
|
|
5326
|
+
> .ant-table-thead
|
|
5327
|
+
> tr
|
|
5328
|
+
> th,
|
|
5129
5329
|
.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
|
|
5130
5330
|
.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
|
|
5131
|
-
.ant-table-middle
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5331
|
+
.ant-table-middle
|
|
5332
|
+
> .ant-table-content
|
|
5333
|
+
> .ant-table-scroll
|
|
5334
|
+
> .ant-table-header
|
|
5335
|
+
> table
|
|
5336
|
+
> .ant-table-tbody
|
|
5337
|
+
> tr
|
|
5338
|
+
> td,
|
|
5339
|
+
.ant-table-middle
|
|
5340
|
+
> .ant-table-content
|
|
5341
|
+
> .ant-table-scroll
|
|
5342
|
+
> .ant-table-body
|
|
5343
|
+
> table
|
|
5344
|
+
> .ant-table-tbody
|
|
5345
|
+
> tr
|
|
5346
|
+
> td,
|
|
5347
|
+
.ant-table-middle
|
|
5348
|
+
> .ant-table-content
|
|
5349
|
+
> .ant-table-fixed-left
|
|
5350
|
+
> .ant-table-header
|
|
5351
|
+
> table
|
|
5352
|
+
> .ant-table-tbody
|
|
5353
|
+
> tr
|
|
5354
|
+
> td,
|
|
5355
|
+
.ant-table-middle
|
|
5356
|
+
> .ant-table-content
|
|
5357
|
+
> .ant-table-fixed-right
|
|
5358
|
+
> .ant-table-header
|
|
5359
|
+
> table
|
|
5360
|
+
> .ant-table-tbody
|
|
5361
|
+
> tr
|
|
5362
|
+
> td,
|
|
5363
|
+
.ant-table-middle
|
|
5364
|
+
> .ant-table-content
|
|
5365
|
+
> .ant-table-fixed-left
|
|
5366
|
+
> .ant-table-body-outer
|
|
5367
|
+
> .ant-table-body-inner
|
|
5368
|
+
> table
|
|
5369
|
+
> .ant-table-tbody
|
|
5370
|
+
> tr
|
|
5371
|
+
> td,
|
|
5372
|
+
.ant-table-middle
|
|
5373
|
+
> .ant-table-content
|
|
5374
|
+
> .ant-table-fixed-right
|
|
5375
|
+
> .ant-table-body-outer
|
|
5376
|
+
> .ant-table-body-inner
|
|
5377
|
+
> table
|
|
5378
|
+
> .ant-table-tbody
|
|
5379
|
+
> tr
|
|
5380
|
+
> td {
|
|
5137
5381
|
padding: 9.75px 16px;
|
|
5138
5382
|
}
|
|
5139
5383
|
.ant-table-middle tr.ant-table-expanded-row td > .ant-table-wrapper {
|
|
@@ -5163,64 +5407,310 @@ tr.ant-table-expanded-row td > .ant-table-wrapper {
|
|
|
5163
5407
|
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,
|
|
5164
5408
|
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,
|
|
5165
5409
|
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,
|
|
5166
|
-
.ant-table-small
|
|
5167
|
-
|
|
5410
|
+
.ant-table-small
|
|
5411
|
+
> .ant-table-content
|
|
5412
|
+
> .ant-table-fixed-left
|
|
5413
|
+
> .ant-table-body-outer
|
|
5414
|
+
> .ant-table-body-inner
|
|
5415
|
+
> table,
|
|
5416
|
+
.ant-table-small
|
|
5417
|
+
> .ant-table-content
|
|
5418
|
+
> .ant-table-fixed-right
|
|
5419
|
+
> .ant-table-body-outer
|
|
5420
|
+
> .ant-table-body-inner
|
|
5421
|
+
> table {
|
|
5168
5422
|
border: 0;
|
|
5169
5423
|
}
|
|
5170
5424
|
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
5171
5425
|
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
5172
|
-
.ant-table-small
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
|
|
5176
|
-
|
|
5177
|
-
|
|
5426
|
+
.ant-table-small
|
|
5427
|
+
> .ant-table-content
|
|
5428
|
+
> .ant-table-scroll
|
|
5429
|
+
> .ant-table-header
|
|
5430
|
+
> table
|
|
5431
|
+
> .ant-table-thead
|
|
5432
|
+
> tr
|
|
5433
|
+
> th,
|
|
5434
|
+
.ant-table-small
|
|
5435
|
+
> .ant-table-content
|
|
5436
|
+
> .ant-table-scroll
|
|
5437
|
+
> .ant-table-body
|
|
5438
|
+
> table
|
|
5439
|
+
> .ant-table-thead
|
|
5440
|
+
> tr
|
|
5441
|
+
> th,
|
|
5442
|
+
.ant-table-small
|
|
5443
|
+
> .ant-table-content
|
|
5444
|
+
> .ant-table-fixed-left
|
|
5445
|
+
> .ant-table-header
|
|
5446
|
+
> table
|
|
5447
|
+
> .ant-table-thead
|
|
5448
|
+
> tr
|
|
5449
|
+
> th,
|
|
5450
|
+
.ant-table-small
|
|
5451
|
+
> .ant-table-content
|
|
5452
|
+
> .ant-table-fixed-right
|
|
5453
|
+
> .ant-table-header
|
|
5454
|
+
> table
|
|
5455
|
+
> .ant-table-thead
|
|
5456
|
+
> tr
|
|
5457
|
+
> th,
|
|
5458
|
+
.ant-table-small
|
|
5459
|
+
> .ant-table-content
|
|
5460
|
+
> .ant-table-fixed-left
|
|
5461
|
+
> .ant-table-body-outer
|
|
5462
|
+
> .ant-table-body-inner
|
|
5463
|
+
> table
|
|
5464
|
+
> .ant-table-thead
|
|
5465
|
+
> tr
|
|
5466
|
+
> th,
|
|
5467
|
+
.ant-table-small
|
|
5468
|
+
> .ant-table-content
|
|
5469
|
+
> .ant-table-fixed-right
|
|
5470
|
+
> .ant-table-body-outer
|
|
5471
|
+
> .ant-table-body-inner
|
|
5472
|
+
> table
|
|
5473
|
+
> .ant-table-thead
|
|
5474
|
+
> tr
|
|
5475
|
+
> th,
|
|
5178
5476
|
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
|
|
5179
5477
|
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
|
|
5180
|
-
.ant-table-small
|
|
5181
|
-
|
|
5182
|
-
|
|
5183
|
-
|
|
5184
|
-
|
|
5185
|
-
|
|
5478
|
+
.ant-table-small
|
|
5479
|
+
> .ant-table-content
|
|
5480
|
+
> .ant-table-scroll
|
|
5481
|
+
> .ant-table-header
|
|
5482
|
+
> table
|
|
5483
|
+
> .ant-table-tbody
|
|
5484
|
+
> tr
|
|
5485
|
+
> td,
|
|
5486
|
+
.ant-table-small
|
|
5487
|
+
> .ant-table-content
|
|
5488
|
+
> .ant-table-scroll
|
|
5489
|
+
> .ant-table-body
|
|
5490
|
+
> table
|
|
5491
|
+
> .ant-table-tbody
|
|
5492
|
+
> tr
|
|
5493
|
+
> td,
|
|
5494
|
+
.ant-table-small
|
|
5495
|
+
> .ant-table-content
|
|
5496
|
+
> .ant-table-fixed-left
|
|
5497
|
+
> .ant-table-header
|
|
5498
|
+
> table
|
|
5499
|
+
> .ant-table-tbody
|
|
5500
|
+
> tr
|
|
5501
|
+
> td,
|
|
5502
|
+
.ant-table-small
|
|
5503
|
+
> .ant-table-content
|
|
5504
|
+
> .ant-table-fixed-right
|
|
5505
|
+
> .ant-table-header
|
|
5506
|
+
> table
|
|
5507
|
+
> .ant-table-tbody
|
|
5508
|
+
> tr
|
|
5509
|
+
> td,
|
|
5510
|
+
.ant-table-small
|
|
5511
|
+
> .ant-table-content
|
|
5512
|
+
> .ant-table-fixed-left
|
|
5513
|
+
> .ant-table-body-outer
|
|
5514
|
+
> .ant-table-body-inner
|
|
5515
|
+
> table
|
|
5516
|
+
> .ant-table-tbody
|
|
5517
|
+
> tr
|
|
5518
|
+
> td,
|
|
5519
|
+
.ant-table-small
|
|
5520
|
+
> .ant-table-content
|
|
5521
|
+
> .ant-table-fixed-right
|
|
5522
|
+
> .ant-table-body-outer
|
|
5523
|
+
> .ant-table-body-inner
|
|
5524
|
+
> table
|
|
5525
|
+
> .ant-table-tbody
|
|
5526
|
+
> tr
|
|
5527
|
+
> td {
|
|
5186
5528
|
padding: 9px 16px;
|
|
5187
5529
|
}
|
|
5188
5530
|
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
|
|
5189
5531
|
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
|
|
5190
|
-
.ant-table-small
|
|
5191
|
-
|
|
5192
|
-
|
|
5193
|
-
|
|
5194
|
-
|
|
5195
|
-
|
|
5532
|
+
.ant-table-small
|
|
5533
|
+
> .ant-table-content
|
|
5534
|
+
> .ant-table-scroll
|
|
5535
|
+
> .ant-table-header
|
|
5536
|
+
> table
|
|
5537
|
+
> .ant-table-thead
|
|
5538
|
+
> tr
|
|
5539
|
+
> th,
|
|
5540
|
+
.ant-table-small
|
|
5541
|
+
> .ant-table-content
|
|
5542
|
+
> .ant-table-scroll
|
|
5543
|
+
> .ant-table-body
|
|
5544
|
+
> table
|
|
5545
|
+
> .ant-table-thead
|
|
5546
|
+
> tr
|
|
5547
|
+
> th,
|
|
5548
|
+
.ant-table-small
|
|
5549
|
+
> .ant-table-content
|
|
5550
|
+
> .ant-table-fixed-left
|
|
5551
|
+
> .ant-table-header
|
|
5552
|
+
> table
|
|
5553
|
+
> .ant-table-thead
|
|
5554
|
+
> tr
|
|
5555
|
+
> th,
|
|
5556
|
+
.ant-table-small
|
|
5557
|
+
> .ant-table-content
|
|
5558
|
+
> .ant-table-fixed-right
|
|
5559
|
+
> .ant-table-header
|
|
5560
|
+
> table
|
|
5561
|
+
> .ant-table-thead
|
|
5562
|
+
> tr
|
|
5563
|
+
> th,
|
|
5564
|
+
.ant-table-small
|
|
5565
|
+
> .ant-table-content
|
|
5566
|
+
> .ant-table-fixed-left
|
|
5567
|
+
> .ant-table-body-outer
|
|
5568
|
+
> .ant-table-body-inner
|
|
5569
|
+
> table
|
|
5570
|
+
> .ant-table-thead
|
|
5571
|
+
> tr
|
|
5572
|
+
> th,
|
|
5573
|
+
.ant-table-small
|
|
5574
|
+
> .ant-table-content
|
|
5575
|
+
> .ant-table-fixed-right
|
|
5576
|
+
> .ant-table-body-outer
|
|
5577
|
+
> .ant-table-body-inner
|
|
5578
|
+
> table
|
|
5579
|
+
> .ant-table-thead
|
|
5580
|
+
> tr
|
|
5581
|
+
> th {
|
|
5196
5582
|
background-color: #f8f9fb;
|
|
5197
5583
|
}
|
|
5198
5584
|
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr,
|
|
5199
5585
|
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr,
|
|
5200
|
-
.ant-table-small
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5586
|
+
.ant-table-small
|
|
5587
|
+
> .ant-table-content
|
|
5588
|
+
> .ant-table-scroll
|
|
5589
|
+
> .ant-table-header
|
|
5590
|
+
> table
|
|
5591
|
+
> .ant-table-thead
|
|
5592
|
+
> tr,
|
|
5593
|
+
.ant-table-small
|
|
5594
|
+
> .ant-table-content
|
|
5595
|
+
> .ant-table-scroll
|
|
5596
|
+
> .ant-table-body
|
|
5597
|
+
> table
|
|
5598
|
+
> .ant-table-thead
|
|
5599
|
+
> tr,
|
|
5600
|
+
.ant-table-small
|
|
5601
|
+
> .ant-table-content
|
|
5602
|
+
> .ant-table-fixed-left
|
|
5603
|
+
> .ant-table-header
|
|
5604
|
+
> table
|
|
5605
|
+
> .ant-table-thead
|
|
5606
|
+
> tr,
|
|
5607
|
+
.ant-table-small
|
|
5608
|
+
> .ant-table-content
|
|
5609
|
+
> .ant-table-fixed-right
|
|
5610
|
+
> .ant-table-header
|
|
5611
|
+
> table
|
|
5612
|
+
> .ant-table-thead
|
|
5613
|
+
> tr,
|
|
5614
|
+
.ant-table-small
|
|
5615
|
+
> .ant-table-content
|
|
5616
|
+
> .ant-table-fixed-left
|
|
5617
|
+
> .ant-table-body-outer
|
|
5618
|
+
> .ant-table-body-inner
|
|
5619
|
+
> table
|
|
5620
|
+
> .ant-table-thead
|
|
5621
|
+
> tr,
|
|
5622
|
+
.ant-table-small
|
|
5623
|
+
> .ant-table-content
|
|
5624
|
+
> .ant-table-fixed-right
|
|
5625
|
+
> .ant-table-body-outer
|
|
5626
|
+
> .ant-table-body-inner
|
|
5627
|
+
> table
|
|
5628
|
+
> .ant-table-thead
|
|
5629
|
+
> tr {
|
|
5206
5630
|
border-bottom: 1px solid #e1e6ee;
|
|
5207
5631
|
}
|
|
5208
|
-
.ant-table-small
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
.ant-table-small
|
|
5632
|
+
.ant-table-small
|
|
5633
|
+
> .ant-table-content
|
|
5634
|
+
> .ant-table-header
|
|
5635
|
+
> table
|
|
5636
|
+
> .ant-table-thead
|
|
5637
|
+
> tr
|
|
5638
|
+
> th.ant-table-column-sort,
|
|
5639
|
+
.ant-table-small
|
|
5640
|
+
> .ant-table-content
|
|
5641
|
+
> .ant-table-body
|
|
5642
|
+
> table
|
|
5643
|
+
> .ant-table-thead
|
|
5644
|
+
> tr
|
|
5645
|
+
> th.ant-table-column-sort,
|
|
5646
|
+
.ant-table-small
|
|
5647
|
+
> .ant-table-content
|
|
5648
|
+
> .ant-table-scroll
|
|
5649
|
+
> .ant-table-header
|
|
5650
|
+
> table
|
|
5651
|
+
> .ant-table-thead
|
|
5652
|
+
> tr
|
|
5653
|
+
> th.ant-table-column-sort,
|
|
5654
|
+
.ant-table-small
|
|
5655
|
+
> .ant-table-content
|
|
5656
|
+
> .ant-table-scroll
|
|
5657
|
+
> .ant-table-body
|
|
5658
|
+
> table
|
|
5659
|
+
> .ant-table-thead
|
|
5660
|
+
> tr
|
|
5661
|
+
> th.ant-table-column-sort,
|
|
5662
|
+
.ant-table-small
|
|
5663
|
+
> .ant-table-content
|
|
5664
|
+
> .ant-table-fixed-left
|
|
5665
|
+
> .ant-table-header
|
|
5666
|
+
> table
|
|
5667
|
+
> .ant-table-thead
|
|
5668
|
+
> tr
|
|
5669
|
+
> th.ant-table-column-sort,
|
|
5670
|
+
.ant-table-small
|
|
5671
|
+
> .ant-table-content
|
|
5672
|
+
> .ant-table-fixed-right
|
|
5673
|
+
> .ant-table-header
|
|
5674
|
+
> table
|
|
5675
|
+
> .ant-table-thead
|
|
5676
|
+
> tr
|
|
5677
|
+
> th.ant-table-column-sort,
|
|
5678
|
+
.ant-table-small
|
|
5679
|
+
> .ant-table-content
|
|
5680
|
+
> .ant-table-fixed-left
|
|
5681
|
+
> .ant-table-body-outer
|
|
5682
|
+
> .ant-table-body-inner
|
|
5683
|
+
> table
|
|
5684
|
+
> .ant-table-thead
|
|
5685
|
+
> tr
|
|
5686
|
+
> th.ant-table-column-sort,
|
|
5687
|
+
.ant-table-small
|
|
5688
|
+
> .ant-table-content
|
|
5689
|
+
> .ant-table-fixed-right
|
|
5690
|
+
> .ant-table-body-outer
|
|
5691
|
+
> .ant-table-body-inner
|
|
5692
|
+
> table
|
|
5693
|
+
> .ant-table-thead
|
|
5694
|
+
> tr
|
|
5695
|
+
> th.ant-table-column-sort {
|
|
5216
5696
|
background-color: rgba(0, 0, 0, 0.01);
|
|
5217
5697
|
}
|
|
5218
5698
|
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table,
|
|
5219
5699
|
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,
|
|
5220
5700
|
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,
|
|
5221
5701
|
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,
|
|
5222
|
-
.ant-table-small
|
|
5223
|
-
|
|
5702
|
+
.ant-table-small
|
|
5703
|
+
> .ant-table-content
|
|
5704
|
+
> .ant-table-fixed-left
|
|
5705
|
+
> .ant-table-body-outer
|
|
5706
|
+
> .ant-table-body-inner
|
|
5707
|
+
> table,
|
|
5708
|
+
.ant-table-small
|
|
5709
|
+
> .ant-table-content
|
|
5710
|
+
> .ant-table-fixed-right
|
|
5711
|
+
> .ant-table-body-outer
|
|
5712
|
+
> .ant-table-body-inner
|
|
5713
|
+
> table {
|
|
5224
5714
|
padding: 0;
|
|
5225
5715
|
}
|
|
5226
5716
|
.ant-table-small > .ant-table-content .ant-table-header {
|
|
@@ -5565,17 +6055,20 @@ span.ant-radio + * {
|
|
|
5565
6055
|
background: #126bfb;
|
|
5566
6056
|
border-color: #126bfb;
|
|
5567
6057
|
}
|
|
5568
|
-
.ant-radio-group-solid
|
|
6058
|
+
.ant-radio-group-solid
|
|
6059
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
|
|
5569
6060
|
color: #fff;
|
|
5570
6061
|
background: #3b8cff;
|
|
5571
6062
|
border-color: #3b8cff;
|
|
5572
6063
|
}
|
|
5573
|
-
.ant-radio-group-solid
|
|
6064
|
+
.ant-radio-group-solid
|
|
6065
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
|
|
5574
6066
|
color: #fff;
|
|
5575
6067
|
background: #044dd4;
|
|
5576
6068
|
border-color: #044dd4;
|
|
5577
6069
|
}
|
|
5578
|
-
.ant-radio-group-solid
|
|
6070
|
+
.ant-radio-group-solid
|
|
6071
|
+
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
|
5579
6072
|
outline: 3px solid rgba(18, 107, 251, 0.06);
|
|
5580
6073
|
}
|
|
5581
6074
|
.ant-radio-button-wrapper-disabled {
|
|
@@ -6014,7 +6507,9 @@ span.ant-radio + * {
|
|
|
6014
6507
|
transform-origin: 0 0;
|
|
6015
6508
|
}
|
|
6016
6509
|
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,
|
|
6017
|
-
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled
|
|
6510
|
+
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled
|
|
6511
|
+
.ant-dropdown-menu-submenu-title
|
|
6512
|
+
.ant-dropdown-menu-submenu-arrow-icon {
|
|
6018
6513
|
color: #babdc5;
|
|
6019
6514
|
background-color: #fff;
|
|
6020
6515
|
cursor: not-allowed;
|
|
@@ -6534,16 +7029,32 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
6534
7029
|
border-color: #c9d2dd;
|
|
6535
7030
|
cursor: not-allowed;
|
|
6536
7031
|
}
|
|
6537
|
-
.ant-pagination.ant-pagination-disabled
|
|
6538
|
-
.ant-pagination
|
|
6539
|
-
.ant-pagination
|
|
6540
|
-
.ant-pagination.ant-pagination-disabled
|
|
7032
|
+
.ant-pagination.ant-pagination-disabled
|
|
7033
|
+
.ant-pagination-jump-prev:focus
|
|
7034
|
+
.ant-pagination-item-link-icon,
|
|
7035
|
+
.ant-pagination.ant-pagination-disabled
|
|
7036
|
+
.ant-pagination-jump-next:focus
|
|
7037
|
+
.ant-pagination-item-link-icon,
|
|
7038
|
+
.ant-pagination.ant-pagination-disabled
|
|
7039
|
+
.ant-pagination-jump-prev:hover
|
|
7040
|
+
.ant-pagination-item-link-icon,
|
|
7041
|
+
.ant-pagination.ant-pagination-disabled
|
|
7042
|
+
.ant-pagination-jump-next:hover
|
|
7043
|
+
.ant-pagination-item-link-icon {
|
|
6541
7044
|
opacity: 0;
|
|
6542
7045
|
}
|
|
6543
|
-
.ant-pagination.ant-pagination-disabled
|
|
6544
|
-
.ant-pagination
|
|
6545
|
-
.ant-pagination
|
|
6546
|
-
.ant-pagination.ant-pagination-disabled
|
|
7046
|
+
.ant-pagination.ant-pagination-disabled
|
|
7047
|
+
.ant-pagination-jump-prev:focus
|
|
7048
|
+
.ant-pagination-item-ellipsis,
|
|
7049
|
+
.ant-pagination.ant-pagination-disabled
|
|
7050
|
+
.ant-pagination-jump-next:focus
|
|
7051
|
+
.ant-pagination-item-ellipsis,
|
|
7052
|
+
.ant-pagination.ant-pagination-disabled
|
|
7053
|
+
.ant-pagination-jump-prev:hover
|
|
7054
|
+
.ant-pagination-item-ellipsis,
|
|
7055
|
+
.ant-pagination.ant-pagination-disabled
|
|
7056
|
+
.ant-pagination-jump-next:hover
|
|
7057
|
+
.ant-pagination-item-ellipsis {
|
|
6547
7058
|
opacity: 1;
|
|
6548
7059
|
}
|
|
6549
7060
|
@media only screen and (max-width: 992px) {
|
|
@@ -6936,7 +7447,10 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
6936
7447
|
.ant-select-selection--multiple .ant-select-selection__choice__remove::before {
|
|
6937
7448
|
display: none;
|
|
6938
7449
|
}
|
|
6939
|
-
.ant-select-selection--multiple
|
|
7450
|
+
.ant-select-selection--multiple
|
|
7451
|
+
.ant-select-selection__choice__remove
|
|
7452
|
+
.ant-select-selection--multiple
|
|
7453
|
+
.ant-select-selection__choice__remove-icon {
|
|
6940
7454
|
display: block;
|
|
6941
7455
|
}
|
|
6942
7456
|
:root .ant-select-selection--multiple .ant-select-selection__choice__remove {
|
|
@@ -6982,8 +7496,12 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
6982
7496
|
box-shadow: none;
|
|
6983
7497
|
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0s;
|
|
6984
7498
|
}
|
|
6985
|
-
.ant-select-combobox.ant-select-allow-clear
|
|
6986
|
-
.ant-select-
|
|
7499
|
+
.ant-select-combobox.ant-select-allow-clear
|
|
7500
|
+
.ant-select-selection:hover
|
|
7501
|
+
.ant-select-selection__rendered,
|
|
7502
|
+
.ant-select-combobox.ant-select-show-arrow
|
|
7503
|
+
.ant-select-selection:hover
|
|
7504
|
+
.ant-select-selection__rendered {
|
|
6987
7505
|
margin-right: 20px;
|
|
6988
7506
|
}
|
|
6989
7507
|
.ant-select-dropdown {
|
|
@@ -7047,8 +7565,11 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7047
7565
|
font-size: 12px;
|
|
7048
7566
|
line-height: 32px;
|
|
7049
7567
|
}
|
|
7050
|
-
.ant-select-dropdown-menu-item-group-list
|
|
7051
|
-
.ant-select-dropdown-menu-item-
|
|
7568
|
+
.ant-select-dropdown-menu-item-group-list
|
|
7569
|
+
.ant-select-dropdown-menu-item:first-child:not(:last-child),
|
|
7570
|
+
.ant-select-dropdown-menu-item-group:not(:last-child)
|
|
7571
|
+
.ant-select-dropdown-menu-item-group-list
|
|
7572
|
+
.ant-select-dropdown-menu-item:last-child {
|
|
7052
7573
|
border-radius: 0;
|
|
7053
7574
|
}
|
|
7054
7575
|
.ant-select-dropdown-menu-item {
|
|
@@ -7094,7 +7615,9 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7094
7615
|
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item {
|
|
7095
7616
|
padding-right: calc(12px + 20px);
|
|
7096
7617
|
}
|
|
7097
|
-
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7618
|
+
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7619
|
+
.ant-select-dropdown-menu-item
|
|
7620
|
+
.ant-select-selected-icon {
|
|
7098
7621
|
position: absolute;
|
|
7099
7622
|
top: 50%;
|
|
7100
7623
|
right: 12px;
|
|
@@ -7105,14 +7628,22 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7105
7628
|
transform: translateY(-50%);
|
|
7106
7629
|
transition: all 0.2s;
|
|
7107
7630
|
}
|
|
7108
|
-
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7631
|
+
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7632
|
+
.ant-select-dropdown-menu-item:hover
|
|
7633
|
+
.ant-select-selected-icon {
|
|
7109
7634
|
color: rgba(0, 0, 0, 0.87);
|
|
7110
7635
|
}
|
|
7111
|
-
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7636
|
+
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7637
|
+
.ant-select-dropdown-menu-item-disabled
|
|
7638
|
+
.ant-select-selected-icon {
|
|
7112
7639
|
display: none;
|
|
7113
7640
|
}
|
|
7114
|
-
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7115
|
-
.ant-select-dropdown
|
|
7641
|
+
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7642
|
+
.ant-select-dropdown-menu-item-selected
|
|
7643
|
+
.ant-select-selected-icon,
|
|
7644
|
+
.ant-select-dropdown.ant-select-dropdown--multiple
|
|
7645
|
+
.ant-select-dropdown-menu-item-selected:hover
|
|
7646
|
+
.ant-select-selected-icon {
|
|
7116
7647
|
display: inline-block;
|
|
7117
7648
|
color: #126bfb;
|
|
7118
7649
|
}
|
|
@@ -7146,11 +7677,18 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7146
7677
|
padding-top: 8px;
|
|
7147
7678
|
padding-bottom: 8px;
|
|
7148
7679
|
}
|
|
7149
|
-
.tnt-table-wrapper.ant-table-striped
|
|
7680
|
+
.tnt-table-wrapper.ant-table-striped
|
|
7681
|
+
.ant-table-tbody
|
|
7682
|
+
> .ant-table-row-even:not(:hover):not(.ant-table-row-hover)
|
|
7683
|
+
> td {
|
|
7150
7684
|
background: #f8f9fb;
|
|
7151
7685
|
}
|
|
7152
7686
|
.tnt-table-wrapper.ant-table-striped .ant-table:not(.ant-table-bordered) .ant-table-thead > tr > th,
|
|
7153
|
-
.tnt-table-wrapper.ant-table-striped
|
|
7687
|
+
.tnt-table-wrapper.ant-table-striped
|
|
7688
|
+
.ant-table:not(.ant-table-bordered)
|
|
7689
|
+
.ant-table-tbody
|
|
7690
|
+
> tr
|
|
7691
|
+
> td {
|
|
7154
7692
|
border-bottom: none;
|
|
7155
7693
|
}
|
|
7156
7694
|
.tnt-table-wrapper.ant-table-hide-cell-borders .ant-table-thead > tr > th,
|
|
@@ -7205,23 +7743,63 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7205
7743
|
.tnt-table-wrapper.ant-table-sticky .ant-table-default .ant-table-body table {
|
|
7206
7744
|
table-layout: fixed;
|
|
7207
7745
|
}
|
|
7208
|
-
.tnt-table-wrapper.ant-table-sticky
|
|
7209
|
-
.
|
|
7746
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7747
|
+
.ant-table-scroll
|
|
7748
|
+
.ant-table-body
|
|
7749
|
+
table
|
|
7750
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1,
|
|
7751
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7752
|
+
.ant-table-default
|
|
7753
|
+
.ant-table-body
|
|
7754
|
+
table
|
|
7755
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1 {
|
|
7210
7756
|
position: relative;
|
|
7211
7757
|
z-index: 10;
|
|
7212
7758
|
}
|
|
7213
|
-
.tnt-table-wrapper.ant-table-sticky
|
|
7214
|
-
.
|
|
7759
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7760
|
+
.ant-table-scroll
|
|
7761
|
+
.ant-table-body
|
|
7762
|
+
table
|
|
7763
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1
|
|
7764
|
+
> td:not([colspan]),
|
|
7765
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7766
|
+
.ant-table-default
|
|
7767
|
+
.ant-table-body
|
|
7768
|
+
table
|
|
7769
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1
|
|
7770
|
+
> td:not([colspan]) {
|
|
7215
7771
|
display: none;
|
|
7216
7772
|
}
|
|
7217
|
-
.tnt-table-wrapper.ant-table-sticky
|
|
7218
|
-
.
|
|
7773
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7774
|
+
.ant-table-scroll
|
|
7775
|
+
.ant-table-body
|
|
7776
|
+
table
|
|
7777
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1
|
|
7778
|
+
> td[colspan],
|
|
7779
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7780
|
+
.ant-table-default
|
|
7781
|
+
.ant-table-body
|
|
7782
|
+
table
|
|
7783
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1
|
|
7784
|
+
> td[colspan] {
|
|
7219
7785
|
position: relative;
|
|
7220
7786
|
z-index: 100;
|
|
7221
7787
|
padding: 0;
|
|
7222
7788
|
}
|
|
7223
|
-
.tnt-table-wrapper.ant-table-sticky
|
|
7224
|
-
.
|
|
7789
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7790
|
+
.ant-table-scroll
|
|
7791
|
+
.ant-table-body
|
|
7792
|
+
table
|
|
7793
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1
|
|
7794
|
+
> td[colspan]
|
|
7795
|
+
> .ant-table-expanded-row-fixed,
|
|
7796
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7797
|
+
.ant-table-default
|
|
7798
|
+
.ant-table-body
|
|
7799
|
+
table
|
|
7800
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1
|
|
7801
|
+
> td[colspan]
|
|
7802
|
+
> .ant-table-expanded-row-fixed {
|
|
7225
7803
|
position: sticky;
|
|
7226
7804
|
left: 0px;
|
|
7227
7805
|
overflow: hidden;
|
|
@@ -7231,8 +7809,16 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7231
7809
|
.tnt-table-wrapper.ant-table-sticky .ant-table-fixed-right table {
|
|
7232
7810
|
width: fit-content;
|
|
7233
7811
|
}
|
|
7234
|
-
.tnt-table-wrapper.ant-table-sticky
|
|
7235
|
-
.
|
|
7812
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7813
|
+
.ant-table-fixed-left
|
|
7814
|
+
table
|
|
7815
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1
|
|
7816
|
+
> td,
|
|
7817
|
+
.tnt-table-wrapper.ant-table-sticky
|
|
7818
|
+
.ant-table-fixed-right
|
|
7819
|
+
table
|
|
7820
|
+
tr.ant-table-expanded-row.ant-table-expanded-row-level-1
|
|
7821
|
+
> td {
|
|
7236
7822
|
position: relative;
|
|
7237
7823
|
z-index: -1;
|
|
7238
7824
|
}
|
|
@@ -7354,7 +7940,8 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7354
7940
|
position: relative;
|
|
7355
7941
|
vertical-align: top;
|
|
7356
7942
|
font-weight: 400;
|
|
7357
|
-
font-family: 'OswaldLight', Roboto, 'Helvetica Neue', Helvetica, Tahoma, Arial, 'PingFang SC',
|
|
7943
|
+
font-family: 'OswaldLight', Roboto, 'Helvetica Neue', Helvetica, Tahoma, Arial, 'PingFang SC',
|
|
7944
|
+
'Microsoft YaHei' !important;
|
|
7358
7945
|
letter-spacing: 1px;
|
|
7359
7946
|
}
|
|
7360
7947
|
.tntd-title.has-number .count::before {
|
|
@@ -7935,20 +8522,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7935
8522
|
border-color: transparent;
|
|
7936
8523
|
}
|
|
7937
8524
|
.tnt-tag.ant-tag.ant-tag-lightblue {
|
|
7938
|
-
color: #
|
|
7939
|
-
background: #
|
|
7940
|
-
border-color: #
|
|
8525
|
+
color: #1aa9e6;
|
|
8526
|
+
background: #f0f9ff;
|
|
8527
|
+
border-color: #8fe0ff;
|
|
7941
8528
|
}
|
|
7942
8529
|
.tnt-tag.ant-tag.ant-tag-lightblue > .anticon-close {
|
|
7943
|
-
color: #
|
|
8530
|
+
color: #36bffa;
|
|
7944
8531
|
}
|
|
7945
8532
|
.tnt-tag.ant-tag.ant-tag-lightblue.ant-tag-no-border {
|
|
7946
8533
|
border-color: transparent;
|
|
7947
8534
|
}
|
|
7948
8535
|
.tnt-tag.ant-tag.ant-tag-lightblue-inverse {
|
|
7949
8536
|
color: #fff;
|
|
7950
|
-
background: #
|
|
7951
|
-
border-color: #
|
|
8537
|
+
background: #1aa9e6;
|
|
8538
|
+
border-color: #1aa9e6;
|
|
7952
8539
|
}
|
|
7953
8540
|
.tnt-tag.ant-tag.ant-tag-lightblue-inverse > .anticon-close {
|
|
7954
8541
|
color: #fff;
|
|
@@ -7957,20 +8544,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7957
8544
|
border-color: transparent;
|
|
7958
8545
|
}
|
|
7959
8546
|
.tnt-tag.ant-tag.ant-tag-bluegrey {
|
|
7960
|
-
color: #
|
|
7961
|
-
background: #
|
|
7962
|
-
border-color: #
|
|
8547
|
+
color: #486fbb;
|
|
8548
|
+
background: #f4f8ff;
|
|
8549
|
+
border-color: #a1bcef;
|
|
7963
8550
|
}
|
|
7964
8551
|
.tnt-tag.ant-tag.ant-tag-bluegrey > .anticon-close {
|
|
7965
|
-
color: #
|
|
8552
|
+
color: #628fe4;
|
|
7966
8553
|
}
|
|
7967
8554
|
.tnt-tag.ant-tag.ant-tag-bluegrey.ant-tag-no-border {
|
|
7968
8555
|
border-color: transparent;
|
|
7969
8556
|
}
|
|
7970
8557
|
.tnt-tag.ant-tag.ant-tag-bluegrey-inverse {
|
|
7971
8558
|
color: #fff;
|
|
7972
|
-
background: #
|
|
7973
|
-
border-color: #
|
|
8559
|
+
background: #486fbb;
|
|
8560
|
+
border-color: #486fbb;
|
|
7974
8561
|
}
|
|
7975
8562
|
.tnt-tag.ant-tag.ant-tag-bluegrey-inverse > .anticon-close {
|
|
7976
8563
|
color: #fff;
|
|
@@ -7979,20 +8566,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
7979
8566
|
border-color: transparent;
|
|
7980
8567
|
}
|
|
7981
8568
|
.tnt-tag.ant-tag.ant-tag-purplegrey {
|
|
7982
|
-
color: #
|
|
7983
|
-
background: #
|
|
7984
|
-
border-color: #
|
|
8569
|
+
color: #4e5ba6;
|
|
8570
|
+
background: #f8f9fc;
|
|
8571
|
+
border-color: #afb5d9;
|
|
7985
8572
|
}
|
|
7986
8573
|
.tnt-tag.ant-tag.ant-tag-purplegrey > .anticon-close {
|
|
7987
|
-
color: #
|
|
8574
|
+
color: #717bbc;
|
|
7988
8575
|
}
|
|
7989
8576
|
.tnt-tag.ant-tag.ant-tag-purplegrey.ant-tag-no-border {
|
|
7990
8577
|
border-color: transparent;
|
|
7991
8578
|
}
|
|
7992
8579
|
.tnt-tag.ant-tag.ant-tag-purplegrey-inverse {
|
|
7993
8580
|
color: #fff;
|
|
7994
|
-
background: #
|
|
7995
|
-
border-color: #
|
|
8581
|
+
background: #4e5ba6;
|
|
8582
|
+
border-color: #4e5ba6;
|
|
7996
8583
|
}
|
|
7997
8584
|
.tnt-tag.ant-tag.ant-tag-purplegrey-inverse > .anticon-close {
|
|
7998
8585
|
color: #fff;
|
|
@@ -8023,20 +8610,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8023
8610
|
border-color: transparent;
|
|
8024
8611
|
}
|
|
8025
8612
|
.tnt-tag.ant-tag.ant-tag-lightpurple {
|
|
8026
|
-
color: #
|
|
8027
|
-
background: #
|
|
8028
|
-
border-color: #
|
|
8613
|
+
color: #5161d7;
|
|
8614
|
+
background: #eef4ff;
|
|
8615
|
+
border-color: #a4bcfd;
|
|
8029
8616
|
}
|
|
8030
8617
|
.tnt-tag.ant-tag.ant-tag-lightpurple > .anticon-close {
|
|
8031
|
-
color: #
|
|
8618
|
+
color: #6172f3;
|
|
8032
8619
|
}
|
|
8033
8620
|
.tnt-tag.ant-tag.ant-tag-lightpurple.ant-tag-no-border {
|
|
8034
8621
|
border-color: transparent;
|
|
8035
8622
|
}
|
|
8036
8623
|
.tnt-tag.ant-tag.ant-tag-lightpurple-inverse {
|
|
8037
8624
|
color: #fff;
|
|
8038
|
-
background: #
|
|
8039
|
-
border-color: #
|
|
8625
|
+
background: #5161d7;
|
|
8626
|
+
border-color: #5161d7;
|
|
8040
8627
|
}
|
|
8041
8628
|
.tnt-tag.ant-tag.ant-tag-lightpurple-inverse > .anticon-close {
|
|
8042
8629
|
color: #fff;
|
|
@@ -8045,20 +8632,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8045
8632
|
border-color: transparent;
|
|
8046
8633
|
}
|
|
8047
8634
|
.tnt-tag.ant-tag.ant-tag-lightgreen {
|
|
8048
|
-
color: #
|
|
8049
|
-
background: #
|
|
8050
|
-
border-color: #
|
|
8635
|
+
color: #2e9c98;
|
|
8636
|
+
background: #f1fbfb;
|
|
8637
|
+
border-color: #8ce0dd;
|
|
8051
8638
|
}
|
|
8052
8639
|
.tnt-tag.ant-tag.ant-tag-lightgreen > .anticon-close {
|
|
8053
|
-
color: #
|
|
8640
|
+
color: #3ab4af;
|
|
8054
8641
|
}
|
|
8055
8642
|
.tnt-tag.ant-tag.ant-tag-lightgreen.ant-tag-no-border {
|
|
8056
8643
|
border-color: transparent;
|
|
8057
8644
|
}
|
|
8058
8645
|
.tnt-tag.ant-tag.ant-tag-lightgreen-inverse {
|
|
8059
8646
|
color: #fff;
|
|
8060
|
-
background: #
|
|
8061
|
-
border-color: #
|
|
8647
|
+
background: #2e9c98;
|
|
8648
|
+
border-color: #2e9c98;
|
|
8062
8649
|
}
|
|
8063
8650
|
.tnt-tag.ant-tag.ant-tag-lightgreen-inverse > .anticon-close {
|
|
8064
8651
|
color: #fff;
|
|
@@ -8089,20 +8676,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8089
8676
|
border-color: transparent;
|
|
8090
8677
|
}
|
|
8091
8678
|
.tnt-tag.ant-tag.ant-tag-rose {
|
|
8092
|
-
color: #
|
|
8093
|
-
background: #
|
|
8094
|
-
border-color: #
|
|
8679
|
+
color: #d8395e;
|
|
8680
|
+
background: #fff1f3;
|
|
8681
|
+
border-color: #fea3b4;
|
|
8095
8682
|
}
|
|
8096
8683
|
.tnt-tag.ant-tag.ant-tag-rose > .anticon-close {
|
|
8097
|
-
color: #
|
|
8684
|
+
color: #ee3e67;
|
|
8098
8685
|
}
|
|
8099
8686
|
.tnt-tag.ant-tag.ant-tag-rose.ant-tag-no-border {
|
|
8100
8687
|
border-color: transparent;
|
|
8101
8688
|
}
|
|
8102
8689
|
.tnt-tag.ant-tag.ant-tag-rose-inverse {
|
|
8103
8690
|
color: #fff;
|
|
8104
|
-
background: #
|
|
8105
|
-
border-color: #
|
|
8691
|
+
background: #d8395e;
|
|
8692
|
+
border-color: #d8395e;
|
|
8106
8693
|
}
|
|
8107
8694
|
.tnt-tag.ant-tag.ant-tag-rose-inverse > .anticon-close {
|
|
8108
8695
|
color: #fff;
|
|
@@ -8265,20 +8852,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8265
8852
|
border-color: transparent;
|
|
8266
8853
|
}
|
|
8267
8854
|
.tnt-tag.ant-tag.ant-tag-tnt-pink {
|
|
8268
|
-
color: #
|
|
8269
|
-
background: #
|
|
8270
|
-
border-color: #
|
|
8855
|
+
color: #d03e93;
|
|
8856
|
+
background: #fdf2fa;
|
|
8857
|
+
border-color: #faa7e0;
|
|
8271
8858
|
}
|
|
8272
8859
|
.tnt-tag.ant-tag.ant-tag-tnt-pink > .anticon-close {
|
|
8273
|
-
color: #
|
|
8860
|
+
color: #e844b7;
|
|
8274
8861
|
}
|
|
8275
8862
|
.tnt-tag.ant-tag.ant-tag-tnt-pink.ant-tag-no-border {
|
|
8276
8863
|
border-color: transparent;
|
|
8277
8864
|
}
|
|
8278
8865
|
.tnt-tag.ant-tag.ant-tag-tnt-pink-inverse {
|
|
8279
8866
|
color: #fff;
|
|
8280
|
-
background: #
|
|
8281
|
-
border-color: #
|
|
8867
|
+
background: #d03e93;
|
|
8868
|
+
border-color: #d03e93;
|
|
8282
8869
|
}
|
|
8283
8870
|
.tnt-tag.ant-tag.ant-tag-tnt-pink-inverse > .anticon-close {
|
|
8284
8871
|
color: #fff;
|
|
@@ -8287,20 +8874,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8287
8874
|
border-color: transparent;
|
|
8288
8875
|
}
|
|
8289
8876
|
.tnt-tag.ant-tag.ant-tag-tnt-orange {
|
|
8290
|
-
color: #
|
|
8291
|
-
background: #
|
|
8292
|
-
border-color: #
|
|
8877
|
+
color: #df5f28;
|
|
8878
|
+
background: #fff6ed;
|
|
8879
|
+
border-color: #feb173;
|
|
8293
8880
|
}
|
|
8294
8881
|
.tnt-tag.ant-tag.ant-tag-tnt-orange > .anticon-close {
|
|
8295
|
-
color: #
|
|
8882
|
+
color: #f47345;
|
|
8296
8883
|
}
|
|
8297
8884
|
.tnt-tag.ant-tag.ant-tag-tnt-orange.ant-tag-no-border {
|
|
8298
8885
|
border-color: transparent;
|
|
8299
8886
|
}
|
|
8300
8887
|
.tnt-tag.ant-tag.ant-tag-tnt-orange-inverse {
|
|
8301
8888
|
color: #fff;
|
|
8302
|
-
background: #
|
|
8303
|
-
border-color: #
|
|
8889
|
+
background: #df5f28;
|
|
8890
|
+
border-color: #df5f28;
|
|
8304
8891
|
}
|
|
8305
8892
|
.tnt-tag.ant-tag.ant-tag-tnt-orange-inverse > .anticon-close {
|
|
8306
8893
|
color: #fff;
|
|
@@ -8309,20 +8896,20 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8309
8896
|
border-color: transparent;
|
|
8310
8897
|
}
|
|
8311
8898
|
.tnt-tag.ant-tag.ant-tag-tnt-purple {
|
|
8312
|
-
color: #
|
|
8313
|
-
background: #
|
|
8314
|
-
border-color: #
|
|
8899
|
+
color: #6e54d4;
|
|
8900
|
+
background: #f4f3ff;
|
|
8901
|
+
border-color: #bdb4fe;
|
|
8315
8902
|
}
|
|
8316
8903
|
.tnt-tag.ant-tag.ant-tag-tnt-purple > .anticon-close {
|
|
8317
|
-
color: #
|
|
8904
|
+
color: #7a5af8;
|
|
8318
8905
|
}
|
|
8319
8906
|
.tnt-tag.ant-tag.ant-tag-tnt-purple.ant-tag-no-border {
|
|
8320
8907
|
border-color: transparent;
|
|
8321
8908
|
}
|
|
8322
8909
|
.tnt-tag.ant-tag.ant-tag-tnt-purple-inverse {
|
|
8323
8910
|
color: #fff;
|
|
8324
|
-
background: #
|
|
8325
|
-
border-color: #
|
|
8911
|
+
background: #6e54d4;
|
|
8912
|
+
border-color: #6e54d4;
|
|
8326
8913
|
}
|
|
8327
8914
|
.tnt-tag.ant-tag.ant-tag-tnt-purple-inverse > .anticon-close {
|
|
8328
8915
|
color: #fff;
|
|
@@ -8592,7 +9179,9 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8592
9179
|
}
|
|
8593
9180
|
.ant-menu-submenu,
|
|
8594
9181
|
.ant-menu-submenu-inline {
|
|
8595
|
-
transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9182
|
+
transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9183
|
+
background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9184
|
+
padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8596
9185
|
}
|
|
8597
9186
|
.ant-menu-submenu-selected {
|
|
8598
9187
|
color: #126bfb;
|
|
@@ -8603,7 +9192,8 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8603
9192
|
}
|
|
8604
9193
|
.ant-menu-submenu .ant-menu-sub {
|
|
8605
9194
|
cursor: initial;
|
|
8606
|
-
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9195
|
+
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9196
|
+
padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8607
9197
|
}
|
|
8608
9198
|
.ant-menu-item > a {
|
|
8609
9199
|
display: block;
|
|
@@ -8706,19 +9296,24 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8706
9296
|
padding: 0 20px;
|
|
8707
9297
|
white-space: nowrap;
|
|
8708
9298
|
cursor: pointer;
|
|
8709
|
-
transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9299
|
+
transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9300
|
+
border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9301
|
+
background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9302
|
+
padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8710
9303
|
}
|
|
8711
9304
|
.ant-menu-item .anticon,
|
|
8712
9305
|
.ant-menu-submenu-title .anticon {
|
|
8713
9306
|
min-width: 14px;
|
|
8714
9307
|
margin-right: 10px;
|
|
8715
9308
|
font-size: 16px;
|
|
8716
|
-
transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),
|
|
9309
|
+
transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),
|
|
9310
|
+
margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8717
9311
|
}
|
|
8718
9312
|
.ant-menu-item .anticon + span,
|
|
8719
9313
|
.ant-menu-submenu-title .anticon + span {
|
|
8720
9314
|
opacity: 1;
|
|
8721
|
-
transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9315
|
+
transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9316
|
+
width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8722
9317
|
}
|
|
8723
9318
|
.ant-menu > .ant-menu-item-divider {
|
|
8724
9319
|
height: 1px;
|
|
@@ -8779,7 +9374,9 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8779
9374
|
background-image: linear-gradient(to right, #17233d, #17233d);
|
|
8780
9375
|
background-image: none \9;
|
|
8781
9376
|
border-radius: 2px;
|
|
8782
|
-
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9377
|
+
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9378
|
+
transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9379
|
+
top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8783
9380
|
content: '';
|
|
8784
9381
|
}
|
|
8785
9382
|
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
|
|
@@ -8813,10 +9410,14 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8813
9410
|
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
|
|
8814
9411
|
transform: translateY(-2px);
|
|
8815
9412
|
}
|
|
8816
|
-
.ant-menu-submenu-open.ant-menu-submenu-inline
|
|
9413
|
+
.ant-menu-submenu-open.ant-menu-submenu-inline
|
|
9414
|
+
> .ant-menu-submenu-title
|
|
9415
|
+
.ant-menu-submenu-arrow::after {
|
|
8817
9416
|
transform: rotate(-45deg) translateX(-2px);
|
|
8818
9417
|
}
|
|
8819
|
-
.ant-menu-submenu-open.ant-menu-submenu-inline
|
|
9418
|
+
.ant-menu-submenu-open.ant-menu-submenu-inline
|
|
9419
|
+
> .ant-menu-submenu-title
|
|
9420
|
+
.ant-menu-submenu-arrow::before {
|
|
8820
9421
|
transform: rotate(45deg) translateX(2px);
|
|
8821
9422
|
}
|
|
8822
9423
|
.ant-menu-vertical .ant-menu-submenu-selected,
|
|
@@ -8891,7 +9492,8 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8891
9492
|
border-right: 3px solid #126bfb;
|
|
8892
9493
|
transform: scaleY(0.0001);
|
|
8893
9494
|
opacity: 0;
|
|
8894
|
-
transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),
|
|
9495
|
+
transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),
|
|
9496
|
+
opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
8895
9497
|
content: '';
|
|
8896
9498
|
}
|
|
8897
9499
|
.ant-menu-vertical .ant-menu-item,
|
|
@@ -8941,7 +9543,8 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8941
9543
|
.ant-menu-inline .ant-menu-item-selected::after {
|
|
8942
9544
|
transform: scaleY(1);
|
|
8943
9545
|
opacity: 1;
|
|
8944
|
-
transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9546
|
+
transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
9547
|
+
opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8945
9548
|
}
|
|
8946
9549
|
.ant-menu-inline .ant-menu-item,
|
|
8947
9550
|
.ant-menu-inline .ant-menu-submenu-title {
|
|
@@ -8955,29 +9558,62 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
8955
9558
|
}
|
|
8956
9559
|
.ant-menu-inline-collapsed > .ant-menu-item,
|
|
8957
9560
|
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
|
|
8958
|
-
.ant-menu-inline-collapsed
|
|
9561
|
+
.ant-menu-inline-collapsed
|
|
9562
|
+
> .ant-menu-item-group
|
|
9563
|
+
> .ant-menu-item-group-list
|
|
9564
|
+
> .ant-menu-submenu
|
|
9565
|
+
> .ant-menu-submenu-title,
|
|
8959
9566
|
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title {
|
|
8960
9567
|
left: 0;
|
|
8961
9568
|
padding: 0 calc((80px - 16px) / 2) !important;
|
|
8962
9569
|
text-overflow: clip;
|
|
8963
9570
|
}
|
|
8964
9571
|
.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-submenu-arrow,
|
|
8965
|
-
.ant-menu-inline-collapsed
|
|
8966
|
-
|
|
9572
|
+
.ant-menu-inline-collapsed
|
|
9573
|
+
> .ant-menu-item-group
|
|
9574
|
+
> .ant-menu-item-group-list
|
|
9575
|
+
> .ant-menu-item
|
|
9576
|
+
.ant-menu-submenu-arrow,
|
|
9577
|
+
.ant-menu-inline-collapsed
|
|
9578
|
+
> .ant-menu-item-group
|
|
9579
|
+
> .ant-menu-item-group-list
|
|
9580
|
+
> .ant-menu-submenu
|
|
9581
|
+
> .ant-menu-submenu-title
|
|
9582
|
+
.ant-menu-submenu-arrow,
|
|
8967
9583
|
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow {
|
|
8968
9584
|
display: none;
|
|
8969
9585
|
}
|
|
8970
9586
|
.ant-menu-inline-collapsed > .ant-menu-item .anticon,
|
|
8971
|
-
.ant-menu-inline-collapsed
|
|
8972
|
-
|
|
9587
|
+
.ant-menu-inline-collapsed
|
|
9588
|
+
> .ant-menu-item-group
|
|
9589
|
+
> .ant-menu-item-group-list
|
|
9590
|
+
> .ant-menu-item
|
|
9591
|
+
.anticon,
|
|
9592
|
+
.ant-menu-inline-collapsed
|
|
9593
|
+
> .ant-menu-item-group
|
|
9594
|
+
> .ant-menu-item-group-list
|
|
9595
|
+
> .ant-menu-submenu
|
|
9596
|
+
> .ant-menu-submenu-title
|
|
9597
|
+
.anticon,
|
|
8973
9598
|
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon {
|
|
8974
9599
|
margin: 0;
|
|
8975
9600
|
font-size: 16px;
|
|
8976
9601
|
line-height: 40px;
|
|
8977
9602
|
}
|
|
8978
9603
|
.ant-menu-inline-collapsed > .ant-menu-item .anticon + span,
|
|
8979
|
-
.ant-menu-inline-collapsed
|
|
8980
|
-
|
|
9604
|
+
.ant-menu-inline-collapsed
|
|
9605
|
+
> .ant-menu-item-group
|
|
9606
|
+
> .ant-menu-item-group-list
|
|
9607
|
+
> .ant-menu-item
|
|
9608
|
+
.anticon
|
|
9609
|
+
+ span,
|
|
9610
|
+
.ant-menu-inline-collapsed
|
|
9611
|
+
> .ant-menu-item-group
|
|
9612
|
+
> .ant-menu-item-group-list
|
|
9613
|
+
> .ant-menu-submenu
|
|
9614
|
+
> .ant-menu-submenu-title
|
|
9615
|
+
.anticon
|
|
9616
|
+
+ span,
|
|
8981
9617
|
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span {
|
|
8982
9618
|
display: inline-block;
|
|
8983
9619
|
max-width: 0;
|
|
@@ -9145,33 +9781,84 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
9145
9781
|
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
|
|
9146
9782
|
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
|
|
9147
9783
|
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
|
|
9148
|
-
.ant-menu-dark
|
|
9784
|
+
.ant-menu-dark
|
|
9785
|
+
.ant-menu-submenu-title:hover
|
|
9786
|
+
> .ant-menu-submenu-title:hover
|
|
9787
|
+
> .ant-menu-submenu-arrow {
|
|
9149
9788
|
opacity: 1;
|
|
9150
9789
|
}
|
|
9151
9790
|
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
|
|
9152
9791
|
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
|
|
9153
9792
|
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
|
|
9154
9793
|
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
|
|
9155
|
-
.ant-menu-dark
|
|
9156
|
-
.ant-menu-
|
|
9157
|
-
|
|
9158
|
-
|
|
9159
|
-
.ant-menu-dark
|
|
9160
|
-
.ant-menu-
|
|
9161
|
-
|
|
9162
|
-
|
|
9794
|
+
.ant-menu-dark
|
|
9795
|
+
.ant-menu-submenu-selected
|
|
9796
|
+
> .ant-menu-submenu-title
|
|
9797
|
+
> .ant-menu-submenu-arrow::after,
|
|
9798
|
+
.ant-menu-dark
|
|
9799
|
+
.ant-menu-submenu-title:hover
|
|
9800
|
+
> .ant-menu-submenu-title
|
|
9801
|
+
> .ant-menu-submenu-arrow::after,
|
|
9802
|
+
.ant-menu-dark
|
|
9803
|
+
.ant-menu-item:hover
|
|
9804
|
+
> .ant-menu-submenu-title:hover
|
|
9805
|
+
> .ant-menu-submenu-arrow::after,
|
|
9806
|
+
.ant-menu-dark
|
|
9807
|
+
.ant-menu-item-active
|
|
9808
|
+
> .ant-menu-submenu-title:hover
|
|
9809
|
+
> .ant-menu-submenu-arrow::after,
|
|
9810
|
+
.ant-menu-dark
|
|
9811
|
+
.ant-menu-submenu-active
|
|
9812
|
+
> .ant-menu-submenu-title:hover
|
|
9813
|
+
> .ant-menu-submenu-arrow::after,
|
|
9814
|
+
.ant-menu-dark
|
|
9815
|
+
.ant-menu-submenu-open
|
|
9816
|
+
> .ant-menu-submenu-title:hover
|
|
9817
|
+
> .ant-menu-submenu-arrow::after,
|
|
9818
|
+
.ant-menu-dark
|
|
9819
|
+
.ant-menu-submenu-selected
|
|
9820
|
+
> .ant-menu-submenu-title:hover
|
|
9821
|
+
> .ant-menu-submenu-arrow::after,
|
|
9822
|
+
.ant-menu-dark
|
|
9823
|
+
.ant-menu-submenu-title:hover
|
|
9824
|
+
> .ant-menu-submenu-title:hover
|
|
9825
|
+
> .ant-menu-submenu-arrow::after,
|
|
9163
9826
|
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
|
|
9164
9827
|
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
|
|
9165
9828
|
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
|
|
9166
9829
|
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
|
|
9167
|
-
.ant-menu-dark
|
|
9168
|
-
.ant-menu-
|
|
9169
|
-
|
|
9170
|
-
|
|
9171
|
-
.ant-menu-dark
|
|
9172
|
-
.ant-menu-
|
|
9173
|
-
|
|
9174
|
-
|
|
9830
|
+
.ant-menu-dark
|
|
9831
|
+
.ant-menu-submenu-selected
|
|
9832
|
+
> .ant-menu-submenu-title
|
|
9833
|
+
> .ant-menu-submenu-arrow::before,
|
|
9834
|
+
.ant-menu-dark
|
|
9835
|
+
.ant-menu-submenu-title:hover
|
|
9836
|
+
> .ant-menu-submenu-title
|
|
9837
|
+
> .ant-menu-submenu-arrow::before,
|
|
9838
|
+
.ant-menu-dark
|
|
9839
|
+
.ant-menu-item:hover
|
|
9840
|
+
> .ant-menu-submenu-title:hover
|
|
9841
|
+
> .ant-menu-submenu-arrow::before,
|
|
9842
|
+
.ant-menu-dark
|
|
9843
|
+
.ant-menu-item-active
|
|
9844
|
+
> .ant-menu-submenu-title:hover
|
|
9845
|
+
> .ant-menu-submenu-arrow::before,
|
|
9846
|
+
.ant-menu-dark
|
|
9847
|
+
.ant-menu-submenu-active
|
|
9848
|
+
> .ant-menu-submenu-title:hover
|
|
9849
|
+
> .ant-menu-submenu-arrow::before,
|
|
9850
|
+
.ant-menu-dark
|
|
9851
|
+
.ant-menu-submenu-open
|
|
9852
|
+
> .ant-menu-submenu-title:hover
|
|
9853
|
+
> .ant-menu-submenu-arrow::before,
|
|
9854
|
+
.ant-menu-dark
|
|
9855
|
+
.ant-menu-submenu-selected
|
|
9856
|
+
> .ant-menu-submenu-title:hover
|
|
9857
|
+
> .ant-menu-submenu-arrow::before,
|
|
9858
|
+
.ant-menu-dark
|
|
9859
|
+
.ant-menu-submenu-title:hover
|
|
9860
|
+
> .ant-menu-submenu-title:hover
|
|
9861
|
+
> .ant-menu-submenu-arrow::before {
|
|
9175
9862
|
background: #fff;
|
|
9176
9863
|
}
|
|
9177
9864
|
.ant-menu-dark .ant-menu-item:hover {
|
|
@@ -9210,9 +9897,15 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
9210
9897
|
color: rgba(255, 255, 255, 0.35) !important;
|
|
9211
9898
|
}
|
|
9212
9899
|
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
|
|
9213
|
-
.ant-menu-dark
|
|
9900
|
+
.ant-menu-dark
|
|
9901
|
+
.ant-menu-submenu-disabled
|
|
9902
|
+
> .ant-menu-submenu-title
|
|
9903
|
+
> .ant-menu-submenu-arrow::before,
|
|
9214
9904
|
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
|
|
9215
|
-
.ant-menu-dark
|
|
9905
|
+
.ant-menu-dark
|
|
9906
|
+
.ant-menu-submenu-disabled
|
|
9907
|
+
> .ant-menu-submenu-title
|
|
9908
|
+
> .ant-menu-submenu-arrow::after {
|
|
9216
9909
|
background: rgba(255, 255, 255, 0.35) !important;
|
|
9217
9910
|
}
|
|
9218
9911
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
@@ -9227,22 +9920,22 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
9227
9920
|
min-width: 100px;
|
|
9228
9921
|
max-width: 300px;
|
|
9229
9922
|
}
|
|
9230
|
-
[class*=tnt-handle-icon] a {
|
|
9923
|
+
[class*='tnt-handle-icon'] a {
|
|
9231
9924
|
display: block;
|
|
9232
9925
|
overflow: hidden;
|
|
9233
9926
|
white-space: nowrap;
|
|
9234
9927
|
text-overflow: ellipsis;
|
|
9235
9928
|
color: #17233d;
|
|
9236
9929
|
}
|
|
9237
|
-
[class*=tnt-handle-icon] > *:hover {
|
|
9930
|
+
[class*='tnt-handle-icon'] > *:hover {
|
|
9238
9931
|
color: #126bfb;
|
|
9239
9932
|
}
|
|
9240
|
-
[class*=tnt-handle-icon] > *:hover .icon-disabled,
|
|
9241
|
-
[class*=tnt-handle-icon] > *:hover .disabled {
|
|
9933
|
+
[class*='tnt-handle-icon'] > *:hover .icon-disabled,
|
|
9934
|
+
[class*='tnt-handle-icon'] > *:hover .disabled {
|
|
9242
9935
|
color: #babdc5;
|
|
9243
9936
|
}
|
|
9244
|
-
[class*=tnt-handle-icon] .icon-disabled,
|
|
9245
|
-
[class*=tnt-handle-icon] .disabled {
|
|
9937
|
+
[class*='tnt-handle-icon'] .icon-disabled,
|
|
9938
|
+
[class*='tnt-handle-icon'] .disabled {
|
|
9246
9939
|
cursor: not-allowed;
|
|
9247
9940
|
pointer-events: auto;
|
|
9248
9941
|
color: #babdc5;
|
|
@@ -9641,7 +10334,14 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
9641
10334
|
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow::before {
|
|
9642
10335
|
display: none;
|
|
9643
10336
|
}
|
|
9644
|
-
.ant-collapse
|
|
10337
|
+
.ant-collapse
|
|
10338
|
+
> .ant-collapse-item
|
|
10339
|
+
> .ant-collapse-header
|
|
10340
|
+
.ant-collapse-arrow
|
|
10341
|
+
.ant-collapse
|
|
10342
|
+
> .ant-collapse-item
|
|
10343
|
+
> .ant-collapse-header
|
|
10344
|
+
.ant-collapse-arrow-icon {
|
|
9645
10345
|
display: block;
|
|
9646
10346
|
}
|
|
9647
10347
|
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
|
|
@@ -9747,4 +10447,3 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
9747
10447
|
/* stylelint-disable no-duplicate-selectors */
|
|
9748
10448
|
/* stylelint-disable */
|
|
9749
10449
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
9750
|
-
|