@kimafinance/kima-transaction-widget 1.4.1 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +27 -34
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +34 -3
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +27 -34
- package/dist/index.js.map +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1683,7 +1683,7 @@
|
|
|
1683
1683
|
margin: 7px 14px;
|
|
1684
1684
|
padding: 11px 7px;
|
|
1685
1685
|
border-radius: 20px;
|
|
1686
|
-
width:
|
|
1686
|
+
width: 220px;
|
|
1687
1687
|
transition:
|
|
1688
1688
|
all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
|
1689
1689
|
color 0ms,
|
|
@@ -1694,6 +1694,37 @@
|
|
|
1694
1694
|
flex-direction: row;
|
|
1695
1695
|
align-items: center;
|
|
1696
1696
|
}
|
|
1697
|
+
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item.disabled {
|
|
1698
|
+
color: rgba(119, 141, 163, 0.3019607843);
|
|
1699
|
+
cursor: default;
|
|
1700
|
+
}
|
|
1701
|
+
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item.has-tooltip {
|
|
1702
|
+
position: relative;
|
|
1703
|
+
}
|
|
1704
|
+
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item.has-tooltip .tooltip {
|
|
1705
|
+
visibility: hidden;
|
|
1706
|
+
background-color: #86b8ce;
|
|
1707
|
+
font-family: "Manrope";
|
|
1708
|
+
color: #fff;
|
|
1709
|
+
text-align: center;
|
|
1710
|
+
font-size: 12px;
|
|
1711
|
+
padding: 6px 8px;
|
|
1712
|
+
border-radius: 4px;
|
|
1713
|
+
position: absolute;
|
|
1714
|
+
z-index: 10;
|
|
1715
|
+
bottom: 120%;
|
|
1716
|
+
left: 50%;
|
|
1717
|
+
transform: translateX(-50%);
|
|
1718
|
+
white-space: nowrap;
|
|
1719
|
+
opacity: 0;
|
|
1720
|
+
transition: opacity 0.3s ease, transform 0.3s ease;
|
|
1721
|
+
pointer-events: none;
|
|
1722
|
+
}
|
|
1723
|
+
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item.has-tooltip:hover .tooltip {
|
|
1724
|
+
visibility: visible;
|
|
1725
|
+
opacity: 1;
|
|
1726
|
+
transform: translateX(-50%) translateY(20px);
|
|
1727
|
+
}
|
|
1697
1728
|
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item .icon {
|
|
1698
1729
|
display: flex;
|
|
1699
1730
|
justify-content: center;
|
|
@@ -1706,10 +1737,10 @@
|
|
|
1706
1737
|
margin-top: 0;
|
|
1707
1738
|
margin-bottom: 0;
|
|
1708
1739
|
}
|
|
1709
|
-
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item.light:hover {
|
|
1740
|
+
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item.enabled.light:hover {
|
|
1710
1741
|
background: #d6e4ea;
|
|
1711
1742
|
}
|
|
1712
|
-
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item.dark:hover {
|
|
1743
|
+
.kima-card .kima-card-content .single-form .network-dropdown .network-menu-item.enabled.dark:hover {
|
|
1713
1744
|
background: #2c303e;
|
|
1714
1745
|
}
|
|
1715
1746
|
.kima-card .kima-card-content .single-form .network-dropdown .network-menu.collapsed {
|