@delon/theme 20.1.1 → 21.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/variable.css CHANGED
@@ -90,9 +90,6 @@ html {
90
90
  -ms-overflow-style: scrollbar;
91
91
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
92
92
  }
93
- @-ms-viewport {
94
- width: device-width;
95
- }
96
93
  body {
97
94
  margin: 0;
98
95
  color: rgba(0, 0, 0, 0.85);
@@ -352,10 +349,6 @@ template {
352
349
  [hidden] {
353
350
  display: none !important;
354
351
  }
355
- mark {
356
- padding: 0.2em;
357
- background-color: #feffe6;
358
- }
359
352
  ::selection {
360
353
  color: #fff;
361
354
  background: var(--ant-primary-color);
@@ -427,72 +420,6 @@ mark {
427
420
  display: inline-block;
428
421
  animation: loadingCircle 1s infinite linear;
429
422
  }
430
- .ant-fade-enter,
431
- .ant-fade-appear {
432
- animation-duration: 0.2s;
433
- animation-fill-mode: both;
434
- animation-play-state: paused;
435
- }
436
- .ant-fade-leave {
437
- animation-duration: 0.2s;
438
- animation-fill-mode: both;
439
- animation-play-state: paused;
440
- }
441
- .ant-fade-enter.ant-fade-enter-active,
442
- .ant-fade-appear.ant-fade-appear-active {
443
- animation-name: antFadeIn;
444
- animation-play-state: running;
445
- }
446
- .ant-fade-leave.ant-fade-leave-active {
447
- animation-name: antFadeOut;
448
- animation-play-state: running;
449
- pointer-events: none;
450
- }
451
- .ant-fade-enter,
452
- .ant-fade-appear {
453
- animation-duration: 0.2s;
454
- animation-fill-mode: both;
455
- animation-play-state: paused;
456
- }
457
- .ant-fade-leave {
458
- animation-duration: 0.2s;
459
- animation-fill-mode: both;
460
- animation-play-state: paused;
461
- }
462
- .ant-fade-enter.ant-fade-enter-active,
463
- .ant-fade-appear.ant-fade-appear-active {
464
- animation-name: antFadeIn;
465
- animation-play-state: running;
466
- }
467
- .ant-fade-leave.ant-fade-leave-active {
468
- animation-name: antFadeOut;
469
- animation-play-state: running;
470
- pointer-events: none;
471
- }
472
- .ant-fade-enter,
473
- .ant-fade-appear {
474
- opacity: 0;
475
- animation-timing-function: linear;
476
- }
477
- .ant-fade-leave {
478
- animation-timing-function: linear;
479
- }
480
- @keyframes antFadeIn {
481
- 0% {
482
- opacity: 0;
483
- }
484
- 100% {
485
- opacity: 1;
486
- }
487
- }
488
- @keyframes antFadeOut {
489
- 0% {
490
- opacity: 1;
491
- }
492
- 100% {
493
- opacity: 0;
494
- }
495
- }
496
423
  .ant-move-up-enter,
497
424
  .ant-move-up-appear {
498
425
  animation-duration: 0.2s;
@@ -1134,517 +1061,6 @@ html {
1134
1061
  opacity: 0;
1135
1062
  }
1136
1063
  }
1137
- .ant-zoom-enter,
1138
- .ant-zoom-appear {
1139
- animation-duration: 0.2s;
1140
- animation-fill-mode: both;
1141
- animation-play-state: paused;
1142
- }
1143
- .ant-zoom-leave {
1144
- animation-duration: 0.2s;
1145
- animation-fill-mode: both;
1146
- animation-play-state: paused;
1147
- }
1148
- .ant-zoom-enter.ant-zoom-enter-active,
1149
- .ant-zoom-appear.ant-zoom-appear-active {
1150
- animation-name: antZoomIn;
1151
- animation-play-state: running;
1152
- }
1153
- .ant-zoom-leave.ant-zoom-leave-active {
1154
- animation-name: antZoomOut;
1155
- animation-play-state: running;
1156
- pointer-events: none;
1157
- }
1158
- .ant-zoom-enter,
1159
- .ant-zoom-appear {
1160
- animation-duration: 0.2s;
1161
- animation-fill-mode: both;
1162
- animation-play-state: paused;
1163
- }
1164
- .ant-zoom-leave {
1165
- animation-duration: 0.2s;
1166
- animation-fill-mode: both;
1167
- animation-play-state: paused;
1168
- }
1169
- .ant-zoom-enter.ant-zoom-enter-active,
1170
- .ant-zoom-appear.ant-zoom-appear-active {
1171
- animation-name: antZoomIn;
1172
- animation-play-state: running;
1173
- }
1174
- .ant-zoom-leave.ant-zoom-leave-active {
1175
- animation-name: antZoomOut;
1176
- animation-play-state: running;
1177
- pointer-events: none;
1178
- }
1179
- .ant-zoom-enter,
1180
- .ant-zoom-appear {
1181
- transform: scale(0);
1182
- opacity: 0;
1183
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1184
- }
1185
- .ant-zoom-enter-prepare,
1186
- .ant-zoom-appear-prepare {
1187
- transform: none;
1188
- }
1189
- .ant-zoom-leave {
1190
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1191
- }
1192
- .ant-zoom-big-enter,
1193
- .ant-zoom-big-appear {
1194
- animation-duration: 0.2s;
1195
- animation-fill-mode: both;
1196
- animation-play-state: paused;
1197
- }
1198
- .ant-zoom-big-leave {
1199
- animation-duration: 0.2s;
1200
- animation-fill-mode: both;
1201
- animation-play-state: paused;
1202
- }
1203
- .ant-zoom-big-enter.ant-zoom-big-enter-active,
1204
- .ant-zoom-big-appear.ant-zoom-big-appear-active {
1205
- animation-name: antZoomBigIn;
1206
- animation-play-state: running;
1207
- }
1208
- .ant-zoom-big-leave.ant-zoom-big-leave-active {
1209
- animation-name: antZoomBigOut;
1210
- animation-play-state: running;
1211
- pointer-events: none;
1212
- }
1213
- .ant-zoom-big-enter,
1214
- .ant-zoom-big-appear {
1215
- animation-duration: 0.2s;
1216
- animation-fill-mode: both;
1217
- animation-play-state: paused;
1218
- }
1219
- .ant-zoom-big-leave {
1220
- animation-duration: 0.2s;
1221
- animation-fill-mode: both;
1222
- animation-play-state: paused;
1223
- }
1224
- .ant-zoom-big-enter.ant-zoom-big-enter-active,
1225
- .ant-zoom-big-appear.ant-zoom-big-appear-active {
1226
- animation-name: antZoomBigIn;
1227
- animation-play-state: running;
1228
- }
1229
- .ant-zoom-big-leave.ant-zoom-big-leave-active {
1230
- animation-name: antZoomBigOut;
1231
- animation-play-state: running;
1232
- pointer-events: none;
1233
- }
1234
- .ant-zoom-big-enter,
1235
- .ant-zoom-big-appear {
1236
- transform: scale(0);
1237
- opacity: 0;
1238
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1239
- }
1240
- .ant-zoom-big-enter-prepare,
1241
- .ant-zoom-big-appear-prepare {
1242
- transform: none;
1243
- }
1244
- .ant-zoom-big-leave {
1245
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1246
- }
1247
- .ant-zoom-big-fast-enter,
1248
- .ant-zoom-big-fast-appear {
1249
- animation-duration: 0.1s;
1250
- animation-fill-mode: both;
1251
- animation-play-state: paused;
1252
- }
1253
- .ant-zoom-big-fast-leave {
1254
- animation-duration: 0.1s;
1255
- animation-fill-mode: both;
1256
- animation-play-state: paused;
1257
- }
1258
- .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
1259
- .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
1260
- animation-name: antZoomBigIn;
1261
- animation-play-state: running;
1262
- }
1263
- .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
1264
- animation-name: antZoomBigOut;
1265
- animation-play-state: running;
1266
- pointer-events: none;
1267
- }
1268
- .ant-zoom-big-fast-enter,
1269
- .ant-zoom-big-fast-appear {
1270
- animation-duration: 0.1s;
1271
- animation-fill-mode: both;
1272
- animation-play-state: paused;
1273
- }
1274
- .ant-zoom-big-fast-leave {
1275
- animation-duration: 0.1s;
1276
- animation-fill-mode: both;
1277
- animation-play-state: paused;
1278
- }
1279
- .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
1280
- .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
1281
- animation-name: antZoomBigIn;
1282
- animation-play-state: running;
1283
- }
1284
- .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
1285
- animation-name: antZoomBigOut;
1286
- animation-play-state: running;
1287
- pointer-events: none;
1288
- }
1289
- .ant-zoom-big-fast-enter,
1290
- .ant-zoom-big-fast-appear {
1291
- transform: scale(0);
1292
- opacity: 0;
1293
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1294
- }
1295
- .ant-zoom-big-fast-enter-prepare,
1296
- .ant-zoom-big-fast-appear-prepare {
1297
- transform: none;
1298
- }
1299
- .ant-zoom-big-fast-leave {
1300
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1301
- }
1302
- .ant-zoom-up-enter,
1303
- .ant-zoom-up-appear {
1304
- animation-duration: 0.2s;
1305
- animation-fill-mode: both;
1306
- animation-play-state: paused;
1307
- }
1308
- .ant-zoom-up-leave {
1309
- animation-duration: 0.2s;
1310
- animation-fill-mode: both;
1311
- animation-play-state: paused;
1312
- }
1313
- .ant-zoom-up-enter.ant-zoom-up-enter-active,
1314
- .ant-zoom-up-appear.ant-zoom-up-appear-active {
1315
- animation-name: antZoomUpIn;
1316
- animation-play-state: running;
1317
- }
1318
- .ant-zoom-up-leave.ant-zoom-up-leave-active {
1319
- animation-name: antZoomUpOut;
1320
- animation-play-state: running;
1321
- pointer-events: none;
1322
- }
1323
- .ant-zoom-up-enter,
1324
- .ant-zoom-up-appear {
1325
- animation-duration: 0.2s;
1326
- animation-fill-mode: both;
1327
- animation-play-state: paused;
1328
- }
1329
- .ant-zoom-up-leave {
1330
- animation-duration: 0.2s;
1331
- animation-fill-mode: both;
1332
- animation-play-state: paused;
1333
- }
1334
- .ant-zoom-up-enter.ant-zoom-up-enter-active,
1335
- .ant-zoom-up-appear.ant-zoom-up-appear-active {
1336
- animation-name: antZoomUpIn;
1337
- animation-play-state: running;
1338
- }
1339
- .ant-zoom-up-leave.ant-zoom-up-leave-active {
1340
- animation-name: antZoomUpOut;
1341
- animation-play-state: running;
1342
- pointer-events: none;
1343
- }
1344
- .ant-zoom-up-enter,
1345
- .ant-zoom-up-appear {
1346
- transform: scale(0);
1347
- opacity: 0;
1348
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1349
- }
1350
- .ant-zoom-up-enter-prepare,
1351
- .ant-zoom-up-appear-prepare {
1352
- transform: none;
1353
- }
1354
- .ant-zoom-up-leave {
1355
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1356
- }
1357
- .ant-zoom-down-enter,
1358
- .ant-zoom-down-appear {
1359
- animation-duration: 0.2s;
1360
- animation-fill-mode: both;
1361
- animation-play-state: paused;
1362
- }
1363
- .ant-zoom-down-leave {
1364
- animation-duration: 0.2s;
1365
- animation-fill-mode: both;
1366
- animation-play-state: paused;
1367
- }
1368
- .ant-zoom-down-enter.ant-zoom-down-enter-active,
1369
- .ant-zoom-down-appear.ant-zoom-down-appear-active {
1370
- animation-name: antZoomDownIn;
1371
- animation-play-state: running;
1372
- }
1373
- .ant-zoom-down-leave.ant-zoom-down-leave-active {
1374
- animation-name: antZoomDownOut;
1375
- animation-play-state: running;
1376
- pointer-events: none;
1377
- }
1378
- .ant-zoom-down-enter,
1379
- .ant-zoom-down-appear {
1380
- animation-duration: 0.2s;
1381
- animation-fill-mode: both;
1382
- animation-play-state: paused;
1383
- }
1384
- .ant-zoom-down-leave {
1385
- animation-duration: 0.2s;
1386
- animation-fill-mode: both;
1387
- animation-play-state: paused;
1388
- }
1389
- .ant-zoom-down-enter.ant-zoom-down-enter-active,
1390
- .ant-zoom-down-appear.ant-zoom-down-appear-active {
1391
- animation-name: antZoomDownIn;
1392
- animation-play-state: running;
1393
- }
1394
- .ant-zoom-down-leave.ant-zoom-down-leave-active {
1395
- animation-name: antZoomDownOut;
1396
- animation-play-state: running;
1397
- pointer-events: none;
1398
- }
1399
- .ant-zoom-down-enter,
1400
- .ant-zoom-down-appear {
1401
- transform: scale(0);
1402
- opacity: 0;
1403
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1404
- }
1405
- .ant-zoom-down-enter-prepare,
1406
- .ant-zoom-down-appear-prepare {
1407
- transform: none;
1408
- }
1409
- .ant-zoom-down-leave {
1410
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1411
- }
1412
- .ant-zoom-left-enter,
1413
- .ant-zoom-left-appear {
1414
- animation-duration: 0.2s;
1415
- animation-fill-mode: both;
1416
- animation-play-state: paused;
1417
- }
1418
- .ant-zoom-left-leave {
1419
- animation-duration: 0.2s;
1420
- animation-fill-mode: both;
1421
- animation-play-state: paused;
1422
- }
1423
- .ant-zoom-left-enter.ant-zoom-left-enter-active,
1424
- .ant-zoom-left-appear.ant-zoom-left-appear-active {
1425
- animation-name: antZoomLeftIn;
1426
- animation-play-state: running;
1427
- }
1428
- .ant-zoom-left-leave.ant-zoom-left-leave-active {
1429
- animation-name: antZoomLeftOut;
1430
- animation-play-state: running;
1431
- pointer-events: none;
1432
- }
1433
- .ant-zoom-left-enter,
1434
- .ant-zoom-left-appear {
1435
- animation-duration: 0.2s;
1436
- animation-fill-mode: both;
1437
- animation-play-state: paused;
1438
- }
1439
- .ant-zoom-left-leave {
1440
- animation-duration: 0.2s;
1441
- animation-fill-mode: both;
1442
- animation-play-state: paused;
1443
- }
1444
- .ant-zoom-left-enter.ant-zoom-left-enter-active,
1445
- .ant-zoom-left-appear.ant-zoom-left-appear-active {
1446
- animation-name: antZoomLeftIn;
1447
- animation-play-state: running;
1448
- }
1449
- .ant-zoom-left-leave.ant-zoom-left-leave-active {
1450
- animation-name: antZoomLeftOut;
1451
- animation-play-state: running;
1452
- pointer-events: none;
1453
- }
1454
- .ant-zoom-left-enter,
1455
- .ant-zoom-left-appear {
1456
- transform: scale(0);
1457
- opacity: 0;
1458
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1459
- }
1460
- .ant-zoom-left-enter-prepare,
1461
- .ant-zoom-left-appear-prepare {
1462
- transform: none;
1463
- }
1464
- .ant-zoom-left-leave {
1465
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1466
- }
1467
- .ant-zoom-right-enter,
1468
- .ant-zoom-right-appear {
1469
- animation-duration: 0.2s;
1470
- animation-fill-mode: both;
1471
- animation-play-state: paused;
1472
- }
1473
- .ant-zoom-right-leave {
1474
- animation-duration: 0.2s;
1475
- animation-fill-mode: both;
1476
- animation-play-state: paused;
1477
- }
1478
- .ant-zoom-right-enter.ant-zoom-right-enter-active,
1479
- .ant-zoom-right-appear.ant-zoom-right-appear-active {
1480
- animation-name: antZoomRightIn;
1481
- animation-play-state: running;
1482
- }
1483
- .ant-zoom-right-leave.ant-zoom-right-leave-active {
1484
- animation-name: antZoomRightOut;
1485
- animation-play-state: running;
1486
- pointer-events: none;
1487
- }
1488
- .ant-zoom-right-enter,
1489
- .ant-zoom-right-appear {
1490
- animation-duration: 0.2s;
1491
- animation-fill-mode: both;
1492
- animation-play-state: paused;
1493
- }
1494
- .ant-zoom-right-leave {
1495
- animation-duration: 0.2s;
1496
- animation-fill-mode: both;
1497
- animation-play-state: paused;
1498
- }
1499
- .ant-zoom-right-enter.ant-zoom-right-enter-active,
1500
- .ant-zoom-right-appear.ant-zoom-right-appear-active {
1501
- animation-name: antZoomRightIn;
1502
- animation-play-state: running;
1503
- }
1504
- .ant-zoom-right-leave.ant-zoom-right-leave-active {
1505
- animation-name: antZoomRightOut;
1506
- animation-play-state: running;
1507
- pointer-events: none;
1508
- }
1509
- .ant-zoom-right-enter,
1510
- .ant-zoom-right-appear {
1511
- transform: scale(0);
1512
- opacity: 0;
1513
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1514
- }
1515
- .ant-zoom-right-enter-prepare,
1516
- .ant-zoom-right-appear-prepare {
1517
- transform: none;
1518
- }
1519
- .ant-zoom-right-leave {
1520
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1521
- }
1522
- @keyframes antZoomIn {
1523
- 0% {
1524
- transform: scale(0.2);
1525
- opacity: 0;
1526
- }
1527
- 100% {
1528
- transform: scale(1);
1529
- opacity: 1;
1530
- }
1531
- }
1532
- @keyframes antZoomOut {
1533
- 0% {
1534
- transform: scale(1);
1535
- }
1536
- 100% {
1537
- transform: scale(0.2);
1538
- opacity: 0;
1539
- }
1540
- }
1541
- @keyframes antZoomBigIn {
1542
- 0% {
1543
- transform: scale(0.8);
1544
- opacity: 0;
1545
- }
1546
- 100% {
1547
- transform: scale(1);
1548
- opacity: 1;
1549
- }
1550
- }
1551
- @keyframes antZoomBigOut {
1552
- 0% {
1553
- transform: scale(1);
1554
- }
1555
- 100% {
1556
- transform: scale(0.8);
1557
- opacity: 0;
1558
- }
1559
- }
1560
- @keyframes antZoomUpIn {
1561
- 0% {
1562
- transform: scale(0.8);
1563
- transform-origin: 50% 0%;
1564
- opacity: 0;
1565
- }
1566
- 100% {
1567
- transform: scale(1);
1568
- transform-origin: 50% 0%;
1569
- }
1570
- }
1571
- @keyframes antZoomUpOut {
1572
- 0% {
1573
- transform: scale(1);
1574
- transform-origin: 50% 0%;
1575
- }
1576
- 100% {
1577
- transform: scale(0.8);
1578
- transform-origin: 50% 0%;
1579
- opacity: 0;
1580
- }
1581
- }
1582
- @keyframes antZoomLeftIn {
1583
- 0% {
1584
- transform: scale(0.8);
1585
- transform-origin: 0% 50%;
1586
- opacity: 0;
1587
- }
1588
- 100% {
1589
- transform: scale(1);
1590
- transform-origin: 0% 50%;
1591
- }
1592
- }
1593
- @keyframes antZoomLeftOut {
1594
- 0% {
1595
- transform: scale(1);
1596
- transform-origin: 0% 50%;
1597
- }
1598
- 100% {
1599
- transform: scale(0.8);
1600
- transform-origin: 0% 50%;
1601
- opacity: 0;
1602
- }
1603
- }
1604
- @keyframes antZoomRightIn {
1605
- 0% {
1606
- transform: scale(0.8);
1607
- transform-origin: 100% 50%;
1608
- opacity: 0;
1609
- }
1610
- 100% {
1611
- transform: scale(1);
1612
- transform-origin: 100% 50%;
1613
- }
1614
- }
1615
- @keyframes antZoomRightOut {
1616
- 0% {
1617
- transform: scale(1);
1618
- transform-origin: 100% 50%;
1619
- }
1620
- 100% {
1621
- transform: scale(0.8);
1622
- transform-origin: 100% 50%;
1623
- opacity: 0;
1624
- }
1625
- }
1626
- @keyframes antZoomDownIn {
1627
- 0% {
1628
- transform: scale(0.8);
1629
- transform-origin: 50% 100%;
1630
- opacity: 0;
1631
- }
1632
- 100% {
1633
- transform: scale(1);
1634
- transform-origin: 50% 100%;
1635
- }
1636
- }
1637
- @keyframes antZoomDownOut {
1638
- 0% {
1639
- transform: scale(1);
1640
- transform-origin: 50% 100%;
1641
- }
1642
- 100% {
1643
- transform: scale(0.8);
1644
- transform-origin: 50% 100%;
1645
- opacity: 0;
1646
- }
1647
- }
1648
1064
  .ant-motion-collapse-legacy {
1649
1065
  overflow: hidden;
1650
1066
  }
