acud 1.0.21 → 1.0.22
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/CHANGELOG.md +141 -0
- package/dist/acud.css +543 -246
- package/dist/acud.css.map +1 -1
- package/dist/acud.js +18655 -17994
- package/dist/acud.js.map +1 -1
- package/dist/acud.min.css +1 -1
- package/dist/acud.min.css.map +1 -1
- package/dist/acud.min.js +11 -11
- package/dist/acud.min.js.map +1 -1
- package/es/avatar/SizeContext.d.ts +10 -0
- package/es/avatar/SizeContext.js +12 -0
- package/es/avatar/avatar.d.ts +25 -0
- package/es/avatar/avatar.js +206 -0
- package/es/avatar/group.d.ts +15 -0
- package/es/avatar/group.js +64 -0
- package/es/avatar/index.d.ts +11 -0
- package/es/avatar/index.js +6 -0
- package/es/avatar/style/css.js +5 -0
- package/es/avatar/style/group.less +17 -0
- package/es/avatar/style/index.css +108 -0
- package/es/avatar/style/index.d.ts +3 -0
- package/es/avatar/style/index.js +5 -0
- package/es/avatar/style/index.less +68 -0
- package/es/avatar/style/rtl.less +15 -0
- package/es/divider/index.d.ts +14 -0
- package/es/divider/index.js +63 -0
- package/es/divider/style/css.js +2 -0
- package/es/divider/style/index.css +126 -0
- package/es/divider/style/index.d.ts +2 -0
- package/es/divider/style/index.js +2 -0
- package/es/divider/style/index.less +137 -0
- package/es/divider/style/rtl.less +38 -0
- package/es/dropdown/style/index.css +4 -4
- package/es/dropdown/style/index.less +5 -5
- package/es/grid/hooks/useBreakpoint.d.ts +1 -1
- package/es/grid/hooks/useBreakpoint.js +11 -9
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/es/menu/style/index.css +16 -12
- package/es/menu/style/index.less +5 -3
- package/es/menu/style/sider.less +2 -0
- package/es/modal/DialogBox.d.ts +2 -2
- package/es/modal/DialogBox.js +3 -2
- package/es/pagination/rc-pagination/Pagination.js +0 -1
- package/es/style/themes/default/components/avatar.less +13 -0
- package/es/style/themes/default/components/divider.less +6 -0
- package/es/style/themes/default/components/index.less +2 -0
- package/es/table/style/index.css +4 -3
- package/es/table/style/index.less +4 -0
- package/es/tag/style/index.css +46 -0
- package/es/tag/style/index.less +37 -0
- package/es/tree-select/index.d.ts +4 -4
- package/es/tree-select/index.js +1 -1
- package/es/tree-select/src/LegacyContext.d.ts +24 -0
- package/es/tree-select/src/LegacyContext.js +3 -0
- package/es/tree-select/src/OptionList.d.ts +8 -0
- package/es/tree-select/src/OptionList.js +340 -0
- package/es/tree-select/src/TreeNode.d.ts +9 -0
- package/es/tree-select/src/TreeNode.js +6 -0
- package/es/tree-select/src/TreeSelect.d.ts +122 -0
- package/es/tree-select/src/TreeSelect.js +534 -0
- package/es/tree-select/src/TreeSelectContext.d.ts +16 -0
- package/es/tree-select/src/TreeSelectContext.js +3 -0
- package/es/tree-select/src/hooks/useCache.d.ts +7 -0
- package/es/tree-select/src/hooks/useCache.js +29 -0
- package/es/tree-select/src/hooks/useCheckedKeys.d.ts +5 -0
- package/es/tree-select/src/hooks/useCheckedKeys.js +29 -0
- package/es/tree-select/src/hooks/useDataEntities.d.ts +7 -0
- package/es/tree-select/src/hooks/useDataEntities.js +30 -0
- package/es/tree-select/src/hooks/useFilterTreeData.d.ts +7 -0
- package/es/tree-select/src/hooks/useFilterTreeData.js +49 -0
- package/es/tree-select/src/hooks/useRefFunc.d.ts +5 -0
- package/es/tree-select/src/hooks/useRefFunc.js +14 -0
- package/es/tree-select/src/hooks/useTreeData.d.ts +8 -0
- package/es/tree-select/src/hooks/useTreeData.js +55 -0
- package/es/tree-select/src/index.d.ts +7 -0
- package/es/tree-select/src/index.js +9 -0
- package/es/tree-select/src/interface.d.ts +77 -0
- package/es/tree-select/src/interface.js +1 -0
- package/es/tree-select/src/utils/legacyUtil.d.ts +6 -0
- package/es/tree-select/src/utils/legacyUtil.js +144 -0
- package/es/tree-select/src/utils/strategyUtil.d.ts +9 -0
- package/es/tree-select/src/utils/strategyUtil.js +40 -0
- package/es/tree-select/src/utils/valueUtil.d.ts +14 -0
- package/es/tree-select/src/utils/valueUtil.js +46 -0
- package/es/tree-select/src/utils/warningPropsUtil.d.ts +5 -0
- package/es/tree-select/src/utils/warningPropsUtil.js +31 -0
- package/es/tree-select/style/index.css +10 -0
- package/es/tree-select/style/index.less +11 -0
- package/lib/avatar/SizeContext.d.ts +10 -0
- package/lib/avatar/SizeContext.js +26 -0
- package/lib/avatar/avatar.d.ts +25 -0
- package/lib/avatar/avatar.js +233 -0
- package/lib/avatar/group.d.ts +15 -0
- package/lib/avatar/group.js +88 -0
- package/lib/avatar/index.d.ts +11 -0
- package/lib/avatar/index.js +23 -0
- package/lib/avatar/style/css.js +7 -0
- package/lib/avatar/style/group.less +17 -0
- package/lib/avatar/style/index.css +108 -0
- package/lib/avatar/style/index.d.ts +3 -0
- package/lib/avatar/style/index.js +7 -0
- package/lib/avatar/style/index.less +68 -0
- package/lib/avatar/style/rtl.less +15 -0
- package/lib/divider/index.d.ts +14 -0
- package/lib/divider/index.js +74 -0
- package/lib/divider/style/css.js +5 -0
- package/lib/divider/style/index.css +126 -0
- package/lib/divider/style/index.d.ts +2 -0
- package/lib/divider/style/index.js +5 -0
- package/lib/divider/style/index.less +137 -0
- package/lib/divider/style/rtl.less +38 -0
- package/lib/dropdown/style/index.css +4 -4
- package/lib/dropdown/style/index.less +5 -5
- package/lib/grid/hooks/useBreakpoint.d.ts +1 -1
- package/lib/grid/hooks/useBreakpoint.js +11 -9
- package/lib/index.d.ts +2 -0
- package/lib/index.js +16 -0
- package/lib/menu/style/index.css +16 -12
- package/lib/menu/style/index.less +5 -3
- package/lib/menu/style/sider.less +2 -0
- package/lib/modal/DialogBox.d.ts +2 -2
- package/lib/modal/DialogBox.js +3 -2
- package/lib/pagination/rc-pagination/Pagination.js +0 -1
- package/lib/style/components.less +2 -0
- package/lib/style/themes/default/components/avatar.less +13 -0
- package/lib/style/themes/default/components/divider.less +6 -0
- package/lib/style/themes/default/components/index.less +2 -0
- package/lib/table/style/index.css +4 -3
- package/lib/table/style/index.less +4 -0
- package/lib/tag/style/index.css +46 -0
- package/lib/tag/style/index.less +37 -0
- package/lib/tree-select/index.d.ts +4 -4
- package/lib/tree-select/index.js +7 -7
- package/lib/tree-select/src/LegacyContext.d.ts +24 -0
- package/lib/tree-select/src/LegacyContext.js +18 -0
- package/lib/tree-select/src/OptionList.d.ts +8 -0
- package/lib/tree-select/src/OptionList.js +368 -0
- package/lib/tree-select/src/TreeNode.d.ts +9 -0
- package/lib/tree-select/src/TreeNode.js +14 -0
- package/lib/tree-select/src/TreeSelect.d.ts +122 -0
- package/lib/tree-select/src/TreeSelect.js +572 -0
- package/lib/tree-select/src/TreeSelectContext.d.ts +16 -0
- package/lib/tree-select/src/TreeSelectContext.js +18 -0
- package/lib/tree-select/src/hooks/useCache.d.ts +7 -0
- package/lib/tree-select/src/hooks/useCache.js +47 -0
- package/lib/tree-select/src/hooks/useCheckedKeys.d.ts +5 -0
- package/lib/tree-select/src/hooks/useCheckedKeys.js +49 -0
- package/lib/tree-select/src/hooks/useDataEntities.d.ts +7 -0
- package/lib/tree-select/src/hooks/useDataEntities.js +52 -0
- package/lib/tree-select/src/hooks/useFilterTreeData.d.ts +7 -0
- package/lib/tree-select/src/hooks/useFilterTreeData.js +70 -0
- package/lib/tree-select/src/hooks/useRefFunc.d.ts +5 -0
- package/lib/tree-select/src/hooks/useRefFunc.js +27 -0
- package/lib/tree-select/src/hooks/useTreeData.d.ts +8 -0
- package/lib/tree-select/src/hooks/useTreeData.js +71 -0
- package/lib/tree-select/src/index.d.ts +7 -0
- package/lib/tree-select/src/index.js +45 -0
- package/lib/tree-select/src/interface.d.ts +77 -0
- package/lib/tree-select/src/interface.js +5 -0
- package/lib/tree-select/src/utils/legacyUtil.d.ts +6 -0
- package/lib/tree-select/src/utils/legacyUtil.js +166 -0
- package/lib/tree-select/src/utils/strategyUtil.d.ts +9 -0
- package/lib/tree-select/src/utils/strategyUtil.js +53 -0
- package/lib/tree-select/src/utils/valueUtil.d.ts +14 -0
- package/lib/tree-select/src/utils/valueUtil.js +61 -0
- package/lib/tree-select/src/utils/warningPropsUtil.d.ts +5 -0
- package/lib/tree-select/src/utils/warningPropsUtil.js +43 -0
- package/lib/tree-select/style/index.css +10 -0
- package/lib/tree-select/style/index.less +11 -0
- package/package.json +1 -1
package/dist/acud.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! acud v1.0.
|
|
1
|
+
/*! acud v1.0.22 */
|
|
2
2
|
/* color */
|
|
3
3
|
/* 默认颜色 */
|
|
4
4
|
/* 通用-icon */
|
|
@@ -1389,6 +1389,330 @@ a {
|
|
|
1389
1389
|
padding: 20px 20px 20px 0;
|
|
1390
1390
|
}
|
|
1391
1391
|
|
|
1392
|
+
/* color */
|
|
1393
|
+
/* 默认颜色 */
|
|
1394
|
+
/* 通用-icon */
|
|
1395
|
+
/* 标签 */
|
|
1396
|
+
/* 默认颜色 */
|
|
1397
|
+
/* 其他颜色 */
|
|
1398
|
+
/* 通用 */
|
|
1399
|
+
/* 水平 */
|
|
1400
|
+
/* 垂直 */
|
|
1401
|
+
/* 序号水平 */
|
|
1402
|
+
/* 序号垂直 */
|
|
1403
|
+
.acud-avatar {
|
|
1404
|
+
margin: 0;
|
|
1405
|
+
padding: 0;
|
|
1406
|
+
position: relative;
|
|
1407
|
+
display: inline-block;
|
|
1408
|
+
overflow: hidden;
|
|
1409
|
+
color: #fff;
|
|
1410
|
+
white-space: nowrap;
|
|
1411
|
+
text-align: center;
|
|
1412
|
+
vertical-align: middle;
|
|
1413
|
+
background: #ccc;
|
|
1414
|
+
width: 32px;
|
|
1415
|
+
height: 32px;
|
|
1416
|
+
line-height: 32px;
|
|
1417
|
+
border-radius: 50%;
|
|
1418
|
+
}
|
|
1419
|
+
.acud-avatar-image {
|
|
1420
|
+
background: transparent;
|
|
1421
|
+
}
|
|
1422
|
+
.acud-avatar .acud-image-img {
|
|
1423
|
+
display: block;
|
|
1424
|
+
}
|
|
1425
|
+
.acud-avatar-string {
|
|
1426
|
+
position: absolute;
|
|
1427
|
+
left: 50%;
|
|
1428
|
+
transform-origin: 0 center;
|
|
1429
|
+
}
|
|
1430
|
+
.acud-avatar.acud-avatar-icon {
|
|
1431
|
+
font-size: 18px;
|
|
1432
|
+
}
|
|
1433
|
+
.acud-avatar.acud-avatar-icon > .acudicon {
|
|
1434
|
+
margin: 0;
|
|
1435
|
+
}
|
|
1436
|
+
.acud-avatar-lg {
|
|
1437
|
+
width: 40px;
|
|
1438
|
+
height: 40px;
|
|
1439
|
+
line-height: 40px;
|
|
1440
|
+
border-radius: 50%;
|
|
1441
|
+
}
|
|
1442
|
+
.acud-avatar-lg-string {
|
|
1443
|
+
position: absolute;
|
|
1444
|
+
left: 50%;
|
|
1445
|
+
transform-origin: 0 center;
|
|
1446
|
+
}
|
|
1447
|
+
.acud-avatar-lg.acud-avatar-icon {
|
|
1448
|
+
font-size: 24px;
|
|
1449
|
+
}
|
|
1450
|
+
.acud-avatar-lg.acud-avatar-icon > .acudicon {
|
|
1451
|
+
margin: 0;
|
|
1452
|
+
}
|
|
1453
|
+
.acud-avatar-sm {
|
|
1454
|
+
width: 24px;
|
|
1455
|
+
height: 24px;
|
|
1456
|
+
line-height: 24px;
|
|
1457
|
+
border-radius: 50%;
|
|
1458
|
+
}
|
|
1459
|
+
.acud-avatar-sm-string {
|
|
1460
|
+
position: absolute;
|
|
1461
|
+
left: 50%;
|
|
1462
|
+
transform-origin: 0 center;
|
|
1463
|
+
}
|
|
1464
|
+
.acud-avatar-sm.acud-avatar-icon {
|
|
1465
|
+
font-size: 14px;
|
|
1466
|
+
}
|
|
1467
|
+
.acud-avatar-sm.acud-avatar-icon > .acudicon {
|
|
1468
|
+
margin: 0;
|
|
1469
|
+
}
|
|
1470
|
+
.acud-avatar-square {
|
|
1471
|
+
border-radius: 0px;
|
|
1472
|
+
}
|
|
1473
|
+
.acud-avatar > img {
|
|
1474
|
+
display: block;
|
|
1475
|
+
width: 100%;
|
|
1476
|
+
height: 100%;
|
|
1477
|
+
-o-object-fit: cover;
|
|
1478
|
+
object-fit: cover;
|
|
1479
|
+
}
|
|
1480
|
+
.acud-avatar-group {
|
|
1481
|
+
display: inline-flex;
|
|
1482
|
+
}
|
|
1483
|
+
.acud-avatar-group .acud-avatar {
|
|
1484
|
+
border: 1px solid #fff;
|
|
1485
|
+
}
|
|
1486
|
+
.acud-avatar-group .acud-avatar:not(:first-child) {
|
|
1487
|
+
margin-left: -8px;
|
|
1488
|
+
}
|
|
1489
|
+
.acud-avatar-group-popover .acud-avatar + .acud-avatar {
|
|
1490
|
+
margin-left: 3px;
|
|
1491
|
+
}
|
|
1492
|
+
.acud-avatar-group-rtl .acud-avatar:not(:first-child) {
|
|
1493
|
+
margin-right: -8px;
|
|
1494
|
+
margin-left: 0;
|
|
1495
|
+
}
|
|
1496
|
+
.acud-avatar-group-popover.acud-popover-rtl .acud-avatar + .acud-avatar {
|
|
1497
|
+
margin-right: 3px;
|
|
1498
|
+
margin-left: 0;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
/* color */
|
|
1502
|
+
/* 默认颜色 */
|
|
1503
|
+
/* 通用-icon */
|
|
1504
|
+
/* 标签 */
|
|
1505
|
+
/* 默认颜色 */
|
|
1506
|
+
/* 其他颜色 */
|
|
1507
|
+
/* 通用 */
|
|
1508
|
+
/* 水平 */
|
|
1509
|
+
/* 垂直 */
|
|
1510
|
+
/* 序号水平 */
|
|
1511
|
+
/* 序号垂直 */
|
|
1512
|
+
.acud-popover {
|
|
1513
|
+
margin: 0;
|
|
1514
|
+
padding: 0;
|
|
1515
|
+
position: absolute;
|
|
1516
|
+
top: 0;
|
|
1517
|
+
left: 0;
|
|
1518
|
+
z-index: 1030;
|
|
1519
|
+
font-weight: normal;
|
|
1520
|
+
white-space: normal;
|
|
1521
|
+
text-align: left;
|
|
1522
|
+
cursor: auto;
|
|
1523
|
+
-webkit-user-select: text;
|
|
1524
|
+
-moz-user-select: text;
|
|
1525
|
+
user-select: text;
|
|
1526
|
+
}
|
|
1527
|
+
.acud-popover::after {
|
|
1528
|
+
position: absolute;
|
|
1529
|
+
background: rgba(255, 255, 255, 0.01);
|
|
1530
|
+
content: '';
|
|
1531
|
+
}
|
|
1532
|
+
.acud-popover-hidden {
|
|
1533
|
+
display: none;
|
|
1534
|
+
}
|
|
1535
|
+
.acud-popover-placement-top,
|
|
1536
|
+
.acud-popover-placement-topLeft,
|
|
1537
|
+
.acud-popover-placement-topRight {
|
|
1538
|
+
padding-bottom: 10px;
|
|
1539
|
+
}
|
|
1540
|
+
.acud-popover-placement-right,
|
|
1541
|
+
.acud-popover-placement-rightTop,
|
|
1542
|
+
.acud-popover-placement-rightBottom {
|
|
1543
|
+
padding-left: 10px;
|
|
1544
|
+
}
|
|
1545
|
+
.acud-popover-placement-bottom,
|
|
1546
|
+
.acud-popover-placement-bottomLeft,
|
|
1547
|
+
.acud-popover-placement-bottomRight {
|
|
1548
|
+
padding-top: 10px;
|
|
1549
|
+
}
|
|
1550
|
+
.acud-popover-placement-left,
|
|
1551
|
+
.acud-popover-placement-leftTop,
|
|
1552
|
+
.acud-popover-placement-leftBottom {
|
|
1553
|
+
padding-right: 10px;
|
|
1554
|
+
}
|
|
1555
|
+
.acud-popover-inner {
|
|
1556
|
+
padding: 12px 12px;
|
|
1557
|
+
background-color: #FFFFFF;
|
|
1558
|
+
background-clip: padding-box;
|
|
1559
|
+
border-radius: 2px;
|
|
1560
|
+
box-shadow: 0px 4px 12px 1px rgba(7, 12, 20, 0.12);
|
|
1561
|
+
box-shadow: 0 0 8px #FFFFFF \9;
|
|
1562
|
+
border-radius: 4px;
|
|
1563
|
+
}
|
|
1564
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
1565
|
+
.acud-popover {
|
|
1566
|
+
/* IE10+ */
|
|
1567
|
+
}
|
|
1568
|
+
.acud-popover-inner {
|
|
1569
|
+
box-shadow: 0px 4px 12px 1px rgba(7, 12, 20, 0.12);
|
|
1570
|
+
}
|
|
1571
|
+
}
|
|
1572
|
+
.acud-popover-title {
|
|
1573
|
+
margin: 0;
|
|
1574
|
+
padding-bottom: 1px;
|
|
1575
|
+
color: #151B26;
|
|
1576
|
+
font-size: 12px;
|
|
1577
|
+
font-weight: 500;
|
|
1578
|
+
}
|
|
1579
|
+
.acud-popover-inner-content {
|
|
1580
|
+
color: #151B26;
|
|
1581
|
+
font-size: 12px;
|
|
1582
|
+
}
|
|
1583
|
+
.acud-popover-inner-content .acudicon-outlined-close {
|
|
1584
|
+
padding-left: 12px;
|
|
1585
|
+
font-size: 16px;
|
|
1586
|
+
color: #84868C;
|
|
1587
|
+
}
|
|
1588
|
+
.acud-popover-message {
|
|
1589
|
+
position: relative;
|
|
1590
|
+
padding: 4px 0 12px;
|
|
1591
|
+
color: #151B26;
|
|
1592
|
+
font-size: 12px;
|
|
1593
|
+
}
|
|
1594
|
+
.acud-popover-message > .acudicon {
|
|
1595
|
+
position: absolute;
|
|
1596
|
+
top: 8.0002px;
|
|
1597
|
+
color: #FF9326;
|
|
1598
|
+
font-size: 12px;
|
|
1599
|
+
}
|
|
1600
|
+
.acud-popover-message-title {
|
|
1601
|
+
padding-left: 20px;
|
|
1602
|
+
}
|
|
1603
|
+
.acud-popover-buttons {
|
|
1604
|
+
margin-bottom: 4px;
|
|
1605
|
+
text-align: right;
|
|
1606
|
+
}
|
|
1607
|
+
.acud-popover-buttons button {
|
|
1608
|
+
margin-left: 8px;
|
|
1609
|
+
}
|
|
1610
|
+
.acud-popover-arrow {
|
|
1611
|
+
position: absolute;
|
|
1612
|
+
display: block;
|
|
1613
|
+
width: 8.48528137px;
|
|
1614
|
+
height: 8.48528137px;
|
|
1615
|
+
background: transparent;
|
|
1616
|
+
border-style: solid;
|
|
1617
|
+
border-width: 4.24264069px;
|
|
1618
|
+
transform: rotate(45deg);
|
|
1619
|
+
}
|
|
1620
|
+
.acud-popover-placement-top > .acud-popover-content > .acud-popover-arrow,
|
|
1621
|
+
.acud-popover-placement-topLeft > .acud-popover-content > .acud-popover-arrow,
|
|
1622
|
+
.acud-popover-placement-topRight > .acud-popover-content > .acud-popover-arrow {
|
|
1623
|
+
bottom: 6.2px;
|
|
1624
|
+
border-top-color: transparent;
|
|
1625
|
+
border-right-color: #FFFFFF;
|
|
1626
|
+
border-bottom-color: #FFFFFF;
|
|
1627
|
+
border-left-color: transparent;
|
|
1628
|
+
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
1629
|
+
}
|
|
1630
|
+
.acud-popover-placement-top > .acud-popover-content > .acud-popover-arrow {
|
|
1631
|
+
left: 50%;
|
|
1632
|
+
transform: translateX(-50%) rotate(45deg);
|
|
1633
|
+
}
|
|
1634
|
+
.acud-popover-placement-topLeft > .acud-popover-content > .acud-popover-arrow {
|
|
1635
|
+
left: 16px;
|
|
1636
|
+
}
|
|
1637
|
+
.acud-popover-placement-topRight > .acud-popover-content > .acud-popover-arrow {
|
|
1638
|
+
right: 16px;
|
|
1639
|
+
}
|
|
1640
|
+
.acud-popover-placement-right > .acud-popover-content > .acud-popover-arrow,
|
|
1641
|
+
.acud-popover-placement-rightTop > .acud-popover-content > .acud-popover-arrow,
|
|
1642
|
+
.acud-popover-placement-rightBottom > .acud-popover-content > .acud-popover-arrow {
|
|
1643
|
+
left: 6px;
|
|
1644
|
+
border-top-color: transparent;
|
|
1645
|
+
border-right-color: transparent;
|
|
1646
|
+
border-bottom-color: #FFFFFF;
|
|
1647
|
+
border-left-color: #FFFFFF;
|
|
1648
|
+
box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
1649
|
+
}
|
|
1650
|
+
.acud-popover-placement-right > .acud-popover-content > .acud-popover-arrow {
|
|
1651
|
+
top: 50%;
|
|
1652
|
+
transform: translateY(-50%) rotate(45deg);
|
|
1653
|
+
}
|
|
1654
|
+
.acud-popover-placement-rightTop > .acud-popover-content > .acud-popover-arrow {
|
|
1655
|
+
top: 12px;
|
|
1656
|
+
}
|
|
1657
|
+
.acud-popover-placement-rightBottom > .acud-popover-content > .acud-popover-arrow {
|
|
1658
|
+
bottom: 12px;
|
|
1659
|
+
}
|
|
1660
|
+
.acud-popover-placement-bottom > .acud-popover-content > .acud-popover-arrow,
|
|
1661
|
+
.acud-popover-placement-bottomLeft > .acud-popover-content > .acud-popover-arrow,
|
|
1662
|
+
.acud-popover-placement-bottomRight > .acud-popover-content > .acud-popover-arrow {
|
|
1663
|
+
top: 6px;
|
|
1664
|
+
border-top-color: #FFFFFF;
|
|
1665
|
+
border-right-color: transparent;
|
|
1666
|
+
border-bottom-color: transparent;
|
|
1667
|
+
border-left-color: #FFFFFF;
|
|
1668
|
+
box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
|
|
1669
|
+
}
|
|
1670
|
+
.acud-popover-placement-bottom > .acud-popover-content > .acud-popover-arrow {
|
|
1671
|
+
left: 50%;
|
|
1672
|
+
transform: translateX(-50%) rotate(45deg);
|
|
1673
|
+
}
|
|
1674
|
+
.acud-popover-placement-bottomLeft > .acud-popover-content > .acud-popover-arrow {
|
|
1675
|
+
left: 16px;
|
|
1676
|
+
}
|
|
1677
|
+
.acud-popover-placement-bottomRight > .acud-popover-content > .acud-popover-arrow {
|
|
1678
|
+
right: 16px;
|
|
1679
|
+
}
|
|
1680
|
+
.acud-popover-placement-left > .acud-popover-content > .acud-popover-arrow,
|
|
1681
|
+
.acud-popover-placement-leftTop > .acud-popover-content > .acud-popover-arrow,
|
|
1682
|
+
.acud-popover-placement-leftBottom > .acud-popover-content > .acud-popover-arrow {
|
|
1683
|
+
right: 6px;
|
|
1684
|
+
border-top-color: #FFFFFF;
|
|
1685
|
+
border-right-color: #FFFFFF;
|
|
1686
|
+
border-bottom-color: transparent;
|
|
1687
|
+
border-left-color: transparent;
|
|
1688
|
+
box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
|
|
1689
|
+
}
|
|
1690
|
+
.acud-popover-placement-left > .acud-popover-content > .acud-popover-arrow {
|
|
1691
|
+
top: 50%;
|
|
1692
|
+
transform: translateY(-50%) rotate(45deg);
|
|
1693
|
+
}
|
|
1694
|
+
.acud-popover-placement-leftTop > .acud-popover-content > .acud-popover-arrow {
|
|
1695
|
+
top: 12px;
|
|
1696
|
+
}
|
|
1697
|
+
.acud-popover-placement-leftBottom > .acud-popover-content > .acud-popover-arrow {
|
|
1698
|
+
bottom: 12px;
|
|
1699
|
+
}
|
|
1700
|
+
.acud-popover-rtl {
|
|
1701
|
+
direction: rtl;
|
|
1702
|
+
text-align: right;
|
|
1703
|
+
}
|
|
1704
|
+
.acud-popover-rtl .acud-popover-message-title {
|
|
1705
|
+
padding-right: 20px;
|
|
1706
|
+
padding-left: 12px;
|
|
1707
|
+
}
|
|
1708
|
+
.acud-popover-rtl .acud-popover-buttons {
|
|
1709
|
+
text-align: left;
|
|
1710
|
+
}
|
|
1711
|
+
.acud-popover-rtl .acud-popover-buttons button {
|
|
1712
|
+
margin-right: 8px;
|
|
1713
|
+
margin-left: 0;
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1392
1716
|
/* color */
|
|
1393
1717
|
/* 默认颜色 */
|
|
1394
1718
|
/* 通用-icon */
|
|
@@ -11138,6 +11462,52 @@ a {
|
|
|
11138
11462
|
color: #84868C;
|
|
11139
11463
|
background-color: #E8E9EB;
|
|
11140
11464
|
}
|
|
11465
|
+
.acud-tag .circle {
|
|
11466
|
+
display: inline-block;
|
|
11467
|
+
width: 8px;
|
|
11468
|
+
height: 8px;
|
|
11469
|
+
border-radius: 8px;
|
|
11470
|
+
margin-right: 8px;
|
|
11471
|
+
}
|
|
11472
|
+
.acud-tag .circle.status-inactive {
|
|
11473
|
+
background: #D4D6D9;
|
|
11474
|
+
}
|
|
11475
|
+
.acud-tag .circle.status-active {
|
|
11476
|
+
background: #2468F2;
|
|
11477
|
+
}
|
|
11478
|
+
.acud-tag .circle.status-processing {
|
|
11479
|
+
background: #528EFF;
|
|
11480
|
+
}
|
|
11481
|
+
.acud-tag .circle.status-success {
|
|
11482
|
+
background: #30BF13;
|
|
11483
|
+
}
|
|
11484
|
+
.acud-tag .circle.status-error {
|
|
11485
|
+
background: #F33E3E;
|
|
11486
|
+
}
|
|
11487
|
+
.acud-tag .circle.status-warning {
|
|
11488
|
+
background: #FF9326;
|
|
11489
|
+
}
|
|
11490
|
+
.acud-tag .circle.status-processing {
|
|
11491
|
+
box-shadow: 0 0 0 2px #D4E5FF;
|
|
11492
|
+
-webkit-animation: flash 1s ease infinite;
|
|
11493
|
+
animation: flash 1s ease infinite;
|
|
11494
|
+
}
|
|
11495
|
+
@-webkit-keyframes flash {
|
|
11496
|
+
from {
|
|
11497
|
+
transform: scale(0.7);
|
|
11498
|
+
}
|
|
11499
|
+
to {
|
|
11500
|
+
transform: scale(1);
|
|
11501
|
+
}
|
|
11502
|
+
}
|
|
11503
|
+
@keyframes flash {
|
|
11504
|
+
from {
|
|
11505
|
+
transform: scale(0.7);
|
|
11506
|
+
}
|
|
11507
|
+
to {
|
|
11508
|
+
transform: scale(1);
|
|
11509
|
+
}
|
|
11510
|
+
}
|
|
11141
11511
|
.acud-tag.acud-tag-rtl {
|
|
11142
11512
|
margin-right: 0;
|
|
11143
11513
|
margin-left: 8px;
|
|
@@ -13568,20 +13938,147 @@ _:-ms-fullscreen .acud-picker-range-wrapper .acud-picker-year-panel .acud-picker
|
|
|
13568
13938
|
line-height: 20px;
|
|
13569
13939
|
word-wrap: break-word;
|
|
13570
13940
|
}
|
|
13571
|
-
.acud-dialogbox-footer {
|
|
13941
|
+
.acud-dialogbox-footer {
|
|
13942
|
+
width: 100%;
|
|
13943
|
+
padding: 0 24px 24px;
|
|
13944
|
+
box-sizing: border-box;
|
|
13945
|
+
overflow: hidden;
|
|
13946
|
+
text-align: right;
|
|
13947
|
+
}
|
|
13948
|
+
.acud-dialogbox-footer .acud-btn + .acud-btn {
|
|
13949
|
+
margin-bottom: 0;
|
|
13950
|
+
margin-left: 8px;
|
|
13951
|
+
font-size: 12px;
|
|
13952
|
+
}
|
|
13953
|
+
.acud-dialogbox-footer .acud-btn {
|
|
13954
|
+
margin: 0;
|
|
13955
|
+
}
|
|
13956
|
+
|
|
13957
|
+
/* color */
|
|
13958
|
+
/* 默认颜色 */
|
|
13959
|
+
/* 通用-icon */
|
|
13960
|
+
/* 标签 */
|
|
13961
|
+
/* 默认颜色 */
|
|
13962
|
+
/* 其他颜色 */
|
|
13963
|
+
/* 通用 */
|
|
13964
|
+
/* 水平 */
|
|
13965
|
+
/* 垂直 */
|
|
13966
|
+
/* 序号水平 */
|
|
13967
|
+
/* 序号垂直 */
|
|
13968
|
+
.acud-divider {
|
|
13969
|
+
margin: 0;
|
|
13970
|
+
padding: 0;
|
|
13971
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
13972
|
+
}
|
|
13973
|
+
.acud-divider-vertical {
|
|
13974
|
+
position: relative;
|
|
13975
|
+
top: -0.06em;
|
|
13976
|
+
display: inline-block;
|
|
13977
|
+
height: 0.9em;
|
|
13978
|
+
margin: 0 8px;
|
|
13979
|
+
vertical-align: middle;
|
|
13980
|
+
border-top: 0;
|
|
13981
|
+
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
|
13982
|
+
}
|
|
13983
|
+
.acud-divider-horizontal {
|
|
13984
|
+
display: flex;
|
|
13985
|
+
clear: both;
|
|
13986
|
+
width: 100%;
|
|
13987
|
+
min-width: 100%;
|
|
13988
|
+
margin: 24px 0;
|
|
13989
|
+
}
|
|
13990
|
+
.acud-divider-horizontal.acud-divider-with-text {
|
|
13991
|
+
display: flex;
|
|
13992
|
+
margin: 16px 0;
|
|
13993
|
+
color: rgba(0, 0, 0, 0.85);
|
|
13994
|
+
font-weight: 500;
|
|
13995
|
+
font-size: 14px;
|
|
13996
|
+
white-space: nowrap;
|
|
13997
|
+
text-align: center;
|
|
13998
|
+
border-top: 0;
|
|
13999
|
+
border-top-color: rgba(0, 0, 0, 0.06);
|
|
14000
|
+
}
|
|
14001
|
+
.acud-divider-horizontal.acud-divider-with-text::before,
|
|
14002
|
+
.acud-divider-horizontal.acud-divider-with-text::after {
|
|
14003
|
+
position: relative;
|
|
14004
|
+
top: 50%;
|
|
14005
|
+
width: 50%;
|
|
14006
|
+
border-top: 1px solid transparent;
|
|
14007
|
+
border-top-color: inherit;
|
|
14008
|
+
border-bottom: 0;
|
|
14009
|
+
transform: translateY(50%);
|
|
14010
|
+
content: '';
|
|
14011
|
+
}
|
|
14012
|
+
.acud-divider-horizontal.acud-divider-with-text-left::before {
|
|
14013
|
+
top: 50%;
|
|
14014
|
+
width: 5%;
|
|
14015
|
+
}
|
|
14016
|
+
.acud-divider-horizontal.acud-divider-with-text-left::after {
|
|
14017
|
+
top: 50%;
|
|
14018
|
+
width: 95%;
|
|
14019
|
+
}
|
|
14020
|
+
.acud-divider-horizontal.acud-divider-with-text-right::before {
|
|
14021
|
+
top: 50%;
|
|
14022
|
+
width: 95%;
|
|
14023
|
+
}
|
|
14024
|
+
.acud-divider-horizontal.acud-divider-with-text-right::after {
|
|
14025
|
+
top: 50%;
|
|
14026
|
+
width: 5%;
|
|
14027
|
+
}
|
|
14028
|
+
.acud-divider-inner-text {
|
|
14029
|
+
display: inline-block;
|
|
14030
|
+
padding: 0 1em;
|
|
14031
|
+
}
|
|
14032
|
+
.acud-divider-dashed {
|
|
14033
|
+
background: none;
|
|
14034
|
+
border-color: rgba(0, 0, 0, 0.06);
|
|
14035
|
+
border-style: dashed;
|
|
14036
|
+
border-width: 1px 0 0;
|
|
14037
|
+
}
|
|
14038
|
+
.acud-divider-horizontal.acud-divider-with-text.acud-divider-dashed::before,
|
|
14039
|
+
.acud-divider-horizontal.acud-divider-with-text.acud-divider-dashed::after {
|
|
14040
|
+
border-style: dashed none none;
|
|
14041
|
+
}
|
|
14042
|
+
.acud-divider-vertical.acud-divider-dashed {
|
|
14043
|
+
border-width: 0 0 0 1px;
|
|
14044
|
+
}
|
|
14045
|
+
.acud-divider-plain.acud-divider-with-text {
|
|
14046
|
+
color: #151B26;
|
|
14047
|
+
font-weight: normal;
|
|
14048
|
+
font-size: 12px;
|
|
14049
|
+
}
|
|
14050
|
+
.acud-divider-horizontal.acud-divider-with-text-left.acud-divider-no-default-orientation-margin-left::before {
|
|
14051
|
+
width: 0;
|
|
14052
|
+
}
|
|
14053
|
+
.acud-divider-horizontal.acud-divider-with-text-left.acud-divider-no-default-orientation-margin-left::after {
|
|
14054
|
+
width: 100%;
|
|
14055
|
+
}
|
|
14056
|
+
.acud-divider-horizontal.acud-divider-with-text-left.acud-divider-no-default-orientation-margin-left .acud-divider-inner-text {
|
|
14057
|
+
padding-left: 0;
|
|
14058
|
+
}
|
|
14059
|
+
.acud-divider-horizontal.acud-divider-with-text-right.acud-divider-no-default-orientation-margin-right::before {
|
|
13572
14060
|
width: 100%;
|
|
13573
|
-
padding: 0 24px 24px;
|
|
13574
|
-
box-sizing: border-box;
|
|
13575
|
-
overflow: hidden;
|
|
13576
|
-
text-align: right;
|
|
13577
14061
|
}
|
|
13578
|
-
.acud-
|
|
13579
|
-
|
|
13580
|
-
margin-left: 8px;
|
|
13581
|
-
font-size: 12px;
|
|
14062
|
+
.acud-divider-horizontal.acud-divider-with-text-right.acud-divider-no-default-orientation-margin-right::after {
|
|
14063
|
+
width: 0;
|
|
13582
14064
|
}
|
|
13583
|
-
.acud-
|
|
13584
|
-
|
|
14065
|
+
.acud-divider-horizontal.acud-divider-with-text-right.acud-divider-no-default-orientation-margin-right .acud-divider-inner-text {
|
|
14066
|
+
padding-right: 0;
|
|
14067
|
+
}
|
|
14068
|
+
.acud-divider-rtl {
|
|
14069
|
+
direction: rtl;
|
|
14070
|
+
}
|
|
14071
|
+
.acud-divider-rtl.acud-divider-horizontal.acud-divider-with-text-left::before {
|
|
14072
|
+
width: 95%;
|
|
14073
|
+
}
|
|
14074
|
+
.acud-divider-rtl.acud-divider-horizontal.acud-divider-with-text-left::after {
|
|
14075
|
+
width: 5%;
|
|
14076
|
+
}
|
|
14077
|
+
.acud-divider-rtl.acud-divider-horizontal.acud-divider-with-text-right::before {
|
|
14078
|
+
width: 5%;
|
|
14079
|
+
}
|
|
14080
|
+
.acud-divider-rtl.acud-divider-horizontal.acud-divider-with-text-right::after {
|
|
14081
|
+
width: 95%;
|
|
13585
14082
|
}
|
|
13586
14083
|
|
|
13587
14084
|
/* color */
|
|
@@ -13887,6 +14384,10 @@ _:-ms-fullscreen .acud-picker-range-wrapper .acud-picker-year-panel .acud-picker
|
|
|
13887
14384
|
.acud-dropdown-menu-hidden {
|
|
13888
14385
|
display: none;
|
|
13889
14386
|
}
|
|
14387
|
+
.acud-dropdown-demo-image > img {
|
|
14388
|
+
width: 18px;
|
|
14389
|
+
margin-right: 8px;
|
|
14390
|
+
}
|
|
13890
14391
|
.acud-dropdown-trigger {
|
|
13891
14392
|
cursor: pointer;
|
|
13892
14393
|
position: relative;
|
|
@@ -13926,10 +14427,6 @@ _:-ms-fullscreen .acud-picker-range-wrapper .acud-picker-year-panel .acud-picker
|
|
|
13926
14427
|
.acud-dropdown-trigger .trigger-title-withicon[disabled]:active {
|
|
13927
14428
|
color: #B8BABF;
|
|
13928
14429
|
}
|
|
13929
|
-
.acud-dropdown-trigger img {
|
|
13930
|
-
width: 18px;
|
|
13931
|
-
margin-right: 8px;
|
|
13932
|
-
}
|
|
13933
14430
|
.acud-dropdown-trigger a {
|
|
13934
14431
|
color: #2468F2;
|
|
13935
14432
|
}
|
|
@@ -16308,7 +16805,9 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16308
16805
|
.acud-menu-global-siderbar .acud-menu-bottom-nav-fold {
|
|
16309
16806
|
cursor: pointer;
|
|
16310
16807
|
display: flex;
|
|
16808
|
+
align-items: center;
|
|
16311
16809
|
overflow: hidden;
|
|
16810
|
+
height: 40px;
|
|
16312
16811
|
}
|
|
16313
16812
|
.acud-menu-global-siderbar .acud-menu-bottom-nav-fold-icon {
|
|
16314
16813
|
margin-right: 8px;
|
|
@@ -16327,21 +16826,21 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16327
16826
|
font-size: 14px;
|
|
16328
16827
|
background-color: #FFFFFF;
|
|
16329
16828
|
}
|
|
16330
|
-
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub
|
|
16829
|
+
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub) {
|
|
16331
16830
|
box-shadow: 0px 2px 8px 0px rgba(7, 12, 20, 0.12);
|
|
16332
16831
|
color: #151B26;
|
|
16333
16832
|
}
|
|
16334
|
-
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub
|
|
16833
|
+
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub):hover {
|
|
16335
16834
|
color: #2468F2;
|
|
16336
16835
|
}
|
|
16337
|
-
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub
|
|
16338
|
-
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub
|
|
16836
|
+
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub):focus,
|
|
16837
|
+
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub):active {
|
|
16339
16838
|
color: #2468F2;
|
|
16340
16839
|
}
|
|
16341
|
-
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub
|
|
16342
|
-
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub
|
|
16343
|
-
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub
|
|
16344
|
-
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub
|
|
16840
|
+
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub)[disabled],
|
|
16841
|
+
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub)[disabled]:hover,
|
|
16842
|
+
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub)[disabled]:focus,
|
|
16843
|
+
.acud-menu:not(.acud-menu-with-icon):not(.acud-menu-global):not(.acud-menu-sub)[disabled]:active {
|
|
16345
16844
|
color: #B8BABF;
|
|
16346
16845
|
}
|
|
16347
16846
|
.acud-menu > li {
|
|
@@ -16613,10 +17112,11 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16613
17112
|
overflow: hidden;
|
|
16614
17113
|
text-overflow: ellipsis;
|
|
16615
17114
|
display: flex;
|
|
17115
|
+
align-items: center;
|
|
16616
17116
|
margin-bottom: 4px;
|
|
16617
17117
|
}
|
|
16618
|
-
.acud-menu-inline .acud-menu-item .
|
|
16619
|
-
.acud-menu-inline-collapsed .acud-menu-item .
|
|
17118
|
+
.acud-menu-inline .acud-menu-item > .acud-menu-item-icon,
|
|
17119
|
+
.acud-menu-inline-collapsed .acud-menu-item > .acud-menu-item-icon {
|
|
16620
17120
|
margin-right: 8px;
|
|
16621
17121
|
}
|
|
16622
17122
|
.acud-menu-inline .acud-menu-item.acud-menu-item-selected,
|
|
@@ -16634,8 +17134,8 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16634
17134
|
top: 0;
|
|
16635
17135
|
height: 40px;
|
|
16636
17136
|
}
|
|
16637
|
-
.acud-menu-inline .acud-menu-submenu-title > .
|
|
16638
|
-
.acud-menu-inline-collapsed .acud-menu-submenu-title > .
|
|
17137
|
+
.acud-menu-inline .acud-menu-submenu-title > .acud-menu-item-icon,
|
|
17138
|
+
.acud-menu-inline-collapsed .acud-menu-submenu-title > .acud-menu-item-icon {
|
|
16639
17139
|
height: 40px;
|
|
16640
17140
|
}
|
|
16641
17141
|
.acud-menu-inline.acud-menu-vertical,
|
|
@@ -16685,6 +17185,7 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16685
17185
|
display: flex;
|
|
16686
17186
|
width: 100%;
|
|
16687
17187
|
border-bottom: 1px solid #F2F2F4;
|
|
17188
|
+
align-items: center;
|
|
16688
17189
|
}
|
|
16689
17190
|
.acud-menu-inline-header-item .acudicon {
|
|
16690
17191
|
display: flex;
|
|
@@ -18734,221 +19235,6 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
18734
19235
|
top: 5.0002px;
|
|
18735
19236
|
}
|
|
18736
19237
|
|
|
18737
|
-
/* color */
|
|
18738
|
-
/* 默认颜色 */
|
|
18739
|
-
/* 通用-icon */
|
|
18740
|
-
/* 标签 */
|
|
18741
|
-
/* 默认颜色 */
|
|
18742
|
-
/* 其他颜色 */
|
|
18743
|
-
/* 通用 */
|
|
18744
|
-
/* 水平 */
|
|
18745
|
-
/* 垂直 */
|
|
18746
|
-
/* 序号水平 */
|
|
18747
|
-
/* 序号垂直 */
|
|
18748
|
-
.acud-popover {
|
|
18749
|
-
margin: 0;
|
|
18750
|
-
padding: 0;
|
|
18751
|
-
position: absolute;
|
|
18752
|
-
top: 0;
|
|
18753
|
-
left: 0;
|
|
18754
|
-
z-index: 1030;
|
|
18755
|
-
font-weight: normal;
|
|
18756
|
-
white-space: normal;
|
|
18757
|
-
text-align: left;
|
|
18758
|
-
cursor: auto;
|
|
18759
|
-
-webkit-user-select: text;
|
|
18760
|
-
-moz-user-select: text;
|
|
18761
|
-
user-select: text;
|
|
18762
|
-
}
|
|
18763
|
-
.acud-popover::after {
|
|
18764
|
-
position: absolute;
|
|
18765
|
-
background: rgba(255, 255, 255, 0.01);
|
|
18766
|
-
content: '';
|
|
18767
|
-
}
|
|
18768
|
-
.acud-popover-hidden {
|
|
18769
|
-
display: none;
|
|
18770
|
-
}
|
|
18771
|
-
.acud-popover-placement-top,
|
|
18772
|
-
.acud-popover-placement-topLeft,
|
|
18773
|
-
.acud-popover-placement-topRight {
|
|
18774
|
-
padding-bottom: 10px;
|
|
18775
|
-
}
|
|
18776
|
-
.acud-popover-placement-right,
|
|
18777
|
-
.acud-popover-placement-rightTop,
|
|
18778
|
-
.acud-popover-placement-rightBottom {
|
|
18779
|
-
padding-left: 10px;
|
|
18780
|
-
}
|
|
18781
|
-
.acud-popover-placement-bottom,
|
|
18782
|
-
.acud-popover-placement-bottomLeft,
|
|
18783
|
-
.acud-popover-placement-bottomRight {
|
|
18784
|
-
padding-top: 10px;
|
|
18785
|
-
}
|
|
18786
|
-
.acud-popover-placement-left,
|
|
18787
|
-
.acud-popover-placement-leftTop,
|
|
18788
|
-
.acud-popover-placement-leftBottom {
|
|
18789
|
-
padding-right: 10px;
|
|
18790
|
-
}
|
|
18791
|
-
.acud-popover-inner {
|
|
18792
|
-
padding: 12px 12px;
|
|
18793
|
-
background-color: #FFFFFF;
|
|
18794
|
-
background-clip: padding-box;
|
|
18795
|
-
border-radius: 2px;
|
|
18796
|
-
box-shadow: 0px 4px 12px 1px rgba(7, 12, 20, 0.12);
|
|
18797
|
-
box-shadow: 0 0 8px #FFFFFF \9;
|
|
18798
|
-
border-radius: 4px;
|
|
18799
|
-
}
|
|
18800
|
-
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
18801
|
-
.acud-popover {
|
|
18802
|
-
/* IE10+ */
|
|
18803
|
-
}
|
|
18804
|
-
.acud-popover-inner {
|
|
18805
|
-
box-shadow: 0px 4px 12px 1px rgba(7, 12, 20, 0.12);
|
|
18806
|
-
}
|
|
18807
|
-
}
|
|
18808
|
-
.acud-popover-title {
|
|
18809
|
-
margin: 0;
|
|
18810
|
-
padding-bottom: 1px;
|
|
18811
|
-
color: #151B26;
|
|
18812
|
-
font-size: 12px;
|
|
18813
|
-
font-weight: 500;
|
|
18814
|
-
}
|
|
18815
|
-
.acud-popover-inner-content {
|
|
18816
|
-
color: #151B26;
|
|
18817
|
-
font-size: 12px;
|
|
18818
|
-
}
|
|
18819
|
-
.acud-popover-inner-content .acudicon-outlined-close {
|
|
18820
|
-
padding-left: 12px;
|
|
18821
|
-
font-size: 16px;
|
|
18822
|
-
color: #84868C;
|
|
18823
|
-
}
|
|
18824
|
-
.acud-popover-message {
|
|
18825
|
-
position: relative;
|
|
18826
|
-
padding: 4px 0 12px;
|
|
18827
|
-
color: #151B26;
|
|
18828
|
-
font-size: 12px;
|
|
18829
|
-
}
|
|
18830
|
-
.acud-popover-message > .acudicon {
|
|
18831
|
-
position: absolute;
|
|
18832
|
-
top: 8.0002px;
|
|
18833
|
-
color: #FF9326;
|
|
18834
|
-
font-size: 12px;
|
|
18835
|
-
}
|
|
18836
|
-
.acud-popover-message-title {
|
|
18837
|
-
padding-left: 20px;
|
|
18838
|
-
}
|
|
18839
|
-
.acud-popover-buttons {
|
|
18840
|
-
margin-bottom: 4px;
|
|
18841
|
-
text-align: right;
|
|
18842
|
-
}
|
|
18843
|
-
.acud-popover-buttons button {
|
|
18844
|
-
margin-left: 8px;
|
|
18845
|
-
}
|
|
18846
|
-
.acud-popover-arrow {
|
|
18847
|
-
position: absolute;
|
|
18848
|
-
display: block;
|
|
18849
|
-
width: 8.48528137px;
|
|
18850
|
-
height: 8.48528137px;
|
|
18851
|
-
background: transparent;
|
|
18852
|
-
border-style: solid;
|
|
18853
|
-
border-width: 4.24264069px;
|
|
18854
|
-
transform: rotate(45deg);
|
|
18855
|
-
}
|
|
18856
|
-
.acud-popover-placement-top > .acud-popover-content > .acud-popover-arrow,
|
|
18857
|
-
.acud-popover-placement-topLeft > .acud-popover-content > .acud-popover-arrow,
|
|
18858
|
-
.acud-popover-placement-topRight > .acud-popover-content > .acud-popover-arrow {
|
|
18859
|
-
bottom: 6.2px;
|
|
18860
|
-
border-top-color: transparent;
|
|
18861
|
-
border-right-color: #FFFFFF;
|
|
18862
|
-
border-bottom-color: #FFFFFF;
|
|
18863
|
-
border-left-color: transparent;
|
|
18864
|
-
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
18865
|
-
}
|
|
18866
|
-
.acud-popover-placement-top > .acud-popover-content > .acud-popover-arrow {
|
|
18867
|
-
left: 50%;
|
|
18868
|
-
transform: translateX(-50%) rotate(45deg);
|
|
18869
|
-
}
|
|
18870
|
-
.acud-popover-placement-topLeft > .acud-popover-content > .acud-popover-arrow {
|
|
18871
|
-
left: 16px;
|
|
18872
|
-
}
|
|
18873
|
-
.acud-popover-placement-topRight > .acud-popover-content > .acud-popover-arrow {
|
|
18874
|
-
right: 16px;
|
|
18875
|
-
}
|
|
18876
|
-
.acud-popover-placement-right > .acud-popover-content > .acud-popover-arrow,
|
|
18877
|
-
.acud-popover-placement-rightTop > .acud-popover-content > .acud-popover-arrow,
|
|
18878
|
-
.acud-popover-placement-rightBottom > .acud-popover-content > .acud-popover-arrow {
|
|
18879
|
-
left: 6px;
|
|
18880
|
-
border-top-color: transparent;
|
|
18881
|
-
border-right-color: transparent;
|
|
18882
|
-
border-bottom-color: #FFFFFF;
|
|
18883
|
-
border-left-color: #FFFFFF;
|
|
18884
|
-
box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
18885
|
-
}
|
|
18886
|
-
.acud-popover-placement-right > .acud-popover-content > .acud-popover-arrow {
|
|
18887
|
-
top: 50%;
|
|
18888
|
-
transform: translateY(-50%) rotate(45deg);
|
|
18889
|
-
}
|
|
18890
|
-
.acud-popover-placement-rightTop > .acud-popover-content > .acud-popover-arrow {
|
|
18891
|
-
top: 12px;
|
|
18892
|
-
}
|
|
18893
|
-
.acud-popover-placement-rightBottom > .acud-popover-content > .acud-popover-arrow {
|
|
18894
|
-
bottom: 12px;
|
|
18895
|
-
}
|
|
18896
|
-
.acud-popover-placement-bottom > .acud-popover-content > .acud-popover-arrow,
|
|
18897
|
-
.acud-popover-placement-bottomLeft > .acud-popover-content > .acud-popover-arrow,
|
|
18898
|
-
.acud-popover-placement-bottomRight > .acud-popover-content > .acud-popover-arrow {
|
|
18899
|
-
top: 6px;
|
|
18900
|
-
border-top-color: #FFFFFF;
|
|
18901
|
-
border-right-color: transparent;
|
|
18902
|
-
border-bottom-color: transparent;
|
|
18903
|
-
border-left-color: #FFFFFF;
|
|
18904
|
-
box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
|
|
18905
|
-
}
|
|
18906
|
-
.acud-popover-placement-bottom > .acud-popover-content > .acud-popover-arrow {
|
|
18907
|
-
left: 50%;
|
|
18908
|
-
transform: translateX(-50%) rotate(45deg);
|
|
18909
|
-
}
|
|
18910
|
-
.acud-popover-placement-bottomLeft > .acud-popover-content > .acud-popover-arrow {
|
|
18911
|
-
left: 16px;
|
|
18912
|
-
}
|
|
18913
|
-
.acud-popover-placement-bottomRight > .acud-popover-content > .acud-popover-arrow {
|
|
18914
|
-
right: 16px;
|
|
18915
|
-
}
|
|
18916
|
-
.acud-popover-placement-left > .acud-popover-content > .acud-popover-arrow,
|
|
18917
|
-
.acud-popover-placement-leftTop > .acud-popover-content > .acud-popover-arrow,
|
|
18918
|
-
.acud-popover-placement-leftBottom > .acud-popover-content > .acud-popover-arrow {
|
|
18919
|
-
right: 6px;
|
|
18920
|
-
border-top-color: #FFFFFF;
|
|
18921
|
-
border-right-color: #FFFFFF;
|
|
18922
|
-
border-bottom-color: transparent;
|
|
18923
|
-
border-left-color: transparent;
|
|
18924
|
-
box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
|
|
18925
|
-
}
|
|
18926
|
-
.acud-popover-placement-left > .acud-popover-content > .acud-popover-arrow {
|
|
18927
|
-
top: 50%;
|
|
18928
|
-
transform: translateY(-50%) rotate(45deg);
|
|
18929
|
-
}
|
|
18930
|
-
.acud-popover-placement-leftTop > .acud-popover-content > .acud-popover-arrow {
|
|
18931
|
-
top: 12px;
|
|
18932
|
-
}
|
|
18933
|
-
.acud-popover-placement-leftBottom > .acud-popover-content > .acud-popover-arrow {
|
|
18934
|
-
bottom: 12px;
|
|
18935
|
-
}
|
|
18936
|
-
.acud-popover-rtl {
|
|
18937
|
-
direction: rtl;
|
|
18938
|
-
text-align: right;
|
|
18939
|
-
}
|
|
18940
|
-
.acud-popover-rtl .acud-popover-message-title {
|
|
18941
|
-
padding-right: 20px;
|
|
18942
|
-
padding-left: 12px;
|
|
18943
|
-
}
|
|
18944
|
-
.acud-popover-rtl .acud-popover-buttons {
|
|
18945
|
-
text-align: left;
|
|
18946
|
-
}
|
|
18947
|
-
.acud-popover-rtl .acud-popover-buttons button {
|
|
18948
|
-
margin-right: 8px;
|
|
18949
|
-
margin-left: 0;
|
|
18950
|
-
}
|
|
18951
|
-
|
|
18952
19238
|
/* color */
|
|
18953
19239
|
/* 默认颜色 */
|
|
18954
19240
|
/* 通用-icon */
|
|
@@ -21798,12 +22084,14 @@ div.acud-table-summary {
|
|
|
21798
22084
|
.acud-table-filter-column {
|
|
21799
22085
|
display: flex;
|
|
21800
22086
|
justify-content: flex-start;
|
|
22087
|
+
align-items: center;
|
|
21801
22088
|
}
|
|
21802
22089
|
.acud-table-filter-column .acud-dropdown-trigger {
|
|
21803
22090
|
display: flex;
|
|
21804
22091
|
}
|
|
21805
22092
|
.acud-table-filter-column .acud-dropdown-trigger .acudicon-outlined-funnel {
|
|
21806
22093
|
display: flex;
|
|
22094
|
+
height: 16px;
|
|
21807
22095
|
}
|
|
21808
22096
|
.acud-table-filter-trigger {
|
|
21809
22097
|
position: relative;
|
|
@@ -21923,9 +22211,11 @@ table tr th.acud-table-selection-column::after {
|
|
|
21923
22211
|
padding-inline-start: 4px;
|
|
21924
22212
|
margin-left: 0;
|
|
21925
22213
|
display: flex;
|
|
22214
|
+
align-items: center;
|
|
21926
22215
|
}
|
|
21927
22216
|
.acud-table-selection-extra .acud-dropdown-trigger {
|
|
21928
22217
|
display: flex;
|
|
22218
|
+
height: 16px;
|
|
21929
22219
|
}
|
|
21930
22220
|
.acud-table-selection-extra .acudicon {
|
|
21931
22221
|
color: #84868C;
|
|
@@ -22000,7 +22290,6 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
22000
22290
|
}
|
|
22001
22291
|
.acud-table-cell-fix-left,
|
|
22002
22292
|
.acud-table-cell-fix-right {
|
|
22003
|
-
position: -webkit-sticky !important;
|
|
22004
22293
|
position: sticky !important;
|
|
22005
22294
|
z-index: 2;
|
|
22006
22295
|
background: #FFFFFF;
|
|
@@ -22070,13 +22359,11 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
22070
22359
|
box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.15);
|
|
22071
22360
|
}
|
|
22072
22361
|
.acud-table-sticky-holder {
|
|
22073
|
-
position: -webkit-sticky;
|
|
22074
22362
|
position: sticky;
|
|
22075
22363
|
z-index: calc(2 + 1);
|
|
22076
22364
|
background: #FFFFFF;
|
|
22077
22365
|
}
|
|
22078
22366
|
.acud-table-sticky-scroll {
|
|
22079
|
-
position: -webkit-sticky;
|
|
22080
22367
|
position: sticky;
|
|
22081
22368
|
bottom: 0;
|
|
22082
22369
|
z-index: calc(2 + 1);
|
|
@@ -25277,6 +25564,10 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
25277
25564
|
.acud-tree-select-dropdown .acud-select-tree-list-holder-inner .acud-select-tree-treenode .acud-select-tree-node-content-wrapper {
|
|
25278
25565
|
flex: auto;
|
|
25279
25566
|
}
|
|
25567
|
+
.acud-tree-select-dropdown .acud-select-tree-select-all {
|
|
25568
|
+
line-height: 22px;
|
|
25569
|
+
padding: 0 0 4px 0;
|
|
25570
|
+
}
|
|
25280
25571
|
.acud-select-tree-checkbox-inner::after {
|
|
25281
25572
|
top: 43%;
|
|
25282
25573
|
left: 24%;
|
|
@@ -25547,6 +25838,12 @@ tr.acud-table-expanded-row .acud-descriptions-view table {
|
|
|
25547
25838
|
.acud-tree-select-dropdown-rtl .acud-select-tree .acud-select-tree-switcher-loading-icon {
|
|
25548
25839
|
transform: scaleY(-1);
|
|
25549
25840
|
}
|
|
25841
|
+
.acud-select-tree-checkbox-inner::after {
|
|
25842
|
+
opacity: 0;
|
|
25843
|
+
}
|
|
25844
|
+
.acud-select-tree-checkbox-checked .acud-select-tree-checkbox-inner::after {
|
|
25845
|
+
opacity: 1;
|
|
25846
|
+
}
|
|
25550
25847
|
|
|
25551
25848
|
/* color */
|
|
25552
25849
|
/* 默认颜色 */
|