@cloudtower/eagle 0.25.4 → 0.25.6
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/dist/components/Form/index.d.ts +3 -0
- package/dist/components/FormItem/index.d.ts +1 -1
- package/dist/components.css +445 -416
- package/dist/esm/index.js +748 -718
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +0 -2
- package/dist/style.css +264 -235
- package/dist/umd/index.js +750 -721
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
package/dist/components.css
CHANGED
|
@@ -1531,61 +1531,296 @@ body {
|
|
|
1531
1531
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
1532
1532
|
}
|
|
1533
1533
|
}
|
|
1534
|
-
.
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1534
|
+
.buj61ew.ant-btn {
|
|
1535
|
+
height: 32px;
|
|
1536
|
+
border-radius: 6px;
|
|
1537
|
+
line-height: 22px;
|
|
1538
|
+
transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
|
|
1539
|
+
transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
|
|
1540
|
+
}
|
|
1541
|
+
.buj61ew.ant-btn.ant-btn-lg {
|
|
1542
|
+
height: 40px;
|
|
1541
1543
|
line-height: 24px;
|
|
1542
1544
|
}
|
|
1543
|
-
.
|
|
1544
|
-
|
|
1545
|
+
.buj61ew.ant-btn.ant-btn-sm {
|
|
1546
|
+
height: 24px;
|
|
1547
|
+
line-height: 20px;
|
|
1545
1548
|
}
|
|
1546
|
-
.
|
|
1547
|
-
|
|
1548
|
-
align-items: center;
|
|
1549
|
-
border-radius: 6px;
|
|
1550
|
-
cursor: pointer;
|
|
1551
|
-
transition: all 0.3s ease;
|
|
1549
|
+
.buj61ew.ant-btn.ant-btn-circle, .buj61ew.ant-btn.ant-btn-circle-outline {
|
|
1550
|
+
border-radius: 50%;
|
|
1552
1551
|
}
|
|
1553
|
-
.
|
|
1554
|
-
|
|
1552
|
+
.buj61ew.ant-btn.ant-btn-primary, .buj61ew.ant-btn.ant-btn-secondary, .buj61ew.ant-btn.ant-btn-tertiary, .buj61ew.ant-btn.ant-btn-ordinary, .buj61ew.ant-btn.ant-btn-ordinary-onTint, .buj61ew.ant-btn.ant-btn-quiet {
|
|
1553
|
+
color: var(--color, #06101f);
|
|
1554
|
+
font-weight: var(--font-weight);
|
|
1555
|
+
background: var(--background-color, #fff);
|
|
1556
|
+
border-width: var(--border-width, 1px);
|
|
1557
|
+
border-color: var(--border-color, #d9d9d9);
|
|
1558
|
+
}
|
|
1559
|
+
.buj61ew.ant-btn.ant-btn-primary[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-secondary[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-tertiary[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-ordinary[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-ordinary-onTint[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-quiet[ant-click-animating-without-extra-node=true]:after {
|
|
1560
|
+
display: none;
|
|
1561
|
+
}
|
|
1562
|
+
.buj61ew.ant-btn.ant-btn-primary .anticon, .buj61ew.ant-btn.ant-btn-secondary .anticon, .buj61ew.ant-btn.ant-btn-tertiary .anticon, .buj61ew.ant-btn.ant-btn-ordinary .anticon, .buj61ew.ant-btn.ant-btn-ordinary-onTint .anticon, .buj61ew.ant-btn.ant-btn-quiet .anticon {
|
|
1563
|
+
color: var(--color, inherit);
|
|
1564
|
+
}
|
|
1565
|
+
.buj61ew.ant-btn.ant-btn-primary:hover, .buj61ew.ant-btn.ant-btn-primary.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-secondary:hover, .buj61ew.ant-btn.ant-btn-secondary.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-tertiary:hover, .buj61ew.ant-btn.ant-btn-tertiary.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-ordinary:hover, .buj61ew.ant-btn.ant-btn-ordinary.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-ordinary-onTint:hover, .buj61ew.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-quiet:hover, .buj61ew.ant-btn.ant-btn-quiet.__pseudo-states-hover {
|
|
1566
|
+
background: var(--background-color-hover, var(--background-color));
|
|
1567
|
+
border-color: var(--border-color-hover, var(--border-color, transparent));
|
|
1568
|
+
}
|
|
1569
|
+
.buj61ew.ant-btn.ant-btn-primary:active, .buj61ew.ant-btn.ant-btn-primary.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-secondary:active, .buj61ew.ant-btn.ant-btn-secondary.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-tertiary:active, .buj61ew.ant-btn.ant-btn-tertiary.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-ordinary:active, .buj61ew.ant-btn.ant-btn-ordinary.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-ordinary-onTint:active, .buj61ew.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-quiet:active, .buj61ew.ant-btn.ant-btn-quiet.__pseudo-states-active {
|
|
1570
|
+
--scale: 1;
|
|
1571
|
+
--transY: 1px;
|
|
1572
|
+
background: var(--background-color-active, var(--background-color));
|
|
1573
|
+
border-color: var(--border-color-active, var(--border-color, transparent));
|
|
1574
|
+
}
|
|
1575
|
+
.buj61ew.ant-btn.ant-btn-primary:focus, .buj61ew.ant-btn.ant-btn-primary.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-secondary:focus, .buj61ew.ant-btn.ant-btn-secondary.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-tertiary:focus, .buj61ew.ant-btn.ant-btn-tertiary.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-ordinary:focus, .buj61ew.ant-btn.ant-btn-ordinary.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-ordinary-onTint:focus, .buj61ew.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-quiet:focus, .buj61ew.ant-btn.ant-btn-quiet.__pseudo-states-focus {
|
|
1576
|
+
background: var(--background-color-focus, var(--background-color));
|
|
1577
|
+
box-shadow: 0 0 0px 4px var(--box-shadow-color-focus);
|
|
1578
|
+
border-color: var(--border-color-focus, var(--border-color, transparent));
|
|
1579
|
+
}
|
|
1580
|
+
.buj61ew.ant-btn.ant-btn-primary[disabled], .buj61ew.ant-btn.ant-btn-primary[disabled]:hover, .buj61ew.ant-btn.ant-btn-primary[disabled]:focus, .buj61ew.ant-btn.ant-btn-primary[disabled]:active, .buj61ew.ant-btn.ant-btn-secondary[disabled], .buj61ew.ant-btn.ant-btn-secondary[disabled]:hover, .buj61ew.ant-btn.ant-btn-secondary[disabled]:focus, .buj61ew.ant-btn.ant-btn-secondary[disabled]:active, .buj61ew.ant-btn.ant-btn-tertiary[disabled], .buj61ew.ant-btn.ant-btn-tertiary[disabled]:hover, .buj61ew.ant-btn.ant-btn-tertiary[disabled]:focus, .buj61ew.ant-btn.ant-btn-tertiary[disabled]:active, .buj61ew.ant-btn.ant-btn-ordinary[disabled], .buj61ew.ant-btn.ant-btn-ordinary[disabled]:hover, .buj61ew.ant-btn.ant-btn-ordinary[disabled]:focus, .buj61ew.ant-btn.ant-btn-ordinary[disabled]:active, .buj61ew.ant-btn.ant-btn-ordinary-onTint[disabled], .buj61ew.ant-btn.ant-btn-ordinary-onTint[disabled]:hover, .buj61ew.ant-btn.ant-btn-ordinary-onTint[disabled]:focus, .buj61ew.ant-btn.ant-btn-ordinary-onTint[disabled]:active, .buj61ew.ant-btn.ant-btn-quiet[disabled], .buj61ew.ant-btn.ant-btn-quiet[disabled]:hover, .buj61ew.ant-btn.ant-btn-quiet[disabled]:focus, .buj61ew.ant-btn.ant-btn-quiet[disabled]:active {
|
|
1581
|
+
color: var(--color-disabled, var(--color));
|
|
1582
|
+
background: var(--background-color-disabled, var(--background-color));
|
|
1583
|
+
border-color: var(--border-color-disabled, var(--border-color, transparent));
|
|
1584
|
+
opacity: 0.5;
|
|
1585
|
+
}
|
|
1586
|
+
.buj61ew.ant-btn-link[disabled] {
|
|
1555
1587
|
color: #0080ff;
|
|
1588
|
+
opacity: 0.5;
|
|
1556
1589
|
}
|
|
1557
|
-
.
|
|
1558
|
-
|
|
1590
|
+
.buj61ew.ant-btn-primary {
|
|
1591
|
+
--color: #fff;
|
|
1592
|
+
--font-weight: bold;
|
|
1593
|
+
--border-width: 0;
|
|
1594
|
+
--background-color: #0080ff;
|
|
1595
|
+
--background-color-hover: #009dff;
|
|
1596
|
+
--background-color-active: #005ed1;
|
|
1597
|
+
--background-color-focus: #0080ff;
|
|
1598
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1559
1599
|
}
|
|
1560
|
-
.
|
|
1561
|
-
|
|
1600
|
+
.buj61ew.ant-btn-primary.ant-btn-dangerous {
|
|
1601
|
+
--background-color: #f0483e;
|
|
1602
|
+
--background-color-hover: #ff5252;
|
|
1603
|
+
--background-color-active: #c73d31;
|
|
1604
|
+
--background-color-focus: #ff5252;
|
|
1605
|
+
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
1606
|
+
}
|
|
1607
|
+
.buj61ew.ant-btn-primary.btn-primary-orange {
|
|
1608
|
+
--background-color: #fea008;
|
|
1609
|
+
--background-color-hover: #feba33;
|
|
1610
|
+
--background-color-active: #e07f00;
|
|
1611
|
+
--background-color-focus: #fea008;
|
|
1612
|
+
}
|
|
1613
|
+
.buj61ew.ant-btn-secondary {
|
|
1614
|
+
--color: #0080ff;
|
|
1615
|
+
--font-weight: bold;
|
|
1616
|
+
--border-width: 0;
|
|
1617
|
+
--background-color: rgba(0, 136, 255, 0.1);
|
|
1618
|
+
--background-color-hover: rgba(0, 136, 255, 0.16);
|
|
1619
|
+
--background-color-active: rgba(0, 136, 255, 0.2);
|
|
1620
|
+
--background-color-focus: rgba(0, 136, 255, 0.1);
|
|
1621
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1622
|
+
}
|
|
1623
|
+
.buj61ew.ant-btn-secondary.ant-btn-dangerous {
|
|
1624
|
+
--color: #f0483e;
|
|
1625
|
+
--background-color: rgba(255, 74, 74, 0.1);
|
|
1626
|
+
--background-color-hover: rgba(255, 74, 74, 0.16);
|
|
1627
|
+
--background-color-active: rgba(255, 74, 74, 0.2);
|
|
1628
|
+
--background-color-focus: rgba(255, 74, 74, 0.1);
|
|
1629
|
+
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
1630
|
+
}
|
|
1631
|
+
.buj61ew.ant-btn-secondary.btn-primary-orange {
|
|
1632
|
+
--color: #fea008;
|
|
1633
|
+
--background-color: rgba(255, 187, 0, 0.1);
|
|
1634
|
+
--background-color-hover: rgba(255, 187, 0, 0.16);
|
|
1635
|
+
--background-color-active: rgba(255, 187, 0, 0.2);
|
|
1636
|
+
--background-color-focus: rgba(255, 187, 0, 0.1);
|
|
1637
|
+
}
|
|
1638
|
+
.buj61ew.ant-btn-tertiary {
|
|
1639
|
+
--color: #0080ff;
|
|
1640
|
+
--font-weight: bold;
|
|
1641
|
+
--border-width: 0;
|
|
1642
|
+
--background-color: #fff;
|
|
1643
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1644
|
+
box-shadow: none;
|
|
1645
|
+
}
|
|
1646
|
+
.buj61ew.ant-btn-tertiary:not([disabled]):hover, .buj61ew.ant-btn-tertiary:not([disabled]):active, .buj61ew.ant-btn-tertiary:not([disabled]).__pseudo-states-hover, .buj61ew.ant-btn-tertiary:not([disabled]).__pseudo-states-active, .buj61ew.ant-btn-tertiary:not(:focus):hover, .buj61ew.ant-btn-tertiary:not(:focus):active, .buj61ew.ant-btn-tertiary:not(:focus).__pseudo-states-hover, .buj61ew.ant-btn-tertiary:not(:focus).__pseudo-states-active {
|
|
1647
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1648
|
+
}
|
|
1649
|
+
.buj61ew.ant-btn-tertiary.ant-btn-dangerous {
|
|
1650
|
+
--color: #f0483e;
|
|
1651
|
+
--background-color: #fff;
|
|
1652
|
+
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
1653
|
+
}
|
|
1654
|
+
.buj61ew.ant-btn-tertiary.ant-btn-dangerous:not([disabled]):hover, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not([disabled]):active, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not([disabled]).__pseudo-states-hover, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not([disabled]).__pseudo-states-active, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not(:focus):hover, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not(:focus):active, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not(:focus).__pseudo-states-hover, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not(:focus).__pseudo-states-active {
|
|
1655
|
+
filter: drop-shadow(0px 2px 8px rgba(255, 74, 74, 0.1));
|
|
1656
|
+
}
|
|
1657
|
+
.buj61ew.ant-btn-tertiary.btn-primary-orange {
|
|
1658
|
+
--color: #fea008;
|
|
1659
|
+
--background-color: #fff;
|
|
1660
|
+
}
|
|
1661
|
+
.buj61ew.ant-btn-tertiary.btn-primary-orange:not([disabled]):hover, .buj61ew.ant-btn-tertiary.btn-primary-orange:not([disabled]):active, .buj61ew.ant-btn-tertiary.btn-primary-orange:not([disabled]).__pseudo-states-hover, .buj61ew.ant-btn-tertiary.btn-primary-orange:not([disabled]).__pseudo-states-active, .buj61ew.ant-btn-tertiary.btn-primary-orange:not(:focus):hover, .buj61ew.ant-btn-tertiary.btn-primary-orange:not(:focus):active, .buj61ew.ant-btn-tertiary.btn-primary-orange:not(:focus).__pseudo-states-hover, .buj61ew.ant-btn-tertiary.btn-primary-orange:not(:focus).__pseudo-states-active {
|
|
1662
|
+
filter: drop-shadow(0px 2px 8px rgba(255, 187, 0, 0.1));
|
|
1663
|
+
}
|
|
1664
|
+
.buj61ew.ant-btn-ordinary {
|
|
1665
|
+
--color: #1d326c;
|
|
1666
|
+
--border-color: #ccd4e3;
|
|
1667
|
+
--background-color: #fff;
|
|
1668
|
+
--background-color-hover: #edf0f7;
|
|
1669
|
+
--background-color-active: #e4e9f2;
|
|
1670
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1671
|
+
box-shadow: 0px 1px 2px -1px rgba(44, 56, 82, 0.18);
|
|
1672
|
+
}
|
|
1673
|
+
.buj61ew.ant-btn-ordinary:focus, .buj61ew.ant-btn-ordinary.__pseudo-states-focus {
|
|
1674
|
+
box-shadow: 0 0 0px 4px var(--box-shadow-color-focus);
|
|
1675
|
+
}
|
|
1676
|
+
.buj61ew.ant-btn-ordinary.ordinary-blue {
|
|
1677
|
+
--color: #0080ff;
|
|
1678
|
+
--border-color: #0080ff;
|
|
1679
|
+
--background-color: #fff;
|
|
1680
|
+
--background-color-hover: linear-gradient(
|
|
1681
|
+
0deg,
|
|
1682
|
+
rgba(0, 136, 255, 0.16),
|
|
1683
|
+
rgba(0, 136, 255, 0.16)
|
|
1684
|
+
),
|
|
1685
|
+
#ffffff;
|
|
1686
|
+
--background-color-active: linear-gradient(
|
|
1687
|
+
0deg,
|
|
1688
|
+
rgba(0, 136, 255, 0.2),
|
|
1689
|
+
rgba(0, 136, 255, 0.2)
|
|
1690
|
+
),
|
|
1691
|
+
#ffffff;
|
|
1692
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1693
|
+
box-shadow: 0px 1px 2px -1px rgba(44, 56, 82, 0.18);
|
|
1694
|
+
}
|
|
1695
|
+
.buj61ew.ant-btn-ordinary.ant-btn-dangerous {
|
|
1696
|
+
--color: #f0483e;
|
|
1697
|
+
--border-color: #f0483e;
|
|
1698
|
+
--background-color: #fff;
|
|
1699
|
+
--background-color-hover: linear-gradient(
|
|
1700
|
+
0deg,
|
|
1701
|
+
rgba(255, 74, 74, 0.16),
|
|
1702
|
+
rgba(255, 74, 74, 0.16)
|
|
1703
|
+
),
|
|
1704
|
+
#ffffff;
|
|
1705
|
+
--background-color-active: linear-gradient(
|
|
1706
|
+
0deg,
|
|
1707
|
+
rgba(255, 74, 74, 0.2),
|
|
1708
|
+
rgba(255, 74, 74, 0.2)
|
|
1709
|
+
),
|
|
1710
|
+
#ffffff;
|
|
1711
|
+
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
1712
|
+
}
|
|
1713
|
+
.buj61ew.ant-btn-ordinary-onTint {
|
|
1714
|
+
--color: #1d326c;
|
|
1715
|
+
--border-color: #fff;
|
|
1716
|
+
--background-color: #fff;
|
|
1717
|
+
--background-color-hover: rgba(211, 218, 235, 0.6);
|
|
1718
|
+
--background-color-active: rgba(192, 203, 224, 0.6);
|
|
1719
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1720
|
+
box-shadow: none;
|
|
1721
|
+
}
|
|
1722
|
+
.buj61ew.ant-btn-ordinary-onTint.ordinary-blue {
|
|
1723
|
+
--color: #0080ff;
|
|
1724
|
+
--border-color: #fff;
|
|
1725
|
+
--background-color: #fff;
|
|
1726
|
+
--background-color-hover: rgba(0, 136, 255, 0.16);
|
|
1727
|
+
--background-color-active: rgba(0, 136, 255, 0.2);
|
|
1728
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1729
|
+
box-shadow: none;
|
|
1730
|
+
}
|
|
1731
|
+
.buj61ew.ant-btn-ordinary-onTint.ant-btn-dangerous {
|
|
1732
|
+
--color: #f0483e;
|
|
1733
|
+
--background-color-hover: rgba(255, 74, 74, 0.16);
|
|
1734
|
+
--background-color-active: rgba(255, 74, 74, 0.2);
|
|
1735
|
+
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
1736
|
+
}
|
|
1737
|
+
.buj61ew.ant-btn-quiet {
|
|
1738
|
+
--color: rgba(44, 56, 82, 0.6);
|
|
1739
|
+
--border-width: 0;
|
|
1740
|
+
--background-color: transparent;
|
|
1741
|
+
--background-color-hover: rgba(211, 218, 235, 0.6);
|
|
1742
|
+
--background-color-active: rgba(192, 203, 224, 0.6);
|
|
1743
|
+
--background-color-focus: #fff;
|
|
1744
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1745
|
+
box-shadow: none;
|
|
1746
|
+
}
|
|
1747
|
+
.buj61ew.ant-btn-quiet.ant-btn-dangerous {
|
|
1748
|
+
--color: #f0483e;
|
|
1749
|
+
--background-color-hover: rgba(255, 74, 74, 0.16);
|
|
1750
|
+
--background-color-active: rgba(255, 74, 74, 0.2);
|
|
1751
|
+
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
1752
|
+
}
|
|
1753
|
+
.buj61ew.ant-btn-quiet.quiet-blue {
|
|
1754
|
+
--color: #0080ff;
|
|
1755
|
+
--background-color: transparent;
|
|
1756
|
+
--background-color-hover: rgba(0, 136, 255, 0.16);
|
|
1757
|
+
--background-color-active: rgba(0, 136, 255, 0.2);
|
|
1758
|
+
--background-color-focus: #fff;
|
|
1759
|
+
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1760
|
+
}
|
|
1761
|
+
.buj61ew.has-icon {
|
|
1762
|
+
display: inline-flex;
|
|
1562
1763
|
align-items: center;
|
|
1563
|
-
color: #0080ff;
|
|
1564
|
-
font-weight: bold;
|
|
1565
1764
|
}
|
|
1566
|
-
.
|
|
1765
|
+
.buj61ew .button-prefix-icon {
|
|
1766
|
+
margin-right: 4px;
|
|
1767
|
+
display: inline-flex;
|
|
1768
|
+
}
|
|
1769
|
+
.buj61ew .button-suffix-icon {
|
|
1567
1770
|
margin-left: 4px;
|
|
1771
|
+
display: inline-flex;
|
|
1568
1772
|
}
|
|
1569
|
-
.
|
|
1570
|
-
|
|
1571
|
-
|
|
1773
|
+
.buj61ew .icon-wrapper {
|
|
1774
|
+
display: inline-flex;
|
|
1775
|
+
vertical-align: bottom;
|
|
1572
1776
|
}
|
|
1573
|
-
|
|
1574
|
-
.
|
|
1575
|
-
|
|
1777
|
+
|
|
1778
|
+
.nchllas {
|
|
1779
|
+
padding: 0;
|
|
1576
1780
|
}
|
|
1577
|
-
|
|
1578
|
-
|
|
1781
|
+
|
|
1782
|
+
.bpq0js6 {
|
|
1783
|
+
padding: 4px 11px;
|
|
1579
1784
|
}
|
|
1580
1785
|
|
|
1581
|
-
.
|
|
1582
|
-
|
|
1583
|
-
|
|
1786
|
+
.b15sn34c {
|
|
1787
|
+
white-space: nowrap;
|
|
1788
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1584
1789
|
}
|
|
1585
|
-
.
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1790
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1791
|
+
--color: #0080ff;
|
|
1792
|
+
}
|
|
1793
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1794
|
+
--color: #0080ff;
|
|
1795
|
+
}
|
|
1796
|
+
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1797
|
+
margin-left: 1px;
|
|
1798
|
+
}
|
|
1799
|
+
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1800
|
+
border-top-right-radius: 0;
|
|
1801
|
+
border-bottom-right-radius: 0;
|
|
1802
|
+
}
|
|
1803
|
+
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1804
|
+
border-top-left-radius: 0;
|
|
1805
|
+
border-bottom-left-radius: 0;
|
|
1806
|
+
}
|
|
1807
|
+
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1808
|
+
border-radius: unset;
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
.fde5mpd {
|
|
1812
|
+
width: 100%;
|
|
1813
|
+
height: 100%;
|
|
1814
|
+
min-height: 124px;
|
|
1815
|
+
display: flex;
|
|
1816
|
+
flex-direction: column;
|
|
1817
|
+
justify-content: center;
|
|
1818
|
+
align-items: center;
|
|
1819
|
+
}
|
|
1820
|
+
.fde5mpd .error-text {
|
|
1821
|
+
color: rgba(10, 37, 85, 0.6);
|
|
1822
|
+
margin-bottom: 16px;
|
|
1823
|
+
font-size: 18px;
|
|
1589
1824
|
}
|
|
1590
1825
|
|
|
1591
1826
|
.i1mrf09m {
|
|
@@ -1628,48 +1863,61 @@ body {
|
|
|
1628
1863
|
position: absolute;
|
|
1629
1864
|
}
|
|
1630
1865
|
|
|
1631
|
-
.
|
|
1632
|
-
width: 100%;
|
|
1633
|
-
height: 100%;
|
|
1634
|
-
min-height: 124px;
|
|
1866
|
+
.p12gwtiw {
|
|
1635
1867
|
display: flex;
|
|
1636
|
-
|
|
1637
|
-
justify-content: center;
|
|
1868
|
+
justify-content: space-between;
|
|
1638
1869
|
align-items: center;
|
|
1870
|
+
padding: 10px 0;
|
|
1871
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1872
|
+
font-size: 12px;
|
|
1873
|
+
line-height: 24px;
|
|
1639
1874
|
}
|
|
1640
|
-
.
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1875
|
+
.p12gwtiw .pagination-left {
|
|
1876
|
+
padding: 2px 8px;
|
|
1877
|
+
}
|
|
1878
|
+
.p12gwtiw .dropdown-trigger {
|
|
1879
|
+
display: flex;
|
|
1880
|
+
align-items: center;
|
|
1881
|
+
border-radius: 6px;
|
|
1882
|
+
cursor: pointer;
|
|
1883
|
+
transition: all 0.3s ease;
|
|
1644
1884
|
}
|
|
1645
|
-
|
|
1646
|
-
.
|
|
1647
|
-
|
|
1885
|
+
.p12gwtiw .dropdown-trigger:hover {
|
|
1886
|
+
background: rgba(211, 218, 235, 0.6);
|
|
1887
|
+
color: #0080ff;
|
|
1648
1888
|
}
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
white-space: nowrap;
|
|
1652
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1889
|
+
.p12gwtiw .dropdown-trigger .icon-inner {
|
|
1890
|
+
margin-left: 4px;
|
|
1653
1891
|
}
|
|
1654
|
-
.
|
|
1655
|
-
|
|
1892
|
+
.p12gwtiw .pagination-right {
|
|
1893
|
+
display: flex;
|
|
1894
|
+
align-items: center;
|
|
1895
|
+
color: #0080ff;
|
|
1896
|
+
font-weight: bold;
|
|
1656
1897
|
}
|
|
1657
|
-
.
|
|
1658
|
-
|
|
1898
|
+
.p12gwtiw .pagination-right .icon-inner {
|
|
1899
|
+
margin-left: 4px;
|
|
1659
1900
|
}
|
|
1660
|
-
.
|
|
1661
|
-
|
|
1901
|
+
.p12gwtiw .pagination-right .prev-btn,
|
|
1902
|
+
.p12gwtiw .pagination-right .next-btn {
|
|
1903
|
+
padding: 0 8px;
|
|
1662
1904
|
}
|
|
1663
|
-
.
|
|
1664
|
-
|
|
1665
|
-
|
|
1905
|
+
.p12gwtiw .pagination-right .prev-btn > span,
|
|
1906
|
+
.p12gwtiw .pagination-right .next-btn > span {
|
|
1907
|
+
color: #0080ff;
|
|
1666
1908
|
}
|
|
1667
|
-
.
|
|
1668
|
-
|
|
1669
|
-
border-bottom-left-radius: 0;
|
|
1909
|
+
.p12gwtiw .pagination-right .next-btn .icon-inner {
|
|
1910
|
+
transform: rotate(180deg);
|
|
1670
1911
|
}
|
|
1671
|
-
|
|
1672
|
-
|
|
1912
|
+
|
|
1913
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu {
|
|
1914
|
+
max-height: calc(100vh - 128px);
|
|
1915
|
+
overflow-y: auto;
|
|
1916
|
+
}
|
|
1917
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
1918
|
+
padding: 4px 20px;
|
|
1919
|
+
font-size: 12px;
|
|
1920
|
+
line-height: 18px;
|
|
1673
1921
|
}
|
|
1674
1922
|
|
|
1675
1923
|
.rxbeqvl.ant-radio-wrapper {
|
|
@@ -1834,314 +2082,66 @@ body {
|
|
|
1834
2082
|
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
1835
2083
|
height: 26px;
|
|
1836
2084
|
line-height: 26px;
|
|
1837
|
-
width: 100%;
|
|
1838
|
-
text-align: center;
|
|
1839
|
-
padding: 0;
|
|
1840
|
-
font-size: 12px;
|
|
1841
|
-
font-weight: normal;
|
|
1842
|
-
}
|
|
1843
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
1844
|
-
margin-right: 10px;
|
|
1845
|
-
}
|
|
1846
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
1847
|
-
display: none;
|
|
1848
|
-
}
|
|
1849
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
1850
|
-
border-radius: 4px 0 0 4px;
|
|
1851
|
-
}
|
|
1852
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
1853
|
-
margin-right: 0;
|
|
1854
|
-
}
|
|
1855
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
1856
|
-
border-radius: 0 4px 4px 0;
|
|
1857
|
-
}
|
|
1858
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
1859
|
-
content: "";
|
|
1860
|
-
width: 0;
|
|
1861
|
-
height: 0;
|
|
1862
|
-
border: 13px solid transparent;
|
|
1863
|
-
position: absolute;
|
|
1864
|
-
top: 0;
|
|
1865
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
1866
|
-
right: -21px;
|
|
1867
|
-
z-index: 2;
|
|
1868
|
-
}
|
|
1869
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
1870
|
-
content: "";
|
|
1871
|
-
width: 0;
|
|
1872
|
-
height: 0;
|
|
1873
|
-
border: 13px solid transparent;
|
|
1874
|
-
position: absolute;
|
|
1875
|
-
top: 0;
|
|
1876
|
-
border-left: 8px solid #fff;
|
|
1877
|
-
left: 0;
|
|
1878
|
-
}
|
|
1879
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
1880
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
1881
|
-
}
|
|
1882
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
1883
|
-
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
1884
|
-
}
|
|
1885
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
1886
|
-
color: #005ed1;
|
|
1887
|
-
}
|
|
1888
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
1889
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
1890
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
1891
|
-
}
|
|
1892
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
1893
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
1894
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1895
|
-
}
|
|
1896
|
-
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
1897
|
-
padding: 0;
|
|
1898
|
-
}
|
|
1899
|
-
|
|
1900
|
-
.buj61ew.ant-btn {
|
|
1901
|
-
height: 32px;
|
|
1902
|
-
border-radius: 6px;
|
|
1903
|
-
line-height: 22px;
|
|
1904
|
-
transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
|
|
1905
|
-
transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
|
|
1906
|
-
}
|
|
1907
|
-
.buj61ew.ant-btn.ant-btn-lg {
|
|
1908
|
-
height: 40px;
|
|
1909
|
-
line-height: 24px;
|
|
1910
|
-
}
|
|
1911
|
-
.buj61ew.ant-btn.ant-btn-sm {
|
|
1912
|
-
height: 24px;
|
|
1913
|
-
line-height: 20px;
|
|
1914
|
-
}
|
|
1915
|
-
.buj61ew.ant-btn.ant-btn-circle, .buj61ew.ant-btn.ant-btn-circle-outline {
|
|
1916
|
-
border-radius: 50%;
|
|
1917
|
-
}
|
|
1918
|
-
.buj61ew.ant-btn.ant-btn-primary, .buj61ew.ant-btn.ant-btn-secondary, .buj61ew.ant-btn.ant-btn-tertiary, .buj61ew.ant-btn.ant-btn-ordinary, .buj61ew.ant-btn.ant-btn-ordinary-onTint, .buj61ew.ant-btn.ant-btn-quiet {
|
|
1919
|
-
color: var(--color, #06101f);
|
|
1920
|
-
font-weight: var(--font-weight);
|
|
1921
|
-
background: var(--background-color, #fff);
|
|
1922
|
-
border-width: var(--border-width, 1px);
|
|
1923
|
-
border-color: var(--border-color, #d9d9d9);
|
|
1924
|
-
}
|
|
1925
|
-
.buj61ew.ant-btn.ant-btn-primary[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-secondary[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-tertiary[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-ordinary[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-ordinary-onTint[ant-click-animating-without-extra-node=true]:after, .buj61ew.ant-btn.ant-btn-quiet[ant-click-animating-without-extra-node=true]:after {
|
|
1926
|
-
display: none;
|
|
1927
|
-
}
|
|
1928
|
-
.buj61ew.ant-btn.ant-btn-primary .anticon, .buj61ew.ant-btn.ant-btn-secondary .anticon, .buj61ew.ant-btn.ant-btn-tertiary .anticon, .buj61ew.ant-btn.ant-btn-ordinary .anticon, .buj61ew.ant-btn.ant-btn-ordinary-onTint .anticon, .buj61ew.ant-btn.ant-btn-quiet .anticon {
|
|
1929
|
-
color: var(--color, inherit);
|
|
1930
|
-
}
|
|
1931
|
-
.buj61ew.ant-btn.ant-btn-primary:hover, .buj61ew.ant-btn.ant-btn-primary.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-secondary:hover, .buj61ew.ant-btn.ant-btn-secondary.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-tertiary:hover, .buj61ew.ant-btn.ant-btn-tertiary.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-ordinary:hover, .buj61ew.ant-btn.ant-btn-ordinary.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-ordinary-onTint:hover, .buj61ew.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-hover, .buj61ew.ant-btn.ant-btn-quiet:hover, .buj61ew.ant-btn.ant-btn-quiet.__pseudo-states-hover {
|
|
1932
|
-
background: var(--background-color-hover, var(--background-color));
|
|
1933
|
-
border-color: var(--border-color-hover, var(--border-color, transparent));
|
|
1934
|
-
}
|
|
1935
|
-
.buj61ew.ant-btn.ant-btn-primary:active, .buj61ew.ant-btn.ant-btn-primary.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-secondary:active, .buj61ew.ant-btn.ant-btn-secondary.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-tertiary:active, .buj61ew.ant-btn.ant-btn-tertiary.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-ordinary:active, .buj61ew.ant-btn.ant-btn-ordinary.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-ordinary-onTint:active, .buj61ew.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-active, .buj61ew.ant-btn.ant-btn-quiet:active, .buj61ew.ant-btn.ant-btn-quiet.__pseudo-states-active {
|
|
1936
|
-
--scale: 1;
|
|
1937
|
-
--transY: 1px;
|
|
1938
|
-
background: var(--background-color-active, var(--background-color));
|
|
1939
|
-
border-color: var(--border-color-active, var(--border-color, transparent));
|
|
1940
|
-
}
|
|
1941
|
-
.buj61ew.ant-btn.ant-btn-primary:focus, .buj61ew.ant-btn.ant-btn-primary.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-secondary:focus, .buj61ew.ant-btn.ant-btn-secondary.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-tertiary:focus, .buj61ew.ant-btn.ant-btn-tertiary.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-ordinary:focus, .buj61ew.ant-btn.ant-btn-ordinary.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-ordinary-onTint:focus, .buj61ew.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-focus, .buj61ew.ant-btn.ant-btn-quiet:focus, .buj61ew.ant-btn.ant-btn-quiet.__pseudo-states-focus {
|
|
1942
|
-
background: var(--background-color-focus, var(--background-color));
|
|
1943
|
-
box-shadow: 0 0 0px 4px var(--box-shadow-color-focus);
|
|
1944
|
-
border-color: var(--border-color-focus, var(--border-color, transparent));
|
|
1945
|
-
}
|
|
1946
|
-
.buj61ew.ant-btn.ant-btn-primary[disabled], .buj61ew.ant-btn.ant-btn-primary[disabled]:hover, .buj61ew.ant-btn.ant-btn-primary[disabled]:focus, .buj61ew.ant-btn.ant-btn-primary[disabled]:active, .buj61ew.ant-btn.ant-btn-secondary[disabled], .buj61ew.ant-btn.ant-btn-secondary[disabled]:hover, .buj61ew.ant-btn.ant-btn-secondary[disabled]:focus, .buj61ew.ant-btn.ant-btn-secondary[disabled]:active, .buj61ew.ant-btn.ant-btn-tertiary[disabled], .buj61ew.ant-btn.ant-btn-tertiary[disabled]:hover, .buj61ew.ant-btn.ant-btn-tertiary[disabled]:focus, .buj61ew.ant-btn.ant-btn-tertiary[disabled]:active, .buj61ew.ant-btn.ant-btn-ordinary[disabled], .buj61ew.ant-btn.ant-btn-ordinary[disabled]:hover, .buj61ew.ant-btn.ant-btn-ordinary[disabled]:focus, .buj61ew.ant-btn.ant-btn-ordinary[disabled]:active, .buj61ew.ant-btn.ant-btn-ordinary-onTint[disabled], .buj61ew.ant-btn.ant-btn-ordinary-onTint[disabled]:hover, .buj61ew.ant-btn.ant-btn-ordinary-onTint[disabled]:focus, .buj61ew.ant-btn.ant-btn-ordinary-onTint[disabled]:active, .buj61ew.ant-btn.ant-btn-quiet[disabled], .buj61ew.ant-btn.ant-btn-quiet[disabled]:hover, .buj61ew.ant-btn.ant-btn-quiet[disabled]:focus, .buj61ew.ant-btn.ant-btn-quiet[disabled]:active {
|
|
1947
|
-
color: var(--color-disabled, var(--color));
|
|
1948
|
-
background: var(--background-color-disabled, var(--background-color));
|
|
1949
|
-
border-color: var(--border-color-disabled, var(--border-color, transparent));
|
|
1950
|
-
opacity: 0.5;
|
|
1951
|
-
}
|
|
1952
|
-
.buj61ew.ant-btn-link[disabled] {
|
|
1953
|
-
color: #0080ff;
|
|
1954
|
-
opacity: 0.5;
|
|
1955
|
-
}
|
|
1956
|
-
.buj61ew.ant-btn-primary {
|
|
1957
|
-
--color: #fff;
|
|
1958
|
-
--font-weight: bold;
|
|
1959
|
-
--border-width: 0;
|
|
1960
|
-
--background-color: #0080ff;
|
|
1961
|
-
--background-color-hover: #009dff;
|
|
1962
|
-
--background-color-active: #005ed1;
|
|
1963
|
-
--background-color-focus: #0080ff;
|
|
1964
|
-
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1965
|
-
}
|
|
1966
|
-
.buj61ew.ant-btn-primary.ant-btn-dangerous {
|
|
1967
|
-
--background-color: #f0483e;
|
|
1968
|
-
--background-color-hover: #ff5252;
|
|
1969
|
-
--background-color-active: #c73d31;
|
|
1970
|
-
--background-color-focus: #ff5252;
|
|
1971
|
-
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
1972
|
-
}
|
|
1973
|
-
.buj61ew.ant-btn-primary.btn-primary-orange {
|
|
1974
|
-
--background-color: #fea008;
|
|
1975
|
-
--background-color-hover: #feba33;
|
|
1976
|
-
--background-color-active: #e07f00;
|
|
1977
|
-
--background-color-focus: #fea008;
|
|
1978
|
-
}
|
|
1979
|
-
.buj61ew.ant-btn-secondary {
|
|
1980
|
-
--color: #0080ff;
|
|
1981
|
-
--font-weight: bold;
|
|
1982
|
-
--border-width: 0;
|
|
1983
|
-
--background-color: rgba(0, 136, 255, 0.1);
|
|
1984
|
-
--background-color-hover: rgba(0, 136, 255, 0.16);
|
|
1985
|
-
--background-color-active: rgba(0, 136, 255, 0.2);
|
|
1986
|
-
--background-color-focus: rgba(0, 136, 255, 0.1);
|
|
1987
|
-
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
1988
|
-
}
|
|
1989
|
-
.buj61ew.ant-btn-secondary.ant-btn-dangerous {
|
|
1990
|
-
--color: #f0483e;
|
|
1991
|
-
--background-color: rgba(255, 74, 74, 0.1);
|
|
1992
|
-
--background-color-hover: rgba(255, 74, 74, 0.16);
|
|
1993
|
-
--background-color-active: rgba(255, 74, 74, 0.2);
|
|
1994
|
-
--background-color-focus: rgba(255, 74, 74, 0.1);
|
|
1995
|
-
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
1996
|
-
}
|
|
1997
|
-
.buj61ew.ant-btn-secondary.btn-primary-orange {
|
|
1998
|
-
--color: #fea008;
|
|
1999
|
-
--background-color: rgba(255, 187, 0, 0.1);
|
|
2000
|
-
--background-color-hover: rgba(255, 187, 0, 0.16);
|
|
2001
|
-
--background-color-active: rgba(255, 187, 0, 0.2);
|
|
2002
|
-
--background-color-focus: rgba(255, 187, 0, 0.1);
|
|
2003
|
-
}
|
|
2004
|
-
.buj61ew.ant-btn-tertiary {
|
|
2005
|
-
--color: #0080ff;
|
|
2006
|
-
--font-weight: bold;
|
|
2007
|
-
--border-width: 0;
|
|
2008
|
-
--background-color: #fff;
|
|
2009
|
-
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
2010
|
-
box-shadow: none;
|
|
2011
|
-
}
|
|
2012
|
-
.buj61ew.ant-btn-tertiary:not([disabled]):hover, .buj61ew.ant-btn-tertiary:not([disabled]):active, .buj61ew.ant-btn-tertiary:not([disabled]).__pseudo-states-hover, .buj61ew.ant-btn-tertiary:not([disabled]).__pseudo-states-active, .buj61ew.ant-btn-tertiary:not(:focus):hover, .buj61ew.ant-btn-tertiary:not(:focus):active, .buj61ew.ant-btn-tertiary:not(:focus).__pseudo-states-hover, .buj61ew.ant-btn-tertiary:not(:focus).__pseudo-states-active {
|
|
2013
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
2014
|
-
}
|
|
2015
|
-
.buj61ew.ant-btn-tertiary.ant-btn-dangerous {
|
|
2016
|
-
--color: #f0483e;
|
|
2017
|
-
--background-color: #fff;
|
|
2018
|
-
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
2019
|
-
}
|
|
2020
|
-
.buj61ew.ant-btn-tertiary.ant-btn-dangerous:not([disabled]):hover, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not([disabled]):active, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not([disabled]).__pseudo-states-hover, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not([disabled]).__pseudo-states-active, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not(:focus):hover, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not(:focus):active, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not(:focus).__pseudo-states-hover, .buj61ew.ant-btn-tertiary.ant-btn-dangerous:not(:focus).__pseudo-states-active {
|
|
2021
|
-
filter: drop-shadow(0px 2px 8px rgba(255, 74, 74, 0.1));
|
|
2022
|
-
}
|
|
2023
|
-
.buj61ew.ant-btn-tertiary.btn-primary-orange {
|
|
2024
|
-
--color: #fea008;
|
|
2025
|
-
--background-color: #fff;
|
|
2026
|
-
}
|
|
2027
|
-
.buj61ew.ant-btn-tertiary.btn-primary-orange:not([disabled]):hover, .buj61ew.ant-btn-tertiary.btn-primary-orange:not([disabled]):active, .buj61ew.ant-btn-tertiary.btn-primary-orange:not([disabled]).__pseudo-states-hover, .buj61ew.ant-btn-tertiary.btn-primary-orange:not([disabled]).__pseudo-states-active, .buj61ew.ant-btn-tertiary.btn-primary-orange:not(:focus):hover, .buj61ew.ant-btn-tertiary.btn-primary-orange:not(:focus):active, .buj61ew.ant-btn-tertiary.btn-primary-orange:not(:focus).__pseudo-states-hover, .buj61ew.ant-btn-tertiary.btn-primary-orange:not(:focus).__pseudo-states-active {
|
|
2028
|
-
filter: drop-shadow(0px 2px 8px rgba(255, 187, 0, 0.1));
|
|
2029
|
-
}
|
|
2030
|
-
.buj61ew.ant-btn-ordinary {
|
|
2031
|
-
--color: #1d326c;
|
|
2032
|
-
--border-color: #ccd4e3;
|
|
2033
|
-
--background-color: #fff;
|
|
2034
|
-
--background-color-hover: #edf0f7;
|
|
2035
|
-
--background-color-active: #e4e9f2;
|
|
2036
|
-
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
2037
|
-
box-shadow: 0px 1px 2px -1px rgba(44, 56, 82, 0.18);
|
|
2038
|
-
}
|
|
2039
|
-
.buj61ew.ant-btn-ordinary:focus, .buj61ew.ant-btn-ordinary.__pseudo-states-focus {
|
|
2040
|
-
box-shadow: 0 0 0px 4px var(--box-shadow-color-focus);
|
|
2085
|
+
width: 100%;
|
|
2086
|
+
text-align: center;
|
|
2087
|
+
padding: 0;
|
|
2088
|
+
font-size: 12px;
|
|
2089
|
+
font-weight: normal;
|
|
2041
2090
|
}
|
|
2042
|
-
.
|
|
2043
|
-
|
|
2044
|
-
--border-color: #0080ff;
|
|
2045
|
-
--background-color: #fff;
|
|
2046
|
-
--background-color-hover: linear-gradient(
|
|
2047
|
-
0deg,
|
|
2048
|
-
rgba(0, 136, 255, 0.16),
|
|
2049
|
-
rgba(0, 136, 255, 0.16)
|
|
2050
|
-
),
|
|
2051
|
-
#ffffff;
|
|
2052
|
-
--background-color-active: linear-gradient(
|
|
2053
|
-
0deg,
|
|
2054
|
-
rgba(0, 136, 255, 0.2),
|
|
2055
|
-
rgba(0, 136, 255, 0.2)
|
|
2056
|
-
),
|
|
2057
|
-
#ffffff;
|
|
2058
|
-
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
2059
|
-
box-shadow: 0px 1px 2px -1px rgba(44, 56, 82, 0.18);
|
|
2091
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2092
|
+
margin-right: 10px;
|
|
2060
2093
|
}
|
|
2061
|
-
.
|
|
2062
|
-
|
|
2063
|
-
--border-color: #f0483e;
|
|
2064
|
-
--background-color: #fff;
|
|
2065
|
-
--background-color-hover: linear-gradient(
|
|
2066
|
-
0deg,
|
|
2067
|
-
rgba(255, 74, 74, 0.16),
|
|
2068
|
-
rgba(255, 74, 74, 0.16)
|
|
2069
|
-
),
|
|
2070
|
-
#ffffff;
|
|
2071
|
-
--background-color-active: linear-gradient(
|
|
2072
|
-
0deg,
|
|
2073
|
-
rgba(255, 74, 74, 0.2),
|
|
2074
|
-
rgba(255, 74, 74, 0.2)
|
|
2075
|
-
),
|
|
2076
|
-
#ffffff;
|
|
2077
|
-
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
2094
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2095
|
+
display: none;
|
|
2078
2096
|
}
|
|
2079
|
-
.
|
|
2080
|
-
|
|
2081
|
-
--border-color: #fff;
|
|
2082
|
-
--background-color: #fff;
|
|
2083
|
-
--background-color-hover: rgba(211, 218, 235, 0.6);
|
|
2084
|
-
--background-color-active: rgba(192, 203, 224, 0.6);
|
|
2085
|
-
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
2086
|
-
box-shadow: none;
|
|
2097
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2098
|
+
border-radius: 4px 0 0 4px;
|
|
2087
2099
|
}
|
|
2088
|
-
.
|
|
2089
|
-
|
|
2090
|
-
--border-color: #fff;
|
|
2091
|
-
--background-color: #fff;
|
|
2092
|
-
--background-color-hover: rgba(0, 136, 255, 0.16);
|
|
2093
|
-
--background-color-active: rgba(0, 136, 255, 0.2);
|
|
2094
|
-
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
2095
|
-
box-shadow: none;
|
|
2100
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2101
|
+
margin-right: 0;
|
|
2096
2102
|
}
|
|
2097
|
-
.
|
|
2098
|
-
|
|
2099
|
-
--background-color-hover: rgba(255, 74, 74, 0.16);
|
|
2100
|
-
--background-color-active: rgba(255, 74, 74, 0.2);
|
|
2101
|
-
--box-shadow-color-focus: rgba(255, 74, 74, 0.16);
|
|
2103
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2104
|
+
border-radius: 0 4px 4px 0;
|
|
2102
2105
|
}
|
|
2103
|
-
.
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2106
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
2107
|
+
content: "";
|
|
2108
|
+
width: 0;
|
|
2109
|
+
height: 0;
|
|
2110
|
+
border: 13px solid transparent;
|
|
2111
|
+
position: absolute;
|
|
2112
|
+
top: 0;
|
|
2113
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2114
|
+
right: -21px;
|
|
2115
|
+
z-index: 2;
|
|
2112
2116
|
}
|
|
2113
|
-
.
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2117
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
2118
|
+
content: "";
|
|
2119
|
+
width: 0;
|
|
2120
|
+
height: 0;
|
|
2121
|
+
border: 13px solid transparent;
|
|
2122
|
+
position: absolute;
|
|
2123
|
+
top: 0;
|
|
2124
|
+
border-left: 8px solid #fff;
|
|
2125
|
+
left: 0;
|
|
2118
2126
|
}
|
|
2119
|
-
.
|
|
2120
|
-
|
|
2121
|
-
--background-color: transparent;
|
|
2122
|
-
--background-color-hover: rgba(0, 136, 255, 0.16);
|
|
2123
|
-
--background-color-active: rgba(0, 136, 255, 0.2);
|
|
2124
|
-
--background-color-focus: #fff;
|
|
2125
|
-
--box-shadow-color-focus: rgba(0, 136, 255, 0.16);
|
|
2127
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2128
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2126
2129
|
}
|
|
2127
|
-
.
|
|
2128
|
-
|
|
2129
|
-
align-items: center;
|
|
2130
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2131
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2130
2132
|
}
|
|
2131
|
-
.
|
|
2132
|
-
|
|
2133
|
-
display: inline-flex;
|
|
2133
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2134
|
+
color: #005ed1;
|
|
2134
2135
|
}
|
|
2135
|
-
.
|
|
2136
|
-
|
|
2137
|
-
|
|
2136
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2137
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2138
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
2138
2139
|
}
|
|
2139
|
-
.
|
|
2140
|
-
|
|
2141
|
-
|
|
2140
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2141
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2142
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2142
2143
|
}
|
|
2143
|
-
|
|
2144
|
-
.nchllas {
|
|
2144
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2145
2145
|
padding: 0;
|
|
2146
2146
|
}
|
|
2147
2147
|
|
|
@@ -3305,10 +3305,6 @@ input.rrg1fkn.ant-input {
|
|
|
3305
3305
|
background: rgba(225, 230, 241, 0.6);
|
|
3306
3306
|
}
|
|
3307
3307
|
|
|
3308
|
-
.i1e4sgug {
|
|
3309
|
-
display: inline-block;
|
|
3310
|
-
}
|
|
3311
|
-
|
|
3312
3308
|
.d6j0lbj {
|
|
3313
3309
|
font-family: Inter;
|
|
3314
3310
|
font-style: normal;
|
|
@@ -3784,6 +3780,10 @@ input.rrg1fkn.ant-input {
|
|
|
3784
3780
|
line-height: 12px;
|
|
3785
3781
|
}
|
|
3786
3782
|
|
|
3783
|
+
.i1e4sgug {
|
|
3784
|
+
display: inline-block;
|
|
3785
|
+
}
|
|
3786
|
+
|
|
3787
3787
|
.c198s9j3 {
|
|
3788
3788
|
color: #2d3a56;
|
|
3789
3789
|
line-height: 22px;
|
|
@@ -3855,14 +3855,8 @@ input.rrg1fkn.ant-input {
|
|
|
3855
3855
|
margin-left: 24px;
|
|
3856
3856
|
}
|
|
3857
3857
|
|
|
3858
|
-
.
|
|
3859
|
-
|
|
3860
|
-
width: 56px !important;
|
|
3861
|
-
margin-right: 4px;
|
|
3862
|
-
}
|
|
3863
|
-
|
|
3864
|
-
.c1riexje {
|
|
3865
|
-
color: rgba(44, 56, 82, 0.6);
|
|
3858
|
+
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
3859
|
+
display: flex;
|
|
3866
3860
|
}
|
|
3867
3861
|
|
|
3868
3862
|
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
@@ -3920,8 +3914,14 @@ input.rrg1fkn.ant-input {
|
|
|
3920
3914
|
transform: rotate(180deg);
|
|
3921
3915
|
}
|
|
3922
3916
|
|
|
3923
|
-
.
|
|
3924
|
-
|
|
3917
|
+
.igz4le8 {
|
|
3918
|
+
height: 24px;
|
|
3919
|
+
width: 56px !important;
|
|
3920
|
+
margin-right: 4px;
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
.c1riexje {
|
|
3924
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3925
3925
|
}
|
|
3926
3926
|
|
|
3927
3927
|
.m1thnes4 {
|
|
@@ -4115,6 +4115,52 @@ input.rrg1fkn.ant-input {
|
|
|
4115
4115
|
background: rgba(163, 180, 204, 0.18);
|
|
4116
4116
|
}
|
|
4117
4117
|
|
|
4118
|
+
.at4ovwe .ant-input-number-handler-wrap {
|
|
4119
|
+
display: var(--at4ovwe-0);
|
|
4120
|
+
}
|
|
4121
|
+
.at4ovwe .ant-input-number-input-wrap {
|
|
4122
|
+
padding: 5px 12px;
|
|
4123
|
+
display: inline-flex;
|
|
4124
|
+
line-height: 1.5715;
|
|
4125
|
+
height: 100%;
|
|
4126
|
+
width: 100%;
|
|
4127
|
+
}
|
|
4128
|
+
.at4ovwe .ant-input-number-input-wrap::after {
|
|
4129
|
+
content: var(--at4ovwe-1);
|
|
4130
|
+
display: var(--at4ovwe-2);
|
|
4131
|
+
flex: none;
|
|
4132
|
+
align-items: center;
|
|
4133
|
+
margin-left: 4px;
|
|
4134
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4135
|
+
}
|
|
4136
|
+
.at4ovwe .ant-input-number-input-wrap::before {
|
|
4137
|
+
content: var(--at4ovwe-3);
|
|
4138
|
+
display: var(--at4ovwe-4);
|
|
4139
|
+
flex: none;
|
|
4140
|
+
align-items: center;
|
|
4141
|
+
margin-right: 4px;
|
|
4142
|
+
cursor: auto;
|
|
4143
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4144
|
+
}
|
|
4145
|
+
.at4ovwe.ant-input-number {
|
|
4146
|
+
width: 100%;
|
|
4147
|
+
border-radius: 6px;
|
|
4148
|
+
}
|
|
4149
|
+
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
4150
|
+
border-color: #0096ff;
|
|
4151
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
4152
|
+
}
|
|
4153
|
+
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
4154
|
+
border-color: #e75a3a;
|
|
4155
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
4156
|
+
}
|
|
4157
|
+
.at4ovwe .ant-input-number-input {
|
|
4158
|
+
padding: 0;
|
|
4159
|
+
margin: 0;
|
|
4160
|
+
height: auto;
|
|
4161
|
+
font-size: inherit;
|
|
4162
|
+
}
|
|
4163
|
+
|
|
4118
4164
|
.tc40oxa {
|
|
4119
4165
|
margin-bottom: 4px;
|
|
4120
4166
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -4311,50 +4357,33 @@ input.rrg1fkn.ant-input {
|
|
|
4311
4357
|
margin-right: 8px;
|
|
4312
4358
|
}
|
|
4313
4359
|
|
|
4314
|
-
.
|
|
4315
|
-
display: var(--at4ovwe-0);
|
|
4316
|
-
}
|
|
4317
|
-
.at4ovwe .ant-input-number-input-wrap {
|
|
4318
|
-
padding: 5px 12px;
|
|
4319
|
-
display: inline-flex;
|
|
4320
|
-
line-height: 1.5715;
|
|
4321
|
-
height: 100%;
|
|
4360
|
+
.f1p9ti6d {
|
|
4322
4361
|
width: 100%;
|
|
4362
|
+
margin-bottom: 0 !important;
|
|
4363
|
+
flex-flow: nowrap !important;
|
|
4364
|
+
line-break: auto;
|
|
4323
4365
|
}
|
|
4324
|
-
.
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
flex: none;
|
|
4328
|
-
align-items: center;
|
|
4329
|
-
margin-left: 4px;
|
|
4330
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4366
|
+
.f1p9ti6d > .ant-form-item-label {
|
|
4367
|
+
text-align: left !important;
|
|
4368
|
+
padding-bottom: 0 !important;
|
|
4331
4369
|
}
|
|
4332
|
-
.
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
align-items: center;
|
|
4337
|
-
margin-right: 4px;
|
|
4338
|
-
cursor: auto;
|
|
4370
|
+
.f1p9ti6d > .ant-form-item-label > label {
|
|
4371
|
+
min-height: 32px;
|
|
4372
|
+
height: auto;
|
|
4373
|
+
font-size: 13px;
|
|
4339
4374
|
color: rgba(44, 56, 82, 0.6);
|
|
4375
|
+
white-space: normal;
|
|
4340
4376
|
}
|
|
4341
|
-
.
|
|
4342
|
-
|
|
4343
|
-
border-radius: 6px;
|
|
4344
|
-
}
|
|
4345
|
-
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
4346
|
-
border-color: #0096ff;
|
|
4347
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
4377
|
+
.f1p9ti6d.ant-form-item-has-error .ant-input {
|
|
4378
|
+
border-color: #ff4d4f !important;
|
|
4348
4379
|
}
|
|
4349
|
-
.
|
|
4350
|
-
|
|
4351
|
-
|
|
4380
|
+
.f1p9ti6d .ant-form-item-explain {
|
|
4381
|
+
margin-top: 4px;
|
|
4382
|
+
font-size: 12px;
|
|
4352
4383
|
}
|
|
4353
|
-
.
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
height: auto;
|
|
4357
|
-
font-size: inherit;
|
|
4384
|
+
.f1p9ti6d .ant-form-item-extra {
|
|
4385
|
+
font-size: 12px;
|
|
4386
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4358
4387
|
}
|
|
4359
4388
|
|
|
4360
4389
|
.a6dbbkm .ant-input-number-handler-wrap {
|