@@ -1847,6 +1263,18 @@ html {
1847
1263
  .nz-animate-disabled.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
1848
1264
  transition: none;
1849
1265
  }
1266
+ .nz-animate-disabled.ant-tooltip,
1267
+ .nz-animate-disabled.ant-popover {
1268
+ animation: none;
1269
+ }
1270
+ .ant-tooltip.ant-zoom-big-fast-enter .ant-tooltip-arrow,
1271
+ .ant-tooltip.ant-zoom-big-fast-leave .ant-tooltip-arrow {
1272
+ will-change: transform;
1273
+ }
1274
+ .ant-popover.ant-zoom-big-enter .ant-popover-arrow,
1275
+ .ant-popover.ant-zoom-big-leave .ant-popover-arrow {
1276
+ will-change: transform;
1277
+ }
1850
1278
  /** antd: all components */
1851
1279
  .ant-affix {
1852
1280
  position: fixed;
@@ -2240,68 +1668,6 @@ nz-link {
2240
1668
  margin-right: 3px;
2241
1669
  margin-left: 0;
2242
1670
  }
2243
- .ant-back-top {
2244
- box-sizing: border-box;
2245
- margin: 0;
2246
- padding: 0;
2247
- color: rgba(0, 0, 0, 0.85);
2248
- font-size: 14px;
2249
- font-variant: tabular-nums;
2250
- line-height: 1.5715;
2251
- list-style: none;
2252
- font-feature-settings: 'tnum';
2253
- position: fixed;
2254
- right: 100px;
2255
- bottom: 50px;
2256
- z-index: 10;
2257
- width: 40px;
2258
- height: 40px;
2259
- cursor: pointer;
2260
- }
2261
- .ant-back-top:empty {
2262
- display: none;
2263
- }
2264
- .ant-back-top-rtl {
2265
- right: auto;
2266
- left: 100px;
2267
- direction: rtl;
2268
- }
2269
- .ant-back-top-content {
2270
- width: 40px;
2271
- height: 40px;
2272
- overflow: hidden;
2273
- color: #fff;
2274
- text-align: center;
2275
- background-color: rgba(0, 0, 0, 0.45);
2276
- border-radius: 20px;
2277
- transition: all 0.3s;
2278
- }
2279
- .ant-back-top-content:hover {
2280
- background-color: rgba(0, 0, 0, 0.85);
2281
- transition: all 0.3s;
2282
- }
2283
- .ant-back-top-icon {
2284
- font-size: 24px;
2285
- line-height: 40px;
2286
- }
2287
- @media screen and (max-width: 768px) {
2288
- .ant-back-top {
2289
- right: 60px;
2290
- }
2291
- .ant-back-top-rtl {
2292
- right: auto;
2293
- left: 60px;
2294
- }
2295
- }
2296
- @media screen and (max-width: 480px) {
2297
- .ant-back-top {
2298
- right: 20px;
2299
- }
2300
- .ant-back-top-rtl {
2301
- right: auto;
2302
- left: 20px;
2303
- }
2304
- }
2305
1671
  .ant-badge {
2306
1672
  box-sizing: border-box;
2307
1673
  margin: 0;
@@ -2601,16 +1967,7 @@ nz-link {
2601
1967
  border: 4px solid;
2602
1968
  transform: scaleY(0.75);
2603
1969
  transform-origin: top;
2604
- }
2605
- .ant-ribbon-corner::after {
2606
- position: absolute;
2607
- top: -4px;
2608
- left: -4px;
2609
- width: inherit;
2610
- height: inherit;
2611
- color: rgba(0, 0, 0, 0.25);
2612
- border: inherit;
2613
- content: '';
1970
+ filter: brightness(75%);
2614
1971
  }
2615
1972
  .ant-ribbon-color-pink {
2616
1973
  color: #eb2f96;
@@ -6373,48 +5730,48 @@ nz-comment-content {
6373
5730
  color: rgba(0, 0, 0, 0.25);
6374
5731
  }
6375
5732
  .ant-picker.ant-picker-borderless {
6376
- background-color: transparent !important;
6377
- border-color: transparent !important;
6378
- box-shadow: none !important;
5733
+ background-color: transparent;
5734
+ border-color: transparent;
5735
+ box-shadow: none;
6379
5736
  }
6380
5737
  .ant-picker.ant-picker-filled {
6381
- background-color: #f5f5f5 !important;
6382
- border-color: transparent !important;
6383
- box-shadow: none !important;
5738
+ background-color: #f5f5f5;
5739
+ border-color: transparent;
5740
+ box-shadow: none;
6384
5741
  }
6385
5742
  .ant-picker.ant-picker-filled:hover {
6386
- background-color: #f0f0f0 !important;
6387
- border-color: transparent !important;
6388
- box-shadow: none !important;
5743
+ background-color: #f0f0f0;
5744
+ border-color: transparent;
5745
+ box-shadow: none;
6389
5746
  }
6390
5747
  .ant-picker.ant-picker-filled:focus,
6391
5748
  .ant-picker.ant-picker-filled.ant-picker-focused {
6392
- border-color: var(--ant-primary-color-hover) !important;
6393
- box-shadow: 0 0 0 2px var(--ant-primary-color-outline) !important;
6394
- border-right-width: 1px !important;
6395
- outline: 0 !important;
6396
- background-color: transparent !important;
6397
- box-shadow: none !important;
5749
+ border-color: var(--ant-primary-color-hover);
5750
+ box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
5751
+ border-right-width: 1px;
5752
+ outline: 0;
5753
+ background-color: transparent;
5754
+ box-shadow: none;
6398
5755
  }
6399
5756
  .ant-input-rtl .ant-picker.ant-picker-filled:focus,
6400
5757
  .ant-input-rtl .ant-picker.ant-picker-filled.ant-picker-focused {
6401
- border-right-width: 0 !important;
5758
+ border-right-width: 0;
6402
5759
  border-left-width: 1px !important;
6403
5760
  }
6404
5761
  .ant-picker.ant-picker-filled.ant-picker-disabled,
6405
5762
  .ant-picker.ant-picker-filled.ant-picker[disabled] {
6406
- background-color: #f5f5f5 !important;
6407
- border-color: #d9d9d9 !important;
6408
- box-shadow: none !important;
6409
- cursor: not-allowed !important;
6410
- opacity: 1 !important;
6411
- pointer-events: none !important;
6412
- color: rgba(0, 0, 0, 0.25) !important;
5763
+ background-color: #f5f5f5;
5764
+ border-color: #d9d9d9;
5765
+ box-shadow: none;
5766
+ cursor: not-allowed;
5767
+ opacity: 1;
5768
+ pointer-events: none;
5769
+ color: rgba(0, 0, 0, 0.25);
6413
5770
  }
6414
5771
  .ant-picker.ant-picker-filled.ant-picker-disabled:hover,
6415
5772
  .ant-picker.ant-picker-filled.ant-picker[disabled]:hover {
6416
- border-color: #d9d9d9 !important;
6417
- border-right-width: 1px !important;
5773
+ border-color: #d9d9d9;
5774
+ border-right-width: 1px;
6418
5775
  }
6419
5776
  .ant-picker.ant-picker-underlined,
6420
5777
  .ant-picker.ant-picker-underlined:hover,
@@ -6422,10 +5779,13 @@ nz-comment-content {
6422
5779
  .ant-picker.ant-picker-underlined.ant-picker-focused,
6423
5780
  .ant-picker.ant-picker-underlined.ant-picker-disabled,
6424
5781
  .ant-picker.ant-picker-underlined.ant-picker[disabled] {
6425
- background-color: transparent !important;
6426
- border-width: 0 0 1px !important;
6427
- border-radius: 0 !important;
6428
- box-shadow: none !important;
5782
+ background-color: transparent;
5783
+ border-width: 0 0 1px;
5784
+ border-radius: 0;
5785
+ box-shadow: none;
5786
+ }
5787
+ .ant-picker.ant-picker-underlined:hover:not(.ant-picker-focused):not(:focus) {
5788
+ border-color: #d9d9d9;
6429
5789
  }
6430
5790
  .ant-picker-input {
6431
5791
  position: relative;
@@ -6514,67 +5874,66 @@ nz-comment-content {
6514
5874
  border-color: #d9d9d9;
6515
5875
  border-right-width: 1px;
6516
5876
  }
6517
- .ant-picker-input > input-borderless.ant-picker-input > input,
6518
- .ant-picker-input > input-borderless.ant-picker-input > input:hover,
6519
- .ant-picker-input > input-borderless.ant-picker-input > input:focus,
6520
- .ant-picker-input > input-borderless.ant-picker-input > input-focused,
6521
- .ant-picker-input > input-borderless.ant-picker-input > input-disabled,
6522
- .ant-picker-input > input-borderless.ant-picker-input > input[disabled] {
6523
- background-color: transparent !important;
6524
- border: none !important;
6525
- box-shadow: none !important;
5877
+ .ant-picker-input > input.ant-picker-input > input-borderless,
5878
+ .ant-picker-input > input.ant-picker-input > input-borderless:hover,
5879
+ .ant-picker-input > input.ant-picker-input > input-borderless:focus,
5880
+ .ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input-focused,
5881
+ .ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input-disabled,
5882
+ .ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input[disabled] {
5883
+ background-color: transparent;
5884
+ border: none;
5885
+ box-shadow: none;
6526
5886
  }
6527
- .ant-picker-input > input-filled {
6528
- background-color: #f5f5f5 !important;
5887
+ .ant-picker-input > input.ant-picker-input > input-filled {
5888
+ background-color: #f5f5f5;
6529
5889
  border-color: transparent;
6530
- box-shadow: none !important;
5890
+ box-shadow: none;
6531
5891
  }
6532
- .ant-picker-input > input-filled:hover.ant-picker-input > input:not(.ant-picker-input > input-focused) {
6533
- background-color: #f0f0f0 !important;
6534
- border-color: transparent !important;
5892
+ .ant-picker-input > input.ant-picker-input > input-filled:hover {
5893
+ background-color: #f0f0f0;
6535
5894
  }
6536
- .ant-picker-input > input-filled:focus,
6537
- .ant-picker-input > input-filled.ant-picker-input > input-focused {
5895
+ .ant-picker-input > input.ant-picker-input > input-filled:focus,
5896
+ .ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-focused {
6538
5897
  border-color: var(--ant-primary-color-hover);
6539
5898
  box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
6540
5899
  border-right-width: 1px;
6541
5900
  outline: 0;
6542
- background-color: transparent !important;
6543
- box-shadow: none !important;
5901
+ background-color: transparent;
5902
+ box-shadow: none;
6544
5903
  }
6545
- .ant-input-rtl .ant-picker-input > input-filled:focus,
6546
- .ant-input-rtl .ant-picker-input > input-filled.ant-picker-input > input-focused {
5904
+ .ant-input-rtl .ant-picker-input > input.ant-picker-input > input-filled:focus,
5905
+ .ant-input-rtl .ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-focused {
6547
5906
  border-right-width: 0;
6548
5907
  border-left-width: 1px !important;
6549
5908
  }
6550
- .ant-picker-input > input-filled.ant-picker-input > input-disabled,
6551
- .ant-picker-input > input-filled.ant-picker-input > input[disabled] {
6552
- background-color: #f5f5f5 !important;
6553
- border-color: #d9d9d9 !important;
6554
- box-shadow: none !important;
6555
- cursor: not-allowed !important;
6556
- opacity: 1 !important;
6557
- pointer-events: none !important;
6558
- color: rgba(0, 0, 0, 0.25) !important;
5909
+ .ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-disabled,
5910
+ .ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input[disabled] {
5911
+ background-color: #f5f5f5;
5912
+ border-color: #d9d9d9;
5913
+ box-shadow: none;
5914
+ cursor: not-allowed;
5915
+ opacity: 1;
5916
+ pointer-events: none;
5917
+ color: rgba(0, 0, 0, 0.25);
6559
5918
  }
6560
- .ant-picker-input > input-filled.ant-picker-input > input-disabled:hover,
6561
- .ant-picker-input > input-filled.ant-picker-input > input[disabled]:hover {
6562
- border-color: #d9d9d9 !important;
6563
- border-right-width: 1px !important;
6564
- }
6565
- .ant-picker-input > input-underlined.ant-picker-input > input,
6566
- .ant-picker-input > input-underlined:hover,
6567
- .ant-picker-input > input-underlined:focus,
6568
- .ant-picker-input > input-underlined.ant-picker-input > input-focused,
6569
- .ant-picker-input > input-underlined.ant-picker-input > input-disabled,
6570
- .ant-picker-input > input-underlined.ant-picker-input > input[disabled] {
6571
- background-color: transparent !important;
6572
- border-width: 0 0 1px !important;
6573
- border-radius: 0 !important;
6574
- box-shadow: none !important;
5919
+ .ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-disabled:hover,
5920
+ .ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input[disabled]:hover {
5921
+ border-color: #d9d9d9;
5922
+ border-right-width: 1px;
6575
5923
  }
6576
- .ant-picker-input > input-underlined:hover.ant-picker-input > input:not(.ant-picker-input > input-focused) {
6577
- border-color: #d9d9d9 !important;
5924
+ .ant-picker-input > input.ant-picker-input > input-underlined,
5925
+ .ant-picker-input > input.ant-picker-input > input-underlined:hover,
5926
+ .ant-picker-input > input.ant-picker-input > input-underlined:focus,
5927
+ .ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input-focused,
5928
+ .ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input-disabled,
5929
+ .ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input[disabled] {
5930
+ background-color: transparent;
5931
+ border-width: 0 0 1px;
5932
+ border-radius: 0;
5933
+ box-shadow: none;
5934
+ }
5935
+ .ant-picker-input > input.ant-picker-input > input-underlined:hover:not(.ant-picker-input > input-focused):not(:focus) {
5936
+ border-color: #d9d9d9;
6578
5937
  }
6579
5938
  textarea.ant-picker-input > input {
6580
5939
  max-width: 100%;
@@ -7954,10 +7313,7 @@ nz-descriptions {
7954
7313
  }
7955
7314
  .ant-drawer {
7956
7315
  position: fixed;
7957
- top: 0;
7958
- right: 0;
7959
- bottom: 0;
7960
- left: 0;
7316
+ inset: 0;
7961
7317
  z-index: 1000;
7962
7318
  pointer-events: none;
7963
7319
  }
@@ -7966,10 +7322,7 @@ nz-descriptions {
7966
7322
  }
7967
7323
  .ant-drawer-mask {
7968
7324
  position: absolute;
7969
- top: 0;
7970
- right: 0;
7971
- bottom: 0;
7972
- left: 0;
7325
+ inset: 0;
7973
7326
  z-index: 1000;
7974
7327
  background: rgba(0, 0, 0, 0.45);
7975
7328
  pointer-events: auto;
@@ -8206,6 +7559,18 @@ nz-descriptions {
8206
7559
  .ant-drawer-panel-motion-bottom-leave-active {
8207
7560
  transform: translateY(100%);
8208
7561
  }
7562
+ .ant-drawer-mask-motion-enter {
7563
+ animation-name: antFadeIn;
7564
+ animation-duration: 0.3s;
7565
+ animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
7566
+ animation-fill-mode: both;
7567
+ }
7568
+ .ant-drawer-mask-motion-leave {
7569
+ animation-name: antFadeOut;
7570
+ animation-duration: 0.3s;
7571
+ animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
7572
+ animation-fill-mode: both;
7573
+ }
8209
7574
  .ant-drawer-rtl {
8210
7575
  direction: rtl;
8211
7576
  }
@@ -14216,67 +13581,66 @@ nz-empty {
14216
13581
  border-color: #d9d9d9;
14217
13582
  border-right-width: 1px;
14218
13583
  }
14219
- .ant-input-affix-wrapper-borderless.ant-input-affix-wrapper,
14220
- .ant-input-affix-wrapper-borderless.ant-input-affix-wrapper:hover,
14221
- .ant-input-affix-wrapper-borderless.ant-input-affix-wrapper:focus,
14222
- .ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-focused,
14223
- .ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-disabled,
14224
- .ant-input-affix-wrapper-borderless.ant-input-affix-wrapper[disabled] {
14225
- background-color: transparent !important;
14226
- border: none !important;
14227
- box-shadow: none !important;
13584
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-borderless,
13585
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-borderless:hover,
13586
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-borderless:focus,
13587
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-focused,
13588
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-disabled,
13589
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper[disabled] {
13590
+ background-color: transparent;
13591
+ border: none;
13592
+ box-shadow: none;
14228
13593
  }
14229
- .ant-input-affix-wrapper-filled {
14230
- background-color: #f5f5f5 !important;
13594
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-filled {
13595
+ background-color: #f5f5f5;
14231
13596
  border-color: transparent;
14232
- box-shadow: none !important;
13597
+ box-shadow: none;
14233
13598
  }
14234
- .ant-input-affix-wrapper-filled:hover.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-focused) {
14235
- background-color: #f0f0f0 !important;
14236
- border-color: transparent !important;
13599
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-filled:hover {
13600
+ background-color: #f0f0f0;
14237
13601
  }
14238
- .ant-input-affix-wrapper-filled:focus,
14239
- .ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
13602
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-filled:focus,
13603
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
14240
13604
  border-color: var(--ant-primary-color-hover);
14241
13605
  box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
14242
13606
  border-right-width: 1px;
14243
13607
  outline: 0;
14244
- background-color: transparent !important;
14245
- box-shadow: none !important;
13608
+ background-color: transparent;
13609
+ box-shadow: none;
14246
13610
  }
14247
- .ant-input-rtl .ant-input-affix-wrapper-filled:focus,
14248
- .ant-input-rtl .ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
13611
+ .ant-input-rtl .ant-input-affix-wrapper.ant-input-affix-wrapper-filled:focus,
13612
+ .ant-input-rtl .ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
14249
13613
  border-right-width: 0;
14250
13614
  border-left-width: 1px !important;
14251
13615
  }
14252
- .ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled,
14253
- .ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled] {
14254
- background-color: #f5f5f5 !important;
14255
- border-color: #d9d9d9 !important;
14256
- box-shadow: none !important;
14257
- cursor: not-allowed !important;
14258
- opacity: 1 !important;
14259
- pointer-events: none !important;
14260
- color: rgba(0, 0, 0, 0.25) !important;
13616
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled,
13617
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled] {
13618
+ background-color: #f5f5f5;
13619
+ border-color: #d9d9d9;
13620
+ box-shadow: none;
13621
+ cursor: not-allowed;
13622
+ opacity: 1;
13623
+ pointer-events: none;
13624
+ color: rgba(0, 0, 0, 0.25);
14261
13625
  }
14262
- .ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled:hover,
14263
- .ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled]:hover {
14264
- border-color: #d9d9d9 !important;
14265
- border-right-width: 1px !important;
14266
- }
14267
- .ant-input-affix-wrapper-underlined.ant-input-affix-wrapper,
14268
- .ant-input-affix-wrapper-underlined:hover,
14269
- .ant-input-affix-wrapper-underlined:focus,
14270
- .ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-focused,
14271
- .ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-disabled,
14272
- .ant-input-affix-wrapper-underlined.ant-input-affix-wrapper[disabled] {
14273
- background-color: transparent !important;
14274
- border-width: 0 0 1px !important;
14275
- border-radius: 0 !important;
14276
- box-shadow: none !important;
13626
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled:hover,
13627
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled]:hover {
13628
+ border-color: #d9d9d9;
13629
+ border-right-width: 1px;
14277
13630
  }
14278
- .ant-input-affix-wrapper-underlined:hover.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-focused) {
14279
- border-color: #d9d9d9 !important;
13631
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-underlined,
13632
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:hover,
13633
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:focus,
13634
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-focused,
13635
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-disabled,
13636
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper[disabled] {
13637
+ background-color: transparent;
13638
+ border-width: 0 0 1px;
13639
+ border-radius: 0;
13640
+ box-shadow: none;
13641
+ }
13642
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:hover:not(.ant-input-affix-wrapper-focused):not(:focus) {
13643
+ border-color: #d9d9d9;
14280
13644
  }
14281
13645
  textarea.ant-input-affix-wrapper {
14282
13646
  max-width: 100%;
@@ -14553,67 +13917,66 @@ textarea.ant-input-affix-wrapper {
14553
13917
  border-color: #d9d9d9;
14554
13918
  border-right-width: 1px;
14555
13919
  }
14556
- .ant-input-borderless.ant-input,
14557
- .ant-input-borderless.ant-input:hover,
14558
- .ant-input-borderless.ant-input:focus,
14559
- .ant-input-borderless.ant-input-focused,
14560
- .ant-input-borderless.ant-input-disabled,
14561
- .ant-input-borderless.ant-input[disabled] {
14562
- background-color: transparent !important;
14563
- border: none !important;
14564
- box-shadow: none !important;
13920
+ .ant-input.ant-input-borderless,
13921
+ .ant-input.ant-input-borderless:hover,
13922
+ .ant-input.ant-input-borderless:focus,
13923
+ .ant-input.ant-input-borderless.ant-input-focused,
13924
+ .ant-input.ant-input-borderless.ant-input-disabled,
13925
+ .ant-input.ant-input-borderless.ant-input[disabled] {
13926
+ background-color: transparent;
13927
+ border: none;
13928
+ box-shadow: none;
14565
13929
  }
14566
- .ant-input-filled {
14567
- background-color: #f5f5f5 !important;
13930
+ .ant-input.ant-input-filled {
13931
+ background-color: #f5f5f5;
14568
13932
  border-color: transparent;
14569
- box-shadow: none !important;
13933
+ box-shadow: none;
14570
13934
  }
14571
- .ant-input-filled:hover.ant-input:not(.ant-input-focused) {
14572
- background-color: #f0f0f0 !important;
14573
- border-color: transparent !important;
13935
+ .ant-input.ant-input-filled:hover {
13936
+ background-color: #f0f0f0;
14574
13937
  }
14575
- .ant-input-filled:focus,
14576
- .ant-input-filled.ant-input-focused {
13938
+ .ant-input.ant-input-filled:focus,
13939
+ .ant-input.ant-input-filled.ant-input-focused {
14577
13940
  border-color: var(--ant-primary-color-hover);
14578
13941
  box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
14579
13942
  border-right-width: 1px;
14580
13943
  outline: 0;
14581
- background-color: transparent !important;
14582
- box-shadow: none !important;
13944
+ background-color: transparent;
13945
+ box-shadow: none;
14583
13946
  }
14584
- .ant-input-rtl .ant-input-filled:focus,
14585
- .ant-input-rtl .ant-input-filled.ant-input-focused {
13947
+ .ant-input-rtl .ant-input.ant-input-filled:focus,
13948
+ .ant-input-rtl .ant-input.ant-input-filled.ant-input-focused {
14586
13949
  border-right-width: 0;
14587
13950
  border-left-width: 1px !important;
14588
13951
  }
14589
- .ant-input-filled.ant-input-disabled,
14590
- .ant-input-filled.ant-input[disabled] {
14591
- background-color: #f5f5f5 !important;
14592
- border-color: #d9d9d9 !important;
14593
- box-shadow: none !important;
14594
- cursor: not-allowed !important;
14595
- opacity: 1 !important;
14596
- pointer-events: none !important;
14597
- color: rgba(0, 0, 0, 0.25) !important;
13952
+ .ant-input.ant-input-filled.ant-input-disabled,
13953
+ .ant-input.ant-input-filled.ant-input[disabled] {
13954
+ background-color: #f5f5f5;
13955
+ border-color: #d9d9d9;
13956
+ box-shadow: none;
13957
+ cursor: not-allowed;
13958
+ opacity: 1;
13959
+ pointer-events: none;
13960
+ color: rgba(0, 0, 0, 0.25);
14598
13961
  }
14599
- .ant-input-filled.ant-input-disabled:hover,
14600
- .ant-input-filled.ant-input[disabled]:hover {
14601
- border-color: #d9d9d9 !important;
14602
- border-right-width: 1px !important;
14603
- }
14604
- .ant-input-underlined.ant-input,
14605
- .ant-input-underlined:hover,
14606
- .ant-input-underlined:focus,
14607
- .ant-input-underlined.ant-input-focused,
14608
- .ant-input-underlined.ant-input-disabled,
14609
- .ant-input-underlined.ant-input[disabled] {
14610
- background-color: transparent !important;
14611
- border-width: 0 0 1px !important;
14612
- border-radius: 0 !important;
14613
- box-shadow: none !important;
13962
+ .ant-input.ant-input-filled.ant-input-disabled:hover,
13963
+ .ant-input.ant-input-filled.ant-input[disabled]:hover {
13964
+ border-color: #d9d9d9;
13965
+ border-right-width: 1px;
14614
13966
  }
14615
- .ant-input-underlined:hover.ant-input:not(.ant-input-focused) {
14616
- border-color: #d9d9d9 !important;
13967
+ .ant-input.ant-input-underlined,
13968
+ .ant-input.ant-input-underlined:hover,
13969
+ .ant-input.ant-input-underlined:focus,
13970
+ .ant-input.ant-input-underlined.ant-input-focused,
13971
+ .ant-input.ant-input-underlined.ant-input-disabled,
13972
+ .ant-input.ant-input-underlined.ant-input[disabled] {
13973
+ background-color: transparent;
13974
+ border-width: 0 0 1px;
13975
+ border-radius: 0;
13976
+ box-shadow: none;
13977
+ }
13978
+ .ant-input.ant-input-underlined:hover:not(.ant-input-focused):not(:focus) {
13979
+ border-color: #d9d9d9;
14617
13980
  }
14618
13981
  textarea.ant-input {
14619
13982
  max-width: 100%;
@@ -14999,14 +14362,42 @@ textarea.ant-input {
14999
14362
  text-align: start;
15000
14363
  vertical-align: top;
15001
14364
  }
15002
- .ant-input-password-icon.anticon {
14365
+ .ant-input-group-wrapper:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input-compact-item .ant-input,
14366
+ .ant-input-group-wrapper:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input-compact-item .ant-input-group-addon {
14367
+ border-radius: 0;
14368
+ }
14369
+ .ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-first-item .ant-input,
14370
+ .ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-first-item .ant-input-group-addon {
14371
+ border-start-end-radius: 0;
14372
+ border-end-end-radius: 0;
14373
+ }
14374
+ .ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-last-item .ant-input,
14375
+ .ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-last-item .ant-input-group-addon {
14376
+ border-start-start-radius: 0;
14377
+ border-end-start-radius: 0;
14378
+ }
14379
+ .ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-item .ant-input-affix-wrapper {
14380
+ border-start-end-radius: 0;
14381
+ border-end-end-radius: 0;
14382
+ }
14383
+ .ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-item .ant-input-affix-wrapper {
14384
+ border-start-start-radius: 0;
14385
+ border-end-start-radius: 0;
14386
+ }
14387
+ .ant-input-password-icon {
15003
14388
  color: rgba(0, 0, 0, 0.45);
15004
14389
  cursor: pointer;
15005
14390
  transition: all 0.3s;
15006
14391
  }
15007
- .ant-input-password-icon.anticon:hover {
14392
+ .ant-input-password-icon:hover {
15008
14393
  color: rgba(0, 0, 0, 0.85);
15009
14394
  }
14395
+ .ant-input-disabled .ant-input-password-icon {
14396
+ cursor: not-allowed;
14397
+ }
14398
+ .ant-input-disabled .ant-input-password-icon:hover {
14399
+ color: rgba(0, 0, 0, 0.45);
14400
+ }
15010
14401
  .ant-input[type='color'] {
15011
14402
  height: 32px;
15012
14403
  }
@@ -15717,67 +15108,66 @@ nz-form-item-feedback-icon.ant-input-suffix {
15717
15108
  border-color: #d9d9d9;
15718
15109
  border-right-width: 1px;
15719
15110
  }
15720
- .ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper,
15721
- .ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper:hover,
15722
- .ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper:focus,
15723
- .ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-focused,
15724
- .ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-disabled,
15725
- .ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper[disabled] {
15726
- background-color: transparent !important;
15727
- border: none !important;
15728
- box-shadow: none !important;
15111
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless,
15112
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless:hover,
15113
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless:focus,
15114
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-focused,
15115
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-disabled,
15116
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper[disabled] {
15117
+ background-color: transparent;
15118
+ border: none;
15119
+ box-shadow: none;
15729
15120
  }
15730
- .ant-input-number-affix-wrapper-filled {
15731
- background-color: #f5f5f5 !important;
15121
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled {
15122
+ background-color: #f5f5f5;
15732
15123
  border-color: transparent;
15733
- box-shadow: none !important;
15124
+ box-shadow: none;
15734
15125
  }
15735
- .ant-input-number-affix-wrapper-filled:hover.ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-focused) {
15736
- background-color: #f0f0f0 !important;
15737
- border-color: transparent !important;
15126
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:hover {
15127
+ background-color: #f0f0f0;
15738
15128
  }
15739
- .ant-input-number-affix-wrapper-filled:focus,
15740
- .ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
15129
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:focus,
15130
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
15741
15131
  border-color: var(--ant-primary-color-hover);
15742
15132
  box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
15743
15133
  border-right-width: 1px;
15744
15134
  outline: 0;
15745
- background-color: transparent !important;
15746
- box-shadow: none !important;
15135
+ background-color: transparent;
15136
+ box-shadow: none;
15747
15137
  }
15748
- .ant-input-rtl .ant-input-number-affix-wrapper-filled:focus,
15749
- .ant-input-rtl .ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
15138
+ .ant-input-rtl .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:focus,
15139
+ .ant-input-rtl .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
15750
15140
  border-right-width: 0;
15751
15141
  border-left-width: 1px !important;
15752
15142
  }
15753
- .ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled,
15754
- .ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled] {
15755
- background-color: #f5f5f5 !important;
15756
- border-color: #d9d9d9 !important;
15757
- box-shadow: none !important;
15758
- cursor: not-allowed !important;
15759
- opacity: 1 !important;
15760
- pointer-events: none !important;
15761
- color: rgba(0, 0, 0, 0.25) !important;
15143
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled,
15144
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled] {
15145
+ background-color: #f5f5f5;
15146
+ border-color: #d9d9d9;
15147
+ box-shadow: none;
15148
+ cursor: not-allowed;
15149
+ opacity: 1;
15150
+ pointer-events: none;
15151
+ color: rgba(0, 0, 0, 0.25);
15762
15152
  }
15763
- .ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled:hover,
15764
- .ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled]:hover {
15765
- border-color: #d9d9d9 !important;
15766
- border-right-width: 1px !important;
15767
- }
15768
- .ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper,
15769
- .ant-input-number-affix-wrapper-underlined:hover,
15770
- .ant-input-number-affix-wrapper-underlined:focus,
15771
- .ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-focused,
15772
- .ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-disabled,
15773
- .ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper[disabled] {
15774
- background-color: transparent !important;
15775
- border-width: 0 0 1px !important;
15776
- border-radius: 0 !important;
15777
- box-shadow: none !important;
15153
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled:hover,
15154
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled]:hover {
15155
+ border-color: #d9d9d9;
15156
+ border-right-width: 1px;
15778
15157
  }
15779
- .ant-input-number-affix-wrapper-underlined:hover.ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-focused) {
15780
- border-color: #d9d9d9 !important;
15158
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined,
15159
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:hover,
15160
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:focus,
15161
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-focused,
15162
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-disabled,
15163
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper[disabled] {
15164
+ background-color: transparent;
15165
+ border-width: 0 0 1px;
15166
+ border-radius: 0;
15167
+ box-shadow: none;
15168
+ }
15169
+ .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:hover:not(.ant-input-number-affix-wrapper-focused):not(:focus) {
15170
+ border-color: #d9d9d9;
15781
15171
  }
15782
15172
  textarea.ant-input-number-affix-wrapper {
15783
15173
  max-width: 100%;
@@ -16016,67 +15406,66 @@ textarea.ant-input-number-affix-wrapper {
16016
15406
  border-color: #d9d9d9;
16017
15407
  border-right-width: 1px;
16018
15408
  }
16019
- .ant-input-number-borderless.ant-input-number,
16020
- .ant-input-number-borderless.ant-input-number:hover,
16021
- .ant-input-number-borderless.ant-input-number:focus,
16022
- .ant-input-number-borderless.ant-input-number-focused,
16023
- .ant-input-number-borderless.ant-input-number-disabled,
16024
- .ant-input-number-borderless.ant-input-number[disabled] {
16025
- background-color: transparent !important;
16026
- border: none !important;
16027
- box-shadow: none !important;
15409
+ .ant-input-number.ant-input-number-borderless,
15410
+ .ant-input-number.ant-input-number-borderless:hover,
15411
+ .ant-input-number.ant-input-number-borderless:focus,
15412
+ .ant-input-number.ant-input-number-borderless.ant-input-number-focused,
15413
+ .ant-input-number.ant-input-number-borderless.ant-input-number-disabled,
15414
+ .ant-input-number.ant-input-number-borderless.ant-input-number[disabled] {
15415
+ background-color: transparent;
15416
+ border: none;
15417
+ box-shadow: none;
16028
15418
  }
16029
- .ant-input-number-filled {
16030
- background-color: #f5f5f5 !important;
15419
+ .ant-input-number.ant-input-number-filled {
15420
+ background-color: #f5f5f5;
16031
15421
  border-color: transparent;
16032
- box-shadow: none !important;
15422
+ box-shadow: none;
16033
15423
  }
16034
- .ant-input-number-filled:hover.ant-input-number:not(.ant-input-number-focused) {
16035
- background-color: #f0f0f0 !important;
16036
- border-color: transparent !important;
15424
+ .ant-input-number.ant-input-number-filled:hover {
15425
+ background-color: #f0f0f0;
16037
15426
  }
16038
- .ant-input-number-filled:focus,
16039
- .ant-input-number-filled.ant-input-number-focused {
15427
+ .ant-input-number.ant-input-number-filled:focus,
15428
+ .ant-input-number.ant-input-number-filled.ant-input-number-focused {
16040
15429
  border-color: var(--ant-primary-color-hover);
16041
15430
  box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
16042
15431
  border-right-width: 1px;
16043
15432
  outline: 0;
16044
- background-color: transparent !important;
16045
- box-shadow: none !important;
15433
+ background-color: transparent;
15434
+ box-shadow: none;
16046
15435
  }
16047
- .ant-input-rtl .ant-input-number-filled:focus,
16048
- .ant-input-rtl .ant-input-number-filled.ant-input-number-focused {
15436
+ .ant-input-rtl .ant-input-number.ant-input-number-filled:focus,
15437
+ .ant-input-rtl .ant-input-number.ant-input-number-filled.ant-input-number-focused {
16049
15438
  border-right-width: 0;
16050
15439
  border-left-width: 1px !important;
16051
15440
  }
16052
- .ant-input-number-filled.ant-input-number-disabled,
16053
- .ant-input-number-filled.ant-input-number[disabled] {
16054
- background-color: #f5f5f5 !important;
16055
- border-color: #d9d9d9 !important;
16056
- box-shadow: none !important;
16057
- cursor: not-allowed !important;
16058
- opacity: 1 !important;
16059
- pointer-events: none !important;
16060
- color: rgba(0, 0, 0, 0.25) !important;
15441
+ .ant-input-number.ant-input-number-filled.ant-input-number-disabled,
15442
+ .ant-input-number.ant-input-number-filled.ant-input-number[disabled] {
15443
+ background-color: #f5f5f5;
15444
+ border-color: #d9d9d9;
15445
+ box-shadow: none;
15446
+ cursor: not-allowed;
15447
+ opacity: 1;
15448
+ pointer-events: none;
15449
+ color: rgba(0, 0, 0, 0.25);
16061
15450
  }
16062
- .ant-input-number-filled.ant-input-number-disabled:hover,
16063
- .ant-input-number-filled.ant-input-number[disabled]:hover {
16064
- border-color: #d9d9d9 !important;
16065
- border-right-width: 1px !important;
16066
- }
16067
- .ant-input-number-underlined.ant-input-number,
16068
- .ant-input-number-underlined:hover,
16069
- .ant-input-number-underlined:focus,
16070
- .ant-input-number-underlined.ant-input-number-focused,
16071
- .ant-input-number-underlined.ant-input-number-disabled,
16072
- .ant-input-number-underlined.ant-input-number[disabled] {
16073
- background-color: transparent !important;
16074
- border-width: 0 0 1px !important;
16075
- border-radius: 0 !important;
16076
- box-shadow: none !important;
15451
+ .ant-input-number.ant-input-number-filled.ant-input-number-disabled:hover,
15452
+ .ant-input-number.ant-input-number-filled.ant-input-number[disabled]:hover {
15453
+ border-color: #d9d9d9;
15454
+ border-right-width: 1px;
16077
15455
  }
16078
- .ant-input-number-underlined:hover.ant-input-number:not(.ant-input-number-focused) {
16079
- border-color: #d9d9d9 !important;
15456
+ .ant-input-number.ant-input-number-underlined,
15457
+ .ant-input-number.ant-input-number-underlined:hover,
15458
+ .ant-input-number.ant-input-number-underlined:focus,
15459
+ .ant-input-number.ant-input-number-underlined.ant-input-number-focused,
15460
+ .ant-input-number.ant-input-number-underlined.ant-input-number-disabled,
15461
+ .ant-input-number.ant-input-number-underlined.ant-input-number[disabled] {
15462
+ background-color: transparent;
15463
+ border-width: 0 0 1px;
15464
+ border-radius: 0;
15465
+ box-shadow: none;
15466
+ }
15467
+ .ant-input-number.ant-input-number-underlined:hover:not(.ant-input-number-focused):not(:focus) {
15468
+ border-color: #d9d9d9;
16080
15469
  }
16081
15470
  textarea.ant-input-number {
16082
15471
  max-width: 100%;
@@ -16461,6 +15850,28 @@ textarea.ant-input-number {
16461
15850
  text-align: start;
16462
15851
  vertical-align: top;
16463
15852
  }
15853
+ .ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-last-item).ant-input-number-compact-item .ant-input-number,
15854
+ .ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-last-item).ant-input-number-compact-item .ant-input-number-group-addon {
15855
+ border-radius: 0;
15856
+ }
15857
+ .ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-first-item .ant-input-number,
15858
+ .ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-first-item .ant-input-number-group-addon {
15859
+ border-start-end-radius: 0;
15860
+ border-end-end-radius: 0;
15861
+ }
15862
+ .ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-last-item .ant-input-number,
15863
+ .ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-last-item .ant-input-number-group-addon {
15864
+ border-start-start-radius: 0;
15865
+ border-end-start-radius: 0;
15866
+ }
15867
+ .ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-item .ant-input-number-affix-wrapper {
15868
+ border-start-end-radius: 0;
15869
+ border-end-end-radius: 0;
15870
+ }
15871
+ .ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-item .ant-input-number-affix-wrapper {
15872
+ border-start-start-radius: 0;
15873
+ border-end-start-radius: 0;
15874
+ }
16464
15875
  .ant-input-number-handler {
16465
15876
  position: relative;
16466
15877
  display: block;
@@ -16539,10 +15950,6 @@ textarea.ant-input-number {
16539
15950
  .ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
16540
15951
  display: block;
16541
15952
  }
16542
- .ant-input-number:hover {
16543
- border-color: var(--ant-primary-5);
16544
- border-right-width: 1px;
16545
- }
16546
15953
  .ant-input-number:hover + .ant-form-item-children-icon {
16547
15954
  opacity: 0;
16548
15955
  transition: opacity 0.24s linear 0.24s;
@@ -17162,17 +16569,6 @@ textarea.ant-input-number {
17162
16569
  direction: ltr;
17163
16570
  text-align: right;
17164
16571
  }
17165
- .ant-input-number-affix-wrapper > nz-input-number.ant-input-number {
17166
- width: 100%;
17167
- border: none;
17168
- outline: none;
17169
- }
17170
- .ant-input-number-affix-wrapper > nz-input-number.ant-input-number.ant-input-number-focused {
17171
- box-shadow: none !important;
17172
- }
17173
- .ant-input-number.ant-input-number-has-feedback .ant-input-number-handler-wrap {
17174
- z-index: 2;
17175
- }
17176
16572
  .ant-layout {
17177
16573
  display: flex;
17178
16574
  flex: auto;
@@ -17306,6 +16702,52 @@ nz-footer {
17306
16702
  nz-header {
17307
16703
  display: block;
17308
16704
  }
16705
+ .ant-form-validate_animation-enter {
16706
+ animation: enter 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
16707
+ }
16708
+ .ant-form-validate_animation-leave {
16709
+ animation: leave 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
16710
+ }
16711
+ @keyframes enter {
16712
+ from {
16713
+ transform: translateY(-5px);
16714
+ opacity: 0;
16715
+ }
16716
+ to {
16717
+ transform: translateY(0);
16718
+ opacity: 1;
16719
+ }
16720
+ }
16721
+ @keyframes enter {
16722
+ from {
16723
+ transform: translateY(-5px);
16724
+ opacity: 0;
16725
+ }
16726
+ to {
16727
+ transform: translateY(0);
16728
+ opacity: 1;
16729
+ }
16730
+ }
16731
+ @keyframes leave {
16732
+ from {
16733
+ transform: translateY(0);
16734
+ opacity: 1;
16735
+ }
16736
+ to {
16737
+ transform: translateY(-5px);
16738
+ opacity: 0;
16739
+ }
16740
+ }
16741
+ @keyframes leave {
16742
+ from {
16743
+ transform: translateY(0);
16744
+ opacity: 1;
16745
+ }
16746
+ to {
16747
+ transform: translateY(-5px);
16748
+ opacity: 0;
16749
+ }
16750
+ }
17309
16751
  .ant-form-item .ant-input-number + .ant-form-text {
17310
16752
  margin-left: 8px;
17311
16753
  }
@@ -17628,7 +17070,7 @@ nz-header {
17628
17070
  font-size: 14px;
17629
17071
  vertical-align: top;
17630
17072
  }
17631
- .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
17073
+ .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional):not( .ant-form-item-required-mark-hidden)::before {
17632
17074
  display: inline-block;
17633
17075
  margin-right: 4px;
17634
17076
  color: #ff4d4f;
@@ -17637,7 +17079,7 @@ nz-header {
17637
17079
  line-height: 1;
17638
17080
  content: '*';
17639
17081
  }
17640
- .ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
17082
+ .ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional):not( .ant-form-item-required-mark-hidden)::before {
17641
17083
  display: none;
17642
17084
  }
17643
17085
  .ant-form-item-label > label .ant-form-item-optional {
@@ -19281,67 +18723,66 @@ nz-list-item-extra {
19281
18723
  border-color: #d9d9d9;
19282
18724
  border-right-width: 1px;
19283
18725
  }
19284
- .ant-mentions-borderless.ant-mentions,
19285
- .ant-mentions-borderless.ant-mentions:hover,
19286
- .ant-mentions-borderless.ant-mentions:focus,
19287
- .ant-mentions-borderless.ant-mentions-focused,
19288
- .ant-mentions-borderless.ant-mentions-disabled,
19289
- .ant-mentions-borderless.ant-mentions[disabled] {
19290
- background-color: transparent !important;
19291
- border: none !important;
19292
- box-shadow: none !important;
18726
+ .ant-mentions.ant-mentions-borderless,
18727
+ .ant-mentions.ant-mentions-borderless:hover,
18728
+ .ant-mentions.ant-mentions-borderless:focus,
18729
+ .ant-mentions.ant-mentions-borderless.ant-mentions-focused,
18730
+ .ant-mentions.ant-mentions-borderless.ant-mentions-disabled,
18731
+ .ant-mentions.ant-mentions-borderless.ant-mentions[disabled] {
18732
+ background-color: transparent;
18733
+ border: none;
18734
+ box-shadow: none;
19293
18735
  }
19294
- .ant-mentions-filled {
19295
- background-color: #f5f5f5 !important;
18736
+ .ant-mentions.ant-mentions-filled {
18737
+ background-color: #f5f5f5;
19296
18738
  border-color: transparent;
19297
- box-shadow: none !important;
18739
+ box-shadow: none;
19298
18740
  }
19299
- .ant-mentions-filled:hover.ant-mentions:not(.ant-mentions-focused) {
19300
- background-color: #f0f0f0 !important;
19301
- border-color: transparent !important;
18741
+ .ant-mentions.ant-mentions-filled:hover {
18742
+ background-color: #f0f0f0;
19302
18743
  }
19303
- .ant-mentions-filled:focus,
19304
- .ant-mentions-filled.ant-mentions-focused {
18744
+ .ant-mentions.ant-mentions-filled:focus,
18745
+ .ant-mentions.ant-mentions-filled.ant-mentions-focused {
19305
18746
  border-color: var(--ant-primary-color-hover);
19306
18747
  box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
19307
18748
  border-right-width: 1px;
19308
18749
  outline: 0;
19309
- background-color: transparent !important;
19310
- box-shadow: none !important;
18750
+ background-color: transparent;
18751
+ box-shadow: none;
19311
18752
  }
19312
- .ant-input-rtl .ant-mentions-filled:focus,
19313
- .ant-input-rtl .ant-mentions-filled.ant-mentions-focused {
18753
+ .ant-input-rtl .ant-mentions.ant-mentions-filled:focus,
18754
+ .ant-input-rtl .ant-mentions.ant-mentions-filled.ant-mentions-focused {
19314
18755
  border-right-width: 0;
19315
18756
  border-left-width: 1px !important;
19316
18757
  }
19317
- .ant-mentions-filled.ant-mentions-disabled,
19318
- .ant-mentions-filled.ant-mentions[disabled] {
19319
- background-color: #f5f5f5 !important;
19320
- border-color: #d9d9d9 !important;
19321
- box-shadow: none !important;
19322
- cursor: not-allowed !important;
19323
- opacity: 1 !important;
19324
- pointer-events: none !important;
19325
- color: rgba(0, 0, 0, 0.25) !important;
18758
+ .ant-mentions.ant-mentions-filled.ant-mentions-disabled,
18759
+ .ant-mentions.ant-mentions-filled.ant-mentions[disabled] {
18760
+ background-color: #f5f5f5;
18761
+ border-color: #d9d9d9;
18762
+ box-shadow: none;
18763
+ cursor: not-allowed;
18764
+ opacity: 1;
18765
+ pointer-events: none;
18766
+ color: rgba(0, 0, 0, 0.25);
19326
18767
  }
19327
- .ant-mentions-filled.ant-mentions-disabled:hover,
19328
- .ant-mentions-filled.ant-mentions[disabled]:hover {
19329
- border-color: #d9d9d9 !important;
19330
- border-right-width: 1px !important;
19331
- }
19332
- .ant-mentions-underlined.ant-mentions,
19333
- .ant-mentions-underlined:hover,
19334
- .ant-mentions-underlined:focus,
19335
- .ant-mentions-underlined.ant-mentions-focused,
19336
- .ant-mentions-underlined.ant-mentions-disabled,
19337
- .ant-mentions-underlined.ant-mentions[disabled] {
19338
- background-color: transparent !important;
19339
- border-width: 0 0 1px !important;
19340
- border-radius: 0 !important;
19341
- box-shadow: none !important;
18768
+ .ant-mentions.ant-mentions-filled.ant-mentions-disabled:hover,
18769
+ .ant-mentions.ant-mentions-filled.ant-mentions[disabled]:hover {
18770
+ border-color: #d9d9d9;
18771
+ border-right-width: 1px;
19342
18772
  }
19343
- .ant-mentions-underlined:hover.ant-mentions:not(.ant-mentions-focused) {
19344
- border-color: #d9d9d9 !important;
18773
+ .ant-mentions.ant-mentions-underlined,
18774
+ .ant-mentions.ant-mentions-underlined:hover,
18775
+ .ant-mentions.ant-mentions-underlined:focus,
18776
+ .ant-mentions.ant-mentions-underlined.ant-mentions-focused,
18777
+ .ant-mentions.ant-mentions-underlined.ant-mentions-disabled,
18778
+ .ant-mentions.ant-mentions-underlined.ant-mentions[disabled] {
18779
+ background-color: transparent;
18780
+ border-width: 0 0 1px;
18781
+ border-radius: 0;
18782
+ box-shadow: none;
18783
+ }
18784
+ .ant-mentions.ant-mentions-underlined:hover:not(.ant-mentions-focused):not(:focus) {
18785
+ border-color: #d9d9d9;
19345
18786
  }
19346
18787
  textarea.ant-mentions {
19347
18788
  max-width: 100%;
@@ -19633,9 +19074,42 @@ textarea.ant-mentions {
19633
19074
  margin-right: 8px;
19634
19075
  font-size: 16px;
19635
19076
  }
19636
- .ant-message-notice.ant-move-up-leave.ant-move-up-leave-active {
19077
+ .ant-message-rtl {
19078
+ direction: rtl;
19079
+ }
19080
+ .ant-message-rtl span {
19081
+ direction: rtl;
19082
+ }
19083
+ .ant-message-rtl .anticon {
19084
+ margin-right: 0;
19085
+ margin-left: 8px;
19086
+ }
19087
+ .ant-message .ant-message-move-up {
19088
+ animation-fill-mode: forwards;
19089
+ }
19090
+ .ant-message .ant-message-move-up-enter {
19091
+ animation-name: MessageMoveIn;
19092
+ animation-duration: 0.3s;
19093
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
19094
+ animation-fill-mode: both;
19095
+ }
19096
+ .ant-message .ant-message-move-up-leave {
19637
19097
  animation-name: MessageMoveOut;
19638
19098
  animation-duration: 0.3s;
19099
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
19100
+ animation-fill-mode: both;
19101
+ }
19102
+ @keyframes MessageMoveIn {
19103
+ 0% {
19104
+ padding: 0;
19105
+ transform: translateY(-100%);
19106
+ opacity: 0;
19107
+ }
19108
+ 100% {
19109
+ padding: 8px;
19110
+ transform: translateY(0);
19111
+ opacity: 1;
19112
+ }
19639
19113
  }
19640
19114
  @keyframes MessageMoveOut {
19641
19115
  0% {
@@ -19649,15 +19123,131 @@ textarea.ant-mentions {
19649
19123
  opacity: 0;
19650
19124
  }
19651
19125
  }
19652
- .ant-message-rtl {
19653
- direction: rtl;
19126
+ @keyframes antZoomIn {
19127
+ 0% {
19128
+ transform: scale(0.2);
19129
+ opacity: 0;
19130
+ }
19131
+ 100% {
19132
+ transform: scale(1);
19133
+ opacity: 1;
19134
+ }
19654
19135
  }
19655
- .ant-message-rtl span {
19656
- direction: rtl;
19136
+ @keyframes antZoomOut {
19137
+ 0% {
19138
+ transform: scale(1);
19139
+ }
19140
+ 100% {
19141
+ transform: scale(0.2);
19142
+ opacity: 0;
19143
+ }
19657
19144
  }
19658
- .ant-message-rtl .anticon {
19659
- margin-right: 0;
19660
- margin-left: 8px;
19145
+ @keyframes antZoomBigIn {
19146
+ 0% {
19147
+ transform: scale(0.8);
19148
+ opacity: 0;
19149
+ }
19150
+ 100% {
19151
+ transform: scale(1);
19152
+ opacity: 1;
19153
+ }
19154
+ }
19155
+ @keyframes antZoomBigOut {
19156
+ 0% {
19157
+ transform: scale(1);
19158
+ }
19159
+ 100% {
19160
+ transform: scale(0.8);
19161
+ opacity: 0;
19162
+ }
19163
+ }
19164
+ @keyframes antZoomUpIn {
19165
+ 0% {
19166
+ transform: scale(0.8);
19167
+ transform-origin: 50% 0%;
19168
+ opacity: 0;
19169
+ }
19170
+ 100% {
19171
+ transform: scale(1);
19172
+ transform-origin: 50% 0%;
19173
+ }
19174
+ }
19175
+ @keyframes antZoomUpOut {
19176
+ 0% {
19177
+ transform: scale(1);
19178
+ transform-origin: 50% 0%;
19179
+ }
19180
+ 100% {
19181
+ transform: scale(0.8);
19182
+ transform-origin: 50% 0%;
19183
+ opacity: 0;
19184
+ }
19185
+ }
19186
+ @keyframes antZoomLeftIn {
19187
+ 0% {
19188
+ transform: scale(0.8);
19189
+ transform-origin: 0% 50%;
19190
+ opacity: 0;
19191
+ }
19192
+ 100% {
19193
+ transform: scale(1);
19194
+ transform-origin: 0% 50%;
19195
+ }
19196
+ }
19197
+ @keyframes antZoomLeftOut {
19198
+ 0% {
19199
+ transform: scale(1);
19200
+ transform-origin: 0% 50%;
19201
+ }
19202
+ 100% {
19203
+ transform: scale(0.8);
19204
+ transform-origin: 0% 50%;
19205
+ opacity: 0;
19206
+ }
19207
+ }
19208
+ @keyframes antZoomRightIn {
19209
+ 0% {
19210
+ transform: scale(0.8);
19211
+ transform-origin: 100% 50%;
19212
+ opacity: 0;
19213
+ }
19214
+ 100% {
19215
+ transform: scale(1);
19216
+ transform-origin: 100% 50%;
19217
+ }
19218
+ }
19219
+ @keyframes antZoomRightOut {
19220
+ 0% {
19221
+ transform: scale(1);
19222
+ transform-origin: 100% 50%;
19223
+ }
19224
+ 100% {
19225
+ transform: scale(0.8);
19226
+ transform-origin: 100% 50%;
19227
+ opacity: 0;
19228
+ }
19229
+ }
19230
+ @keyframes antZoomDownIn {
19231
+ 0% {
19232
+ transform: scale(0.8);
19233
+ transform-origin: 50% 100%;
19234
+ opacity: 0;
19235
+ }
19236
+ 100% {
19237
+ transform: scale(1);
19238
+ transform-origin: 50% 100%;
19239
+ }
19240
+ }
19241
+ @keyframes antZoomDownOut {
19242
+ 0% {
19243
+ transform: scale(1);
19244
+ transform-origin: 50% 100%;
19245
+ }
19246
+ 100% {
19247
+ transform: scale(0.8);
19248
+ transform-origin: 50% 100%;
19249
+ opacity: 0;
19250
+ }
19661
19251
  }
19662
19252
  .ant-modal {
19663
19253
  box-sizing: border-box;
@@ -19963,6 +19553,61 @@ textarea.ant-mentions {
19963
19553
  .ant-modal-wrap-rtl.ant-modal-centered .ant-modal {
19964
19554
  text-align: right;
19965
19555
  }
19556
+ .ant-zoom-enter,
19557
+ .ant-zoom-appear {
19558
+ animation-duration: 0.2s;
19559
+ animation-fill-mode: both;
19560
+ animation-play-state: paused;
19561
+ }
19562
+ .ant-zoom-leave {
19563
+ animation-duration: 0.2s;
19564
+ animation-fill-mode: both;
19565
+ animation-play-state: paused;
19566
+ }
19567
+ .ant-zoom-enter.ant-zoom-enter-active,
19568
+ .ant-zoom-appear.ant-zoom-appear-active {
19569
+ animation-name: antZoomIn;
19570
+ animation-play-state: running;
19571
+ }
19572
+ .ant-zoom-leave.ant-zoom-leave-active {
19573
+ animation-name: antZoomOut;
19574
+ animation-play-state: running;
19575
+ pointer-events: none;
19576
+ }
19577
+ .ant-zoom-enter,
19578
+ .ant-zoom-appear {
19579
+ animation-duration: 0.2s;
19580
+ animation-fill-mode: both;
19581
+ animation-play-state: paused;
19582
+ }
19583
+ .ant-zoom-leave {
19584
+ animation-duration: 0.2s;
19585
+ animation-fill-mode: both;
19586
+ animation-play-state: paused;
19587
+ }
19588
+ .ant-zoom-enter.ant-zoom-enter-active,
19589
+ .ant-zoom-appear.ant-zoom-appear-active {
19590
+ animation-name: antZoomIn;
19591
+ animation-play-state: running;
19592
+ }
19593
+ .ant-zoom-leave.ant-zoom-leave-active {
19594
+ animation-name: antZoomOut;
19595
+ animation-play-state: running;
19596
+ pointer-events: none;
19597
+ }
19598
+ .ant-zoom-enter,
19599
+ .ant-zoom-appear {
19600
+ transform: scale(0);
19601
+ opacity: 0;
19602
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
19603
+ }
19604
+ .ant-zoom-enter-prepare,
19605
+ .ant-zoom-appear-prepare {
19606
+ transform: none;
19607
+ }
19608
+ .ant-zoom-leave {
19609
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
19610
+ }
19966
19611
  .ant-notification {
19967
19612
  box-sizing: border-box;
19968
19613
  margin: 0;
@@ -20072,59 +19717,6 @@ textarea.ant-mentions {
20072
19717
  float: right;
20073
19718
  margin-top: 16px;
20074
19719
  }
20075
- .ant-notification .notification-fade-effect {
20076
- animation-duration: 0.24s;
20077
- animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
20078
- animation-fill-mode: both;
20079
- }
20080
- .ant-notification-fade-enter,
20081
- .ant-notification-fade-appear {
20082
- animation-duration: 0.24s;
20083
- animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
20084
- animation-fill-mode: both;
20085
- opacity: 0;
20086
- animation-play-state: paused;
20087
- }
20088
- .ant-notification-fade-leave {
20089
- animation-duration: 0.24s;
20090
- animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
20091
- animation-fill-mode: both;
20092
- animation-duration: 0.2s;
20093
- animation-play-state: paused;
20094
- }
20095
- .ant-notification-fade-enter.ant-notification-fade-enter-active,
20096
- .ant-notification-fade-appear.ant-notification-fade-appear-active {
20097
- animation-name: NotificationFadeIn;
20098
- animation-play-state: running;
20099
- }
20100
- .ant-notification-fade-leave.ant-notification-fade-leave-active {
20101
- animation-name: NotificationFadeOut;
20102
- animation-play-state: running;
20103
- }
20104
- @keyframes NotificationFadeIn {
20105
- 0% {
20106
- left: 384px;
20107
- opacity: 0;
20108
- }
20109
- 100% {
20110
- left: 0;
20111
- opacity: 1;
20112
- }
20113
- }
20114
- @keyframes NotificationFadeOut {
20115
- 0% {
20116
- max-height: 150px;
20117
- margin-bottom: 16px;
20118
- opacity: 1;
20119
- }
20120
- 100% {
20121
- max-height: 0;
20122
- margin-bottom: 0;
20123
- padding-top: 0;
20124
- padding-bottom: 0;
20125
- opacity: 0;
20126
- }
20127
- }
20128
19720
  .ant-notification-rtl {
20129
19721
  direction: rtl;
20130
19722
  }
@@ -20151,60 +19743,95 @@ textarea.ant-mentions {
20151
19743
  .ant-notification-rtl .ant-notification-notice-btn {
20152
19744
  float: left;
20153
19745
  }
19746
+ .ant-notification .ant-notification-fade-enter {
19747
+ animation-name: antNotificationFadeIn;
19748
+ animation-duration: 0.2s;
19749
+ animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
19750
+ animation-fill-mode: both;
19751
+ }
19752
+ .ant-notification .ant-notification-fade-leave {
19753
+ animation-name: antNotificationFadeOut;
19754
+ animation-duration: 0.2s;
19755
+ animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
19756
+ animation-fill-mode: both;
19757
+ }
19758
+ .ant-notification .notification-fade-effect {
19759
+ animation-duration: 0.24s;
19760
+ animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
19761
+ animation-fill-mode: both;
19762
+ }
20154
19763
  .ant-notification-top,
20155
19764
  .ant-notification-bottom {
20156
- margin-right: 0;
20157
- margin-left: 0;
19765
+ margin-inline: 0;
20158
19766
  }
20159
- .ant-notification-top .ant-notification-fade-enter.ant-notification-fade-enter-active,
20160
- .ant-notification-top .ant-notification-fade-appear.ant-notification-fade-appear-active {
20161
- animation-name: NotificationTopFadeIn;
19767
+ .ant-notification-top .ant-notification-fade-enter {
19768
+ animation-name: antNotificationTopFadeIn;
20162
19769
  }
20163
- .ant-notification-bottom .ant-notification-fade-enter.ant-notification-fade-enter-active,
20164
- .ant-notification-bottom .ant-notification-fade-appear.ant-notification-fade-appear-active {
20165
- animation-name: NotificationBottomFadeIn;
19770
+ .ant-notification-bottom .ant-notification-fade-enter {
19771
+ animation-name: antNotificationBottomFadeIn;
20166
19772
  }
20167
19773
  .ant-notification-topLeft,
20168
19774
  .ant-notification-bottomLeft {
20169
19775
  margin-right: 0;
20170
19776
  margin-left: 24px;
20171
19777
  }
20172
- .ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
20173
- .ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
20174
- .ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,
20175
- .ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active {
20176
- animation-name: NotificationLeftFadeIn;
19778
+ .ant-notification-topLeft .ant-notification-fade-enter,
19779
+ .ant-notification-bottomLeft .ant-notification-fade-enter {
19780
+ animation-name: antNotificationLeftFadeIn;
20177
19781
  }
20178
- @keyframes NotificationTopFadeIn {
19782
+ @keyframes antNotificationFadeIn {
20179
19783
  0% {
20180
- margin-top: -100%;
19784
+ transform: translate3d(100%, 0, 0);
20181
19785
  opacity: 0;
20182
19786
  }
20183
19787
  100% {
20184
- margin-top: 0;
19788
+ transform: translate3d(0, 0, 0);
20185
19789
  opacity: 1;
20186
19790
  }
20187
19791
  }
20188
- @keyframes NotificationBottomFadeIn {
19792
+ @keyframes antNotificationTopFadeIn {
20189
19793
  0% {
20190
- margin-bottom: -100%;
19794
+ top: -150px;
20191
19795
  opacity: 0;
20192
19796
  }
20193
19797
  100% {
20194
- margin-bottom: 0;
19798
+ top: 0;
20195
19799
  opacity: 1;
20196
19800
  }
20197
19801
  }
20198
- @keyframes NotificationLeftFadeIn {
19802
+ @keyframes antNotificationBottomFadeIn {
20199
19803
  0% {
20200
- right: 384px;
19804
+ bottom: -150px;
20201
19805
  opacity: 0;
20202
19806
  }
20203
19807
  100% {
20204
- right: 0;
19808
+ bottom: 0;
20205
19809
  opacity: 1;
20206
19810
  }
20207
19811
  }
19812
+ @keyframes antNotificationLeftFadeIn {
19813
+ 0% {
19814
+ transform: translate3d(-100%, 0, 0);
19815
+ opacity: 0;
19816
+ }
19817
+ 100% {
19818
+ transform: translate3d(0, 0, 0);
19819
+ opacity: 1;
19820
+ }
19821
+ }
19822
+ @keyframes antNotificationFadeOut {
19823
+ 0% {
19824
+ max-height: 150px;
19825
+ margin-bottom: 16px;
19826
+ }
19827
+ 100% {
19828
+ max-height: 0;
19829
+ margin-bottom: 0;
19830
+ padding-top: 0;
19831
+ padding-bottom: 0;
19832
+ opacity: 0;
19833
+ }
19834
+ }
20208
19835
  .ant-page-header {
20209
19836
  box-sizing: border-box;
20210
19837
  margin: 0;
@@ -20381,6 +20008,16 @@ nz-page-header-footer {
20381
20008
  line-height: 1.5715;
20382
20009
  list-style: none;
20383
20010
  font-feature-settings: 'tnum';
20011
+ display: flex;
20012
+ }
20013
+ .ant-pagination-start {
20014
+ justify-content: start;
20015
+ }
20016
+ .ant-pagination-center {
20017
+ justify-content: center;
20018
+ }
20019
+ .ant-pagination-end {
20020
+ justify-content: end;
20384
20021
  }
20385
20022
  .ant-pagination ul,
20386
20023
  .ant-pagination ol {
@@ -20702,67 +20339,66 @@ nz-page-header-footer {
20702
20339
  border-color: #d9d9d9;
20703
20340
  border-right-width: 1px;
20704
20341
  }
20705
- .ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input,
20706
- .ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input:hover,
20707
- .ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input:focus,
20708
- .ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-focused,
20709
- .ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-disabled,
20710
- .ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input[disabled] {
20711
- background-color: transparent !important;
20712
- border: none !important;
20713
- box-shadow: none !important;
20342
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless,
20343
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless:hover,
20344
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless:focus,
20345
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-focused,
20346
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-disabled,
20347
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input[disabled] {
20348
+ background-color: transparent;
20349
+ border: none;
20350
+ box-shadow: none;
20714
20351
  }
20715
- .ant-pagination-options-quick-jumper input-filled {
20716
- background-color: #f5f5f5 !important;
20352
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled {
20353
+ background-color: #f5f5f5;
20717
20354
  border-color: transparent;
20718
- box-shadow: none !important;
20355
+ box-shadow: none;
20719
20356
  }
20720
- .ant-pagination-options-quick-jumper input-filled:hover.ant-pagination-options-quick-jumper input:not(.ant-pagination-options-quick-jumper input-focused) {
20721
- background-color: #f0f0f0 !important;
20722
- border-color: transparent !important;
20357
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:hover {
20358
+ background-color: #f0f0f0;
20723
20359
  }
20724
- .ant-pagination-options-quick-jumper input-filled:focus,
20725
- .ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
20360
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:focus,
20361
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
20726
20362
  border-color: var(--ant-primary-color-hover);
20727
20363
  box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
20728
20364
  border-right-width: 1px;
20729
20365
  outline: 0;
20730
- background-color: transparent !important;
20731
- box-shadow: none !important;
20366
+ background-color: transparent;
20367
+ box-shadow: none;
20732
20368
  }
20733
- .ant-input-rtl .ant-pagination-options-quick-jumper input-filled:focus,
20734
- .ant-input-rtl .ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
20369
+ .ant-input-rtl .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:focus,
20370
+ .ant-input-rtl .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
20735
20371
  border-right-width: 0;
20736
20372
  border-left-width: 1px !important;
20737
20373
  }
20738
- .ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled,
20739
- .ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled] {
20740
- background-color: #f5f5f5 !important;
20741
- border-color: #d9d9d9 !important;
20742
- box-shadow: none !important;
20743
- cursor: not-allowed !important;
20744
- opacity: 1 !important;
20745
- pointer-events: none !important;
20746
- color: rgba(0, 0, 0, 0.25) !important;
20374
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled,
20375
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled] {
20376
+ background-color: #f5f5f5;
20377
+ border-color: #d9d9d9;
20378
+ box-shadow: none;
20379
+ cursor: not-allowed;
20380
+ opacity: 1;
20381
+ pointer-events: none;
20382
+ color: rgba(0, 0, 0, 0.25);
20747
20383
  }
20748
- .ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled:hover,
20749
- .ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled]:hover {
20750
- border-color: #d9d9d9 !important;
20751
- border-right-width: 1px !important;
20752
- }
20753
- .ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input,
20754
- .ant-pagination-options-quick-jumper input-underlined:hover,
20755
- .ant-pagination-options-quick-jumper input-underlined:focus,
20756
- .ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-focused,
20757
- .ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-disabled,
20758
- .ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input[disabled] {
20759
- background-color: transparent !important;
20760
- border-width: 0 0 1px !important;
20761
- border-radius: 0 !important;
20762
- box-shadow: none !important;
20384
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled:hover,
20385
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled]:hover {
20386
+ border-color: #d9d9d9;
20387
+ border-right-width: 1px;
20763
20388
  }
20764
- .ant-pagination-options-quick-jumper input-underlined:hover.ant-pagination-options-quick-jumper input:not(.ant-pagination-options-quick-jumper input-focused) {
20765
- border-color: #d9d9d9 !important;
20389
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined,
20390
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:hover,
20391
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:focus,
20392
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-focused,
20393
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-disabled,
20394
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input[disabled] {
20395
+ background-color: transparent;
20396
+ border-width: 0 0 1px;
20397
+ border-radius: 0;
20398
+ box-shadow: none;
20399
+ }
20400
+ .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:hover:not(.ant-pagination-options-quick-jumper input-focused):not(:focus) {
20401
+ border-color: #d9d9d9;
20766
20402
  }
20767
20403
  textarea.ant-pagination-options-quick-jumper input {
20768
20404
  max-width: 100%;
@@ -21395,6 +21031,61 @@ nz-pagination {
21395
21031
  .ant-popover-purple .ant-popover-arrow {
21396
21032
  background-color: #722ed1;
21397
21033
  }
21034
+ .ant-zoom-big-enter,
21035
+ .ant-zoom-big-appear {
21036
+ animation-duration: 0.2s;
21037
+ animation-fill-mode: both;
21038
+ animation-play-state: paused;
21039
+ }
21040
+ .ant-zoom-big-leave {
21041
+ animation-duration: 0.2s;
21042
+ animation-fill-mode: both;
21043
+ animation-play-state: paused;
21044
+ }
21045
+ .ant-zoom-big-enter.ant-zoom-big-enter-active,
21046
+ .ant-zoom-big-appear.ant-zoom-big-appear-active {
21047
+ animation-name: antZoomBigIn;
21048
+ animation-play-state: running;
21049
+ }
21050
+ .ant-zoom-big-leave.ant-zoom-big-leave-active {
21051
+ animation-name: antZoomBigOut;
21052
+ animation-play-state: running;
21053
+ pointer-events: none;
21054
+ }
21055
+ .ant-zoom-big-enter,
21056
+ .ant-zoom-big-appear {
21057
+ animation-duration: 0.2s;
21058
+ animation-fill-mode: both;
21059
+ animation-play-state: paused;
21060
+ }
21061
+ .ant-zoom-big-leave {
21062
+ animation-duration: 0.2s;
21063
+ animation-fill-mode: both;
21064
+ animation-play-state: paused;
21065
+ }
21066
+ .ant-zoom-big-enter.ant-zoom-big-enter-active,
21067
+ .ant-zoom-big-appear.ant-zoom-big-appear-active {
21068
+ animation-name: antZoomBigIn;
21069
+ animation-play-state: running;
21070
+ }
21071
+ .ant-zoom-big-leave.ant-zoom-big-leave-active {
21072
+ animation-name: antZoomBigOut;
21073
+ animation-play-state: running;
21074
+ pointer-events: none;
21075
+ }
21076
+ .ant-zoom-big-enter,
21077
+ .ant-zoom-big-appear {
21078
+ transform: scale(0);
21079
+ opacity: 0;
21080
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
21081
+ }
21082
+ .ant-zoom-big-enter-prepare,
21083
+ .ant-zoom-big-appear-prepare {
21084
+ transform: none;
21085
+ }
21086
+ .ant-zoom-big-leave {
21087
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
21088
+ }
21398
21089
  .ant-popover-rtl {
21399
21090
  direction: rtl;
21400
21091
  text-align: right;
@@ -22117,7 +21808,7 @@ span.ant-radio + * {
22117
21808
  }
22118
21809
  .ant-select-single.ant-select-sm {
22119
21810
  height: 24px;
22120
- font-size: 12px;
21811
+ font-size: 14px;
22121
21812
  }
22122
21813
  .ant-select-single.ant-select-sm .ant-select-selector {
22123
21814
  display: flex;
@@ -22159,7 +21850,7 @@ span.ant-radio + * {
22159
21850
  .ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-item,
22160
21851
  .ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-search,
22161
21852
  .ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-placeholder {
22162
- padding-inline-end: 15px;
21853
+ padding-inline-end: 18px;
22163
21854
  }
22164
21855
  .ant-select-single.ant-select-sm.ant-select-open .ant-select-selection-item {
22165
21856
  color: #bfbfbf;
@@ -22924,16 +22615,6 @@ span.ant-radio + * {
22924
22615
  .ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
22925
22616
  cursor: auto;
22926
22617
  }
22927
- .ant-select-focused:not(.ant-select-disabled) .ant-select:not(.ant-select-customize-input) .ant-select-selector {
22928
- border-color: var(--ant-primary-color-hover);
22929
- box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
22930
- border-right-width: 1px;
22931
- outline: 0;
22932
- }
22933
- .ant-input-rtl .ant-select-focused:not(.ant-select-disabled) .ant-select:not(.ant-select-customize-input) .ant-select-selector {
22934
- border-right-width: 0;
22935
- border-left-width: 1px !important;
22936
- }
22937
22618
  .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
22938
22619
  color: rgba(0, 0, 0, 0.25);
22939
22620
  background: #f5f5f5;
@@ -22966,6 +22647,16 @@ span.ant-radio + * {
22966
22647
  border-right-width: 0;
22967
22648
  border-left-width: 1px !important;
22968
22649
  }
22650
+ .ant-select:not(.ant-select-disabled).ant-select-focused .ant-select-selector {
22651
+ border-color: var(--ant-primary-color-hover);
22652
+ box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
22653
+ border-right-width: 1px;
22654
+ outline: 0;
22655
+ }
22656
+ .ant-input-rtl .ant-select:not(.ant-select-disabled).ant-select-focused .ant-select-selector {
22657
+ border-right-width: 0;
22658
+ border-left-width: 1px !important;
22659
+ }
22969
22660
  .ant-select-selection-item {
22970
22661
  flex: 1;
22971
22662
  overflow: hidden;
@@ -23196,60 +22887,68 @@ span.ant-radio + * {
23196
22887
  .ant-select-lg {
23197
22888
  font-size: 16px;
23198
22889
  }
23199
- .ant-select-borderless .ant-select-selector {
23200
- background-color: transparent !important;
23201
- border-color: transparent !important;
23202
- box-shadow: none !important;
22890
+ .ant-select.ant-select-borderless .ant-select-selector,
22891
+ .ant-select.ant-select-borderless:hover .ant-select-selector,
22892
+ .ant-select.ant-select-borderless:focus .ant-select-selector,
22893
+ .ant-select.ant-select-borderless.ant-select-focused .ant-select-selector,
22894
+ .ant-select.ant-select-borderless.ant-select-disabled .ant-select-selector,
22895
+ .ant-select.ant-select-borderless.ant-select[disabled] .ant-select-selector {
22896
+ background-color: transparent;
22897
+ border-color: transparent;
22898
+ box-shadow: none;
23203
22899
  }
23204
- .ant-select-filled .ant-select-selector {
23205
- background-color: #f5f5f5 !important;
23206
- border-color: transparent !important;
23207
- box-shadow: none !important;
22900
+ .ant-select.ant-select-filled .ant-select-selector {
22901
+ background-color: #f5f5f5;
22902
+ border-color: transparent;
22903
+ box-shadow: none;
23208
22904
  }
23209
- .ant-select-filled:hover .ant-select-selector {
23210
- background-color: #f0f0f0 !important;
23211
- border-color: transparent !important;
23212
- box-shadow: none !important;
22905
+ .ant-select.ant-select-filled:hover .ant-select-selector {
22906
+ background-color: #f0f0f0;
22907
+ border-color: transparent;
22908
+ box-shadow: none;
23213
22909
  }
23214
- .ant-select-filled:focus .ant-select-selector,
23215
- .ant-select-filled.ant-select-focused .ant-select-selector {
23216
- border-color: var(--ant-primary-color-hover) !important;
23217
- box-shadow: 0 0 0 2px var(--ant-primary-color-outline) !important;
23218
- border-right-width: 1px !important;
23219
- outline: 0 !important;
23220
- background-color: transparent !important;
23221
- box-shadow: none !important;
22910
+ .ant-select.ant-select-filled:focus .ant-select-selector,
22911
+ .ant-select.ant-select-filled.ant-select-focused .ant-select-selector {
22912
+ border-color: var(--ant-primary-color-hover);
22913
+ box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
22914
+ border-right-width: 1px;
22915
+ outline: 0;
22916
+ background-color: transparent;
22917
+ box-shadow: none;
23222
22918
  }
23223
- .ant-input-rtl .ant-select-filled:focus .ant-select-selector,
23224
- .ant-input-rtl .ant-select-filled.ant-select-focused .ant-select-selector {
23225
- border-right-width: 0 !important;
22919
+ .ant-input-rtl .ant-select.ant-select-filled:focus .ant-select-selector,
22920
+ .ant-input-rtl .ant-select.ant-select-filled.ant-select-focused .ant-select-selector {
22921
+ border-right-width: 0;
23226
22922
  border-left-width: 1px !important;
23227
22923
  }
23228
- .ant-select-filled.ant-select-disabled .ant-select-selector,
23229
- .ant-select-filled.ant-select[disabled] .ant-select-selector {
23230
- background-color: #f5f5f5 !important;
23231
- border-color: #d9d9d9 !important;
23232
- box-shadow: none !important;
23233
- cursor: not-allowed !important;
23234
- opacity: 1 !important;
23235
- pointer-events: none !important;
23236
- color: rgba(0, 0, 0, 0.25) !important;
22924
+ .ant-select.ant-select-filled.ant-select-disabled .ant-select-selector,
22925
+ .ant-select.ant-select-filled.ant-select[disabled] .ant-select-selector {
22926
+ background-color: #f5f5f5;
22927
+ border-color: #d9d9d9;
22928
+ box-shadow: none;
22929
+ cursor: not-allowed;
22930
+ opacity: 1;
22931
+ pointer-events: none;
22932
+ color: rgba(0, 0, 0, 0.25);
23237
22933
  }
23238
- .ant-select-filled.ant-select-disabled .ant-select-selector:hover,
23239
- .ant-select-filled.ant-select[disabled] .ant-select-selector:hover {
23240
- border-color: #d9d9d9 !important;
23241
- border-right-width: 1px !important;
23242
- }
23243
- .ant-select-underlined .ant-select-selector,
23244
- .ant-select-underlined:hover .ant-select-selector,
23245
- .ant-select-underlined:focus .ant-select-selector,
23246
- .ant-select-underlined.ant-select-focused .ant-select-selector,
23247
- .ant-select-underlined.ant-select-disabled .ant-select-selector,
23248
- .ant-select-underlined.ant-select[disabled] .ant-select-selector {
23249
- background-color: transparent !important;
23250
- border-width: 0 0 1px !important;
23251
- border-radius: 0 !important;
23252
- box-shadow: none !important;
22934
+ .ant-select.ant-select-filled.ant-select-disabled .ant-select-selector:hover,
22935
+ .ant-select.ant-select-filled.ant-select[disabled] .ant-select-selector:hover {
22936
+ border-color: #d9d9d9;
22937
+ border-right-width: 1px;
22938
+ }
22939
+ .ant-select.ant-select-underlined .ant-select-selector,
22940
+ .ant-select.ant-select-underlined:hover .ant-select-selector,
22941
+ .ant-select.ant-select-underlined:focus .ant-select-selector,
22942
+ .ant-select.ant-select-underlined.ant-select-focused .ant-select-selector,
22943
+ .ant-select.ant-select-underlined.ant-select-disabled .ant-select-selector,
22944
+ .ant-select.ant-select-underlined.ant-select[disabled] .ant-select-selector {
22945
+ background-color: transparent;
22946
+ border-width: 0 0 1px;
22947
+ border-radius: 0;
22948
+ box-shadow: none;
22949
+ }
22950
+ .ant-select.ant-select-underlined:hover:not(.ant-select-focused):not(:focus) .ant-select-selector {
22951
+ border-color: #d9d9d9;
23253
22952
  }
23254
22953
  .ant-select.ant-select-in-form-item {
23255
22954
  width: 100%;
@@ -23480,8 +23179,8 @@ span.ant-radio + * {
23480
23179
  height: 0;
23481
23180
  }
23482
23181
  .ant-segmented-vertical .ant-segmented-thumb-motion-appear-active {
23483
- transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
23484
- will-change: transform, width, height;
23182
+ transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
23183
+ will-change: transform, height;
23485
23184
  }
23486
23185
  .ant-segmented-shape-round {
23487
23186
  border-radius: 9999px;
@@ -23562,8 +23261,8 @@ span.ant-radio + * {
23562
23261
  border-radius: 2px;
23563
23262
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(0, 0, 0, 0.07), 0 0 1px 0 rgba(0, 0, 0, 0.08);
23564
23263
  position: absolute;
23565
- top: 0;
23566
- left: 0;
23264
+ inset-block-start: 0;
23265
+ inset-inline-start: 0;
23567
23266
  width: 0;
23568
23267
  height: 100%;
23569
23268
  padding: 4px 0;
@@ -26855,7 +26554,6 @@ cdk-virtual-scroll-viewport.ant-table-body {
26855
26554
  .ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap,
26856
26555
  .ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap {
26857
26556
  position: relative;
26858
- display: inline-block;
26859
26557
  display: flex;
26860
26558
  flex: auto;
26861
26559
  align-self: stretch;
@@ -27962,6 +27660,61 @@ cdk-virtual-scroll-viewport.ant-table-body {
27962
27660
  .ant-tooltip-purple .ant-tooltip-arrow {
27963
27661
  --antd-arrow-background-color: #722ed1;
27964
27662
  }
27663
+ .ant-zoom-big-fast-enter,
27664
+ .ant-zoom-big-fast-appear {
27665
+ animation-duration: 0.1s;
27666
+ animation-fill-mode: both;
27667
+ animation-play-state: paused;
27668
+ }
27669
+ .ant-zoom-big-fast-leave {
27670
+ animation-duration: 0.1s;
27671
+ animation-fill-mode: both;
27672
+ animation-play-state: paused;
27673
+ }
27674
+ .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
27675
+ .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
27676
+ animation-name: antZoomBigIn;
27677
+ animation-play-state: running;
27678
+ }
27679
+ .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
27680
+ animation-name: antZoomBigOut;
27681
+ animation-play-state: running;
27682
+ pointer-events: none;
27683
+ }
27684
+ .ant-zoom-big-fast-enter,
27685
+ .ant-zoom-big-fast-appear {
27686
+ animation-duration: 0.1s;
27687
+ animation-fill-mode: both;
27688
+ animation-play-state: paused;
27689
+ }
27690
+ .ant-zoom-big-fast-leave {
27691
+ animation-duration: 0.1s;
27692
+ animation-fill-mode: both;
27693
+ animation-play-state: paused;
27694
+ }
27695
+ .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
27696
+ .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
27697
+ animation-name: antZoomBigIn;
27698
+ animation-play-state: running;
27699
+ }
27700
+ .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
27701
+ animation-name: antZoomBigOut;
27702
+ animation-play-state: running;
27703
+ pointer-events: none;
27704
+ }
27705
+ .ant-zoom-big-fast-enter,
27706
+ .ant-zoom-big-fast-appear {
27707
+ transform: scale(0);
27708
+ opacity: 0;
27709
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
27710
+ }
27711
+ .ant-zoom-big-fast-enter-prepare,
27712
+ .ant-zoom-big-fast-appear-prepare {
27713
+ transform: none;
27714
+ }
27715
+ .ant-zoom-big-fast-leave {
27716
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
27717
+ }
27965
27718
  .ant-tooltip-rtl {
27966
27719
  direction: rtl;
27967
27720
  }
@@ -30075,7 +29828,7 @@ nz-tree-view .ant-tree-list-holder-inner {
30075
29828
  .ant-tree .ant-tree-treenode {
30076
29829
  display: flex;
30077
29830
  align-items: flex-start;
30078
- padding: 0 0 4px 0;
29831
+ margin-bottom: 4px;
30079
29832
  outline: none;
30080
29833
  }
30081
29834
  .ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper {
@@ -30292,9 +30045,6 @@ nz-tree-view .ant-tree-list-holder-inner {
30292
30045
  .font-highlight {
30293
30046
  color: #ff4d4f;
30294
30047
  }
30295
- .ant-tree-child-tree {
30296
- overflow: hidden;
30297
- }
30298
30048
  nz-tree {
30299
30049
  display: block;
30300
30050
  }
@@ -30570,7 +30320,7 @@ nz-tree {
30570
30320
  .ant-select-tree .ant-select-tree-treenode {
30571
30321
  display: flex;
30572
30322
  align-items: flex-start;
30573
- padding: 0 0 4px 0;
30323
+ margin-bottom: 4px;
30574
30324
  outline: none;
30575
30325
  }
30576
30326
  .ant-select-tree .ant-select-tree-treenode-disabled .ant-select-tree-node-content-wrapper {
@@ -31316,6 +31066,34 @@ nz-space-item {
31316
31066
  overflow: hidden;
31317
31067
  outline: none;
31318
31068
  }
31069
+ @keyframes antFadeIn {
31070
+ 0% {
31071
+ opacity: 0;
31072
+ }
31073
+ 100% {
31074
+ opacity: 1;
31075
+ }
31076
+ }
31077
+ @keyframes antFadeOut {
31078
+ 0% {
31079
+ opacity: 1;
31080
+ }
31081
+ 100% {
31082
+ opacity: 0;
31083
+ }
31084
+ }
31085
+ .ant-image-preview-fade-motion-enter {
31086
+ animation-name: antFadeIn;
31087
+ animation-duration: 0.2s;
31088
+ animation-timing-function: linear;
31089
+ animation-fill-mode: both;
31090
+ }
31091
+ .ant-image-preview-fade-motion-leave {
31092
+ animation-name: antFadeOut;
31093
+ animation-duration: 0.2s;
31094
+ animation-timing-function: linear;
31095
+ animation-fill-mode: both;
31096
+ }
31319
31097
  .cdk-overlay-backdrop.ant-image-preview-mask {
31320
31098
  opacity: 1;
31321
31099
  }
@@ -31451,26 +31229,16 @@ nz-space-item {
31451
31229
  .ant-qrcode-expired {
31452
31230
  color: rgba(0, 0, 0, 0.85);
31453
31231
  }
31454
- .ant-water-mark {
31455
- position: relative;
31232
+ .ant-color-picker-inner {
31456
31233
  display: block;
31457
31234
  }
31458
- .ant-color-picker {
31459
- position: absolute;
31460
- z-index: 1;
31461
- display: block;
31462
- width: max-content;
31463
- min-width: 250px;
31464
- visibility: visible;
31465
- }
31466
- .ant-color-picker-hidden {
31467
- display: none;
31468
- }
31469
- .ant-color-picker-panel {
31235
+ .ant-color-picker-inner-content {
31470
31236
  display: flex;
31471
31237
  flex-direction: column;
31472
- width: 250px;
31473
- border-radius: 2px;
31238
+ width: 234px;
31239
+ }
31240
+ .ant-color-picker-panel {
31241
+ user-select: none;
31474
31242
  }
31475
31243
  .ant-color-picker-panel-disabled {
31476
31244
  cursor: not-allowed;
@@ -31481,8 +31249,10 @@ nz-space-item {
31481
31249
  }
31482
31250
  .ant-color-picker-palette {
31483
31251
  position: relative;
31252
+ display: block;
31484
31253
  }
31485
31254
  .ant-color-picker-select {
31255
+ display: block;
31486
31256
  margin-bottom: 12px;
31487
31257
  }
31488
31258
  .ant-color-picker-select .ant-color-picker-palette {
@@ -31507,6 +31277,7 @@ nz-space-item {
31507
31277
  z-index: 1;
31508
31278
  }
31509
31279
  .ant-color-picker-handler {
31280
+ display: block;
31510
31281
  box-sizing: border-box;
31511
31282
  width: 16px;
31512
31283
  height: 16px;
@@ -31518,7 +31289,7 @@ nz-space-item {
31518
31289
  height: 12px;
31519
31290
  }
31520
31291
  .ant-color-picker-slider {
31521
- width: 100%;
31292
+ display: block;
31522
31293
  border-radius: 2px;
31523
31294
  }
31524
31295
  .ant-color-picker-slider .ant-color-picker-palette {
@@ -31566,10 +31337,10 @@ nz-space-item {
31566
31337
  }
31567
31338
  .ant-color-picker-color-block {
31568
31339
  position: relative;
31569
- width: 28px;
31570
- height: 28px;
31340
+ display: block;
31341
+ width: 24px;
31342
+ height: 24px;
31571
31343
  overflow: hidden;
31572
- background-image: conic-gradient(rgba(0, 0, 0, 0.06) 0 25%, transparent 0 50%, rgba(0, 0, 0, 0.06) 0 75%, transparent 0);
31573
31344
  background-size: 50% 50%;
31574
31345
  border-radius: 2px;
31575
31346
  }
@@ -31629,6 +31400,7 @@ nz-space-item {
31629
31400
  }
31630
31401
  .ant-color-picker-input-container {
31631
31402
  display: flex;
31403
+ margin-bottom: 12px;
31632
31404
  }
31633
31405
  .ant-color-picker-input-container .ant-select {
31634
31406
  font-size: 12px;
@@ -31700,6 +31472,47 @@ nz-space-item {
31700
31472
  width: 16px;
31701
31473
  height: 16px;
31702
31474
  }
31475
+ .ant-color-picker-presets-wrapper {
31476
+ max-height: 200px;
31477
+ overflow-y: auto;
31478
+ }
31479
+ .ant-color-picker-presets-wrapper .ant-collapse {
31480
+ display: flex;
31481
+ flex-direction: column;
31482
+ gap: 4px;
31483
+ }
31484
+ .ant-color-picker-presets-wrapper .ant-collapse .ant-collapse-header {
31485
+ padding: 0 !important;
31486
+ font-size: 12px;
31487
+ }
31488
+ .ant-color-picker-presets-items {
31489
+ display: flex;
31490
+ flex-wrap: wrap;
31491
+ gap: 8px;
31492
+ padding: 8px 0;
31493
+ }
31494
+ .ant-color-picker-presets-color {
31495
+ position: relative;
31496
+ }
31497
+ .ant-color-picker-presets-color-checked::after {
31498
+ position: absolute;
31499
+ top: 50%;
31500
+ display: table;
31501
+ box-sizing: border-box;
31502
+ width: calc(120px / 13);
31503
+ height: calc(192px / 13);
31504
+ border: 2px solid #fff;
31505
+ border-top: 0;
31506
+ transform: translate(-50%, -60%) rotate(45deg);
31507
+ content: '';
31508
+ pointer-events: none;
31509
+ border-inline-start: 0;
31510
+ inset-inline-start: 46.5%;
31511
+ }
31512
+ .ant-color-picker-presets-color-bright.ant-color-picker-presets-color-checked::after,
31513
+ .ant-color-picker-presets-color-checked.ant-color-picker-presets-color-bright::after {
31514
+ border-color: rgba(0, 0, 0, 0.88);
31515
+ }
31703
31516
  .ant-hash-code {
31704
31517
  display: flex;
31705
31518
  flex-direction: column;
@@ -31826,21 +31639,17 @@ nz-space-item {
31826
31639
  }
31827
31640
  .ant-float-btn {
31828
31641
  position: fixed;
31642
+ bottom: 48px;
31829
31643
  z-index: 99;
31830
31644
  display: block;
31831
31645
  align-items: center;
31832
31646
  justify-content: center;
31833
31647
  width: 40px;
31834
31648
  height: 40px;
31835
- overflow: hidden;
31836
31649
  border: none;
31837
31650
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
31838
31651
  cursor: pointer;
31839
31652
  inset-inline-end: 24px;
31840
- inset-block-end: 48px;
31841
- }
31842
- .ant-float-btn-hidden {
31843
- display: none;
31844
31653
  }
31845
31654
  .ant-float-btn-pure {
31846
31655
  position: relative;
@@ -31849,6 +31658,16 @@ nz-space-item {
31849
31658
  .ant-float-btn:empty {
31850
31659
  display: none;
31851
31660
  }
31661
+ .ant-float-btn .ant-badge {
31662
+ width: 100%;
31663
+ height: 100%;
31664
+ }
31665
+ .ant-float-btn .ant-badge .ant-badge-count {
31666
+ top: -6px;
31667
+ transform: translate(0, 0);
31668
+ transform-origin: center;
31669
+ inset-inline-end: -6px;
31670
+ }
31852
31671
  .ant-float-btn-body {
31853
31672
  display: flex;
31854
31673
  align-items: center;
@@ -31863,7 +31682,7 @@ nz-space-item {
31863
31682
  align-items: center;
31864
31683
  justify-content: center;
31865
31684
  min-height: 40px;
31866
- padding: 2px 4px;
31685
+ padding: 4px / 2 4px;
31867
31686
  overflow: hidden;
31868
31687
  text-align: center;
31869
31688
  }
@@ -31890,6 +31709,11 @@ nz-space-item {
31890
31709
  height: 40px;
31891
31710
  border-radius: 50%;
31892
31711
  }
31712
+ .ant-float-btn-circle .ant-badge .ant-badge-dot {
31713
+ top: 5.6px;
31714
+ inset-inline-end: 5.6px;
31715
+ }
31716
+ .ant-float-btn-circle .ant-float-btn-inner,
31893
31717
  .ant-float-btn-circle .ant-float-btn-body {
31894
31718
  border-radius: 50%;
31895
31719
  }
@@ -31898,6 +31722,10 @@ nz-space-item {
31898
31722
  min-height: 40px;
31899
31723
  border-radius: 2px;
31900
31724
  }
31725
+ .ant-float-btn-square .ant-badge .ant-badge-dot {
31726
+ top: 1px;
31727
+ inset-inline-end: 1px;
31728
+ }
31901
31729
  .ant-float-btn-square .ant-float-btn-body {
31902
31730
  height: auto;
31903
31731
  border-radius: 2px;
@@ -32043,6 +31871,10 @@ nz-space-item {
32043
31871
  .ant-float-btn-group-square .ant-float-btn-square:not(:last-child) {
32044
31872
  border-bottom: 1px solid #d9d9d9;
32045
31873
  }
31874
+ .ant-float-btn-group-square .ant-float-btn-square .ant-badge .ant-badge-count {
31875
+ top: -10px;
31876
+ inset-inline-end: -10px;
31877
+ }
32046
31878
  .ant-float-btn-group-square .ant-float-btn-group-wrap {
32047
31879
  border-radius: 2px;
32048
31880
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
@@ -32099,6 +31931,203 @@ nz-space-item {
32099
31931
  width: 32px;
32100
31932
  height: 32px;
32101
31933
  }
31934
+ /* stylelint-disable less/no-duplicate-variables */
31935
+ .ant-float-btn-enter-top {
31936
+ animation: enter-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
31937
+ }
31938
+ .ant-float-btn-leave-top {
31939
+ animation: leave-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
31940
+ }
31941
+ .ant-float-btn-enter-bottom {
31942
+ animation: enter-bottom 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
31943
+ }
31944
+ .ant-float-btn-leave-bottom {
31945
+ animation: leave-bottom 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
31946
+ }
31947
+ .ant-float-btn-enter-left {
31948
+ animation: enter-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
31949
+ }
31950
+ .ant-float-btn-leave-left {
31951
+ animation: leave-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
31952
+ }
31953
+ .ant-float-btn-enter-right {
31954
+ animation: enter-right 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
31955
+ }
31956
+ .ant-float-btn-leave-right {
31957
+ animation: leave-right 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
31958
+ }
31959
+ @keyframes enter-top {
31960
+ from {
31961
+ transform: translateY(40px);
31962
+ opacity: 0;
31963
+ }
31964
+ to {
31965
+ transform: translateY(0);
31966
+ opacity: 1;
31967
+ }
31968
+ }
31969
+ @keyframes enter-top {
31970
+ from {
31971
+ transform: translateY(40px);
31972
+ opacity: 0;
31973
+ }
31974
+ to {
31975
+ transform: translateY(0);
31976
+ opacity: 1;
31977
+ }
31978
+ }
31979
+ @keyframes leave-top {
31980
+ from {
31981
+ transform: translateY(0);
31982
+ opacity: 1;
31983
+ }
31984
+ to {
31985
+ transform: translateY(40px);
31986
+ opacity: 0;
31987
+ }
31988
+ }
31989
+ @keyframes leave-top {
31990
+ from {
31991
+ transform: translateY(0);
31992
+ opacity: 1;
31993
+ }
31994
+ to {
31995
+ transform: translateY(40px);
31996
+ opacity: 0;
31997
+ }
31998
+ }
31999
+ @keyframes enter-bottom {
32000
+ from {
32001
+ transform: translateY(-40px);
32002
+ opacity: 0;
32003
+ }
32004
+ to {
32005
+ transform: translateY(0);
32006
+ opacity: 1;
32007
+ }
32008
+ }
32009
+ @keyframes enter-bottom {
32010
+ from {
32011
+ transform: translateY(-40px);
32012
+ opacity: 0;
32013
+ }
32014
+ to {
32015
+ transform: translateY(0);
32016
+ opacity: 1;
32017
+ }
32018
+ }
32019
+ @keyframes leave-bottom {
32020
+ from {
32021
+ transform: translateY(0);
32022
+ opacity: 1;
32023
+ }
32024
+ to {
32025
+ transform: translateY(-40px);
32026
+ opacity: 0;
32027
+ }
32028
+ }
32029
+ @keyframes leave-bottom {
32030
+ from {
32031
+ transform: translateY(0);
32032
+ opacity: 1;
32033
+ }
32034
+ to {
32035
+ transform: translateY(-40px);
32036
+ opacity: 0;
32037
+ }
32038
+ }
32039
+ @keyframes enter-left {
32040
+ from {
32041
+ transform: translateX(40px);
32042
+ opacity: 0;
32043
+ }
32044
+ to {
32045
+ transform: translateX(0);
32046
+ opacity: 1;
32047
+ }
32048
+ }
32049
+ @keyframes enter-left {
32050
+ from {
32051
+ transform: translateX(40px);
32052
+ opacity: 0;
32053
+ }
32054
+ to {
32055
+ transform: translateX(0);
32056
+ opacity: 1;
32057
+ }
32058
+ }
32059
+ @keyframes leave-left {
32060
+ from {
32061
+ transform: translateX(0);
32062
+ opacity: 1;
32063
+ }
32064
+ to {
32065
+ transform: translateX(40px);
32066
+ opacity: 0;
32067
+ }
32068
+ }
32069
+ @keyframes leave-left {
32070
+ from {
32071
+ transform: translateX(0);
32072
+ opacity: 1;
32073
+ }
32074
+ to {
32075
+ transform: translateX(40px);
32076
+ opacity: 0;
32077
+ }
32078
+ }
32079
+ @keyframes enter-right {
32080
+ from {
32081
+ transform: translateX(-40px);
32082
+ opacity: 0;
32083
+ }
32084
+ to {
32085
+ transform: translateX(0);
32086
+ opacity: 1;
32087
+ }
32088
+ }
32089
+ @keyframes enter-right {
32090
+ from {
32091
+ transform: translateX(-40px);
32092
+ opacity: 0;
32093
+ }
32094
+ to {
32095
+ transform: translateX(0);
32096
+ opacity: 1;
32097
+ }
32098
+ }
32099
+ @keyframes leave-right {
32100
+ from {
32101
+ transform: translateX(0);
32102
+ opacity: 1;
32103
+ }
32104
+ to {
32105
+ transform: translateX(-40px);
32106
+ opacity: 0;
32107
+ }
32108
+ }
32109
+ @keyframes leave-right {
32110
+ from {
32111
+ transform: translateX(0);
32112
+ opacity: 1;
32113
+ }
32114
+ to {
32115
+ transform: translateX(-40px);
32116
+ opacity: 0;
32117
+ }
32118
+ }
32119
+ .ant-float-btn-top .ant-float-btn-top-motion-enter {
32120
+ animation-name: antFadeIn;
32121
+ animation-duration: 0.2s;
32122
+ animation-timing-function: linear;
32123
+ animation-fill-mode: both;
32124
+ }
32125
+ .ant-float-btn-top .ant-float-btn-top-motion-leave {
32126
+ animation-name: antFadeOut;
32127
+ animation-duration: 0.2s;
32128
+ animation-timing-function: linear;
32129
+ animation-fill-mode: both;
32130
+ }
32102
32131
  .ant-check-list {
32103
32132
  position: fixed;
32104
32133
  right: 32px;
@@ -33156,6 +33185,9 @@ fieldset {
33156
33185
  .sf .ant-transfer .ant-btn + .ant-btn {
33157
33186
  margin-left: 0;
33158
33187
  }
33188
+ .sf .ant-mentions {
33189
+ display: inline-flex;
33190
+ }
33159
33191
  .sf__no-error .ant-form-item {
33160
33192
  margin-bottom: 8px;
33161
33193
  }
@@ -33266,7 +33298,6 @@ fieldset {
33266
33298
  }
33267
33299
  .setting-drawer__theme {
33268
33300
  overflow: hidden;
33269
- margin-top: 24px;
33270
33301
  }
33271
33302
  .setting-drawer__theme-tag {
33272
33303
  cursor: pointer;
@@ -33301,10 +33332,6 @@ fieldset {
33301
33332
  font-size: 20px;
33302
33333
  color: #fff;
33303
33334
  }
33304
- .setting-drawer__handle-opened {
33305
- z-index: 1001;
33306
- right: 500px;
33307
- }
33308
33335
  .setting-drawer-rtl {
33309
33336
  direction: rtl;
33310
33337
  }
@@ -35076,7 +35103,7 @@ code {
35076
35103
  */
35077
35104
  .fixed-top {
35078
35105
  position: fixed;
35079
- z-index: 9;
35106
+ z-index: 100;
35080
35107
  top: 0;
35081
35108
  right: 0;
35082
35109
  left: 0;
@@ -35088,7 +35115,7 @@ code {
35088
35115
  */
35089
35116
  .fixed-bottom {
35090
35117
  position: fixed;
35091
- z-index: 9;
35118
+ z-index: 100;
35092
35119
  right: 0;
35093
35120
  bottom: 0;
35094
35121
  left: 0;
@@ -36197,7 +36224,8 @@ body {
36197
36224
  font-size: 12px;
36198
36225
  color: var(--grey-7);
36199
36226
  }
36200
- .alain-default__content nz-input-group {
36227
+ .alain-default__content nz-input-group,
36228
+ .alain-default__content nz-input-wrapper {
36201
36229
  width: auto;
36202
36230
  }
36203
36231
  .alain-default__hide-aside .alain-default__content {
@@ -36229,7 +36257,7 @@ body {
36229
36257
  }
36230
36258
  }
36231
36259
  .alain-default__header {
36232
- z-index: 19;
36260
+ z-index: 110;
36233
36261
  display: flex;
36234
36262
  align-items: center;
36235
36263
  width: 100%;
@@ -36338,7 +36366,7 @@ body {
36338
36366
  .alain-default__search .ant-input-affix-wrapper {
36339
36367
  border: none;
36340
36368
  color: #fff;
36341
- background-color: #ffffff;
36369
+ background-color: rgba(255, 255, 255, 0.2);
36342
36370
  }
36343
36371
  .alain-default__search .ant-input::placeholder,
36344
36372
  .alain-default__search .ant-input-group-addon::placeholder,
@@ -36349,8 +36377,8 @@ body {
36349
36377
  .alain-default__search .ant-input-affix-wrapper .ant-input {
36350
36378
  background-color: transparent;
36351
36379
  }
36352
- .alain-default__search .ant-input-group-addon i,
36353
- .alain-default__search .ant-input-affix-wrapper i {
36380
+ .alain-default__search .ant-input-group-addon .anticon,
36381
+ .alain-default__search .ant-input-affix-wrapper .anticon {
36354
36382
  color: #fff;
36355
36383
  transition: color 300ms,
36356
36384
  transform 400ms;
@@ -36367,15 +36395,15 @@ body {
36367
36395
  color: var(--grey-8);
36368
36396
  opacity: 1;
36369
36397
  }
36370
- .alain-default__search-focus .ant-input-group-addon i,
36371
- .alain-default__search-focus .ant-input-affix-wrapper i {
36398
+ .alain-default__search-focus .ant-input-group-addon .anticon,
36399
+ .alain-default__search-focus .ant-input-affix-wrapper .anticon {
36372
36400
  transform: rotate(90deg);
36373
36401
  color: var(--grey-8);
36374
36402
  }
36375
36403
  @media (max-width: 767px) {
36376
36404
  .alain-default__search {
36377
36405
  position: absolute;
36378
- z-index: 29;
36406
+ z-index: 120;
36379
36407
  top: 0;
36380
36408
  left: 0;
36381
36409
  align-items: center;
@@ -36419,7 +36447,7 @@ body {
36419
36447
  }
36420
36448
  .alain-default__aside {
36421
36449
  position: absolute;
36422
- z-index: 14;
36450
+ z-index: 105;
36423
36451
  top: 0;
36424
36452
  bottom: 0;
36425
36453
  overflow: hidden;
@@ -36506,7 +36534,7 @@ body {
36506
36534
  }
36507
36535
  .alain-default__progress-bar {
36508
36536
  position: fixed;
36509
- z-index: 29;
36537
+ z-index: 120;
36510
36538
  overflow: hidden;
36511
36539
  width: 100vw;
36512
36540
  height: 4px;
@@ -36682,7 +36710,7 @@ body {
36682
36710
  }
36683
36711
  .sidebar-nav__floating {
36684
36712
  position: absolute;
36685
- z-index: 16;
36713
+ z-index: 107;
36686
36714
  display: none;
36687
36715
  min-width: 160px;
36688
36716
  border: 1px solid var(--alain-default-heading-border, #efe3e5);
@@ -36800,7 +36828,7 @@ body {
36800
36828
  }
36801
36829
  .alain-default__fixed .reuse-tab {
36802
36830
  position: fixed;
36803
- z-index: 10;
36831
+ z-index: 101;
36804
36832
  top: var(--alain-default-header-hg, 64px);
36805
36833
  right: 24px;
36806
36834
  left: 224px;
@@ -37473,7 +37501,7 @@ ellipsis {
37473
37501
  }
37474
37502
  .footer-toolbar {
37475
37503
  position: fixed;
37476
- z-index: 9;
37504
+ z-index: 100;
37477
37505
  right: 0;
37478
37506
  bottom: 0;
37479
37507
  display: flex;
@@ -37775,7 +37803,7 @@ ellipsis {
37775
37803
  }
37776
37804
  .quick-menu {
37777
37805
  position: fixed;
37778
- z-index: 11;
37806
+ z-index: 102;
37779
37807
  right: -1px;
37780
37808
  left: auto;
37781
37809
  display: block;
@@ -38035,7 +38063,7 @@ ellipsis {
38035
38063
  .cell__small {
38036
38064
  font-size: 12px;
38037
38065
  }
38038
- .cell[data-type="img"] .img:not(:last-child) {
38066
+ .cell[data-type='img'] .img:not(:last-child) {
38039
38067
  margin-right: 4px;
38040
38068
  }
38041
38069
  .cell .img {
@@ -38047,10 +38075,10 @@ ellipsis {
38047
38075
  font-size: 12px;
38048
38076
  color: rgba(0, 0, 0, 0.45);
38049
38077
  }
38050
- .cell__disabled[data-type="link"] {
38078
+ .cell__disabled[data-type='link'] {
38051
38079
  pointer-events: none;
38052
38080
  }
38053
- .cell__disabled[data-type="link"] > a {
38081
+ .cell__disabled[data-type='link'] > a {
38054
38082
  color: rgba(0, 0, 0, 0.85);
38055
38083
  }
38056
38084
  g2-chart,