@qikdev/vue-ui 0.2.275 → 0.2.276
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/lib.es.js +43 -3
- package/dist/lib.es.js.map +1 -1
- package/dist/lib.umd.js +40 -3
- package/dist/lib.umd.js.map +1 -1
- package/dist/style.css +76 -14
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1640,68 +1640,130 @@ input[data-v-4bea995b]:focus {
|
|
|
1640
1640
|
bottom: 0;
|
|
1641
1641
|
right: 0;
|
|
1642
1642
|
}
|
|
1643
|
-
.basic-input-style[data-v-
|
|
1643
|
+
.basic-input-style[data-v-df4b8b3a] {
|
|
1644
1644
|
color: inherit;
|
|
1645
1645
|
background: color-mix(in lab, currentColor 4%, transparent);
|
|
1646
1646
|
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1647
1647
|
}
|
|
1648
|
-
.content-item[data-v-
|
|
1648
|
+
.content-item[data-v-df4b8b3a] {
|
|
1649
1649
|
padding: 0.5em 0.8em;
|
|
1650
1650
|
border-radius: 0.3em;
|
|
1651
1651
|
cursor: pointer;
|
|
1652
1652
|
margin-bottom: 1px;
|
|
1653
1653
|
}
|
|
1654
|
-
.content-item .item-summary[data-v-
|
|
1654
|
+
.content-item .item-summary[data-v-df4b8b3a] {
|
|
1655
1655
|
opacity: 0.5;
|
|
1656
1656
|
font-size: 0.9em;
|
|
1657
1657
|
}
|
|
1658
|
-
.content-item .item-title[data-v-
|
|
1658
|
+
.content-item .item-title[data-v-df4b8b3a] {
|
|
1659
1659
|
font-weight: 500;
|
|
1660
1660
|
}
|
|
1661
1661
|
@media (prefers-color-scheme: light) {
|
|
1662
|
-
.content-item[data-v-
|
|
1662
|
+
.content-item[data-v-df4b8b3a] {
|
|
1663
1663
|
background: var(--bg1, #fff);
|
|
1664
1664
|
border: 1px solid color-mix(in lab, currentColor 15%, transparent);
|
|
1665
1665
|
}
|
|
1666
1666
|
}
|
|
1667
1667
|
@media (prefers-color-scheme: dark) {
|
|
1668
|
-
.content-item[data-v-
|
|
1668
|
+
.content-item[data-v-df4b8b3a] {
|
|
1669
1669
|
background: color-mix(in lab, #000 1%, transparent);
|
|
1670
1670
|
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1671
1671
|
}
|
|
1672
1672
|
}
|
|
1673
|
-
.content-item[data-v-
|
|
1673
|
+
.content-item[data-v-df4b8b3a]:last-child {
|
|
1674
1674
|
margin-bottom: 0;
|
|
1675
1675
|
}
|
|
1676
|
-
.content-item .text[data-v-
|
|
1676
|
+
.content-item.deleted .text[data-v-df4b8b3a] {
|
|
1677
|
+
color: var(--error, red);
|
|
1678
|
+
text-decoration: line-through;
|
|
1679
|
+
}
|
|
1680
|
+
.content-item.inactive .text[data-v-df4b8b3a] {
|
|
1681
|
+
opacity: 0.5;
|
|
1682
|
+
}
|
|
1683
|
+
.content-item .text[data-v-df4b8b3a] {
|
|
1677
1684
|
overflow: hidden;
|
|
1678
1685
|
text-overflow: ellipsis;
|
|
1679
1686
|
white-space: pre-line;
|
|
1680
1687
|
}
|
|
1681
|
-
.content-item .icon-wrapper[data-v-
|
|
1688
|
+
.content-item .icon-wrapper[data-v-df4b8b3a] {
|
|
1682
1689
|
width: 25px;
|
|
1683
1690
|
font-size: 20px;
|
|
1684
1691
|
text-align: center;
|
|
1685
1692
|
}
|
|
1686
|
-
.content-item .icon-wrapper.complete[data-v-
|
|
1693
|
+
.content-item .icon-wrapper.complete[data-v-df4b8b3a] {
|
|
1687
1694
|
color: var(--success, green);
|
|
1688
1695
|
}
|
|
1689
|
-
.content-item .icon-wrapper.pending[data-v-
|
|
1696
|
+
.content-item .icon-wrapper.pending[data-v-df4b8b3a] {
|
|
1690
1697
|
color: var(--warning, orange);
|
|
1691
1698
|
}
|
|
1692
|
-
.content-item .image-wrapper[data-v-
|
|
1699
|
+
.content-item .image-wrapper[data-v-df4b8b3a] {
|
|
1693
1700
|
width: 50px;
|
|
1694
1701
|
}
|
|
1695
|
-
.content-item .image-wrapper.profile[data-v-
|
|
1702
|
+
.content-item .image-wrapper.profile[data-v-df4b8b3a] {
|
|
1696
1703
|
width: 40px;
|
|
1697
1704
|
height: 40px;
|
|
1698
1705
|
background: rgba(0, 0, 0, 0.1);
|
|
1699
1706
|
border-radius: 100%;
|
|
1700
1707
|
}
|
|
1701
|
-
.content-item[data-v-
|
|
1708
|
+
.content-item[data-v-df4b8b3a]:hover {
|
|
1702
1709
|
cursor: pointer;
|
|
1703
1710
|
background: color-mix(in lab, currentColor 2%, transparent);
|
|
1704
1711
|
}
|
|
1712
|
+
.content-item .pill[data-v-df4b8b3a] {
|
|
1713
|
+
border-radius: 3em;
|
|
1714
|
+
padding: 0.3em 0.6em;
|
|
1715
|
+
display: block;
|
|
1716
|
+
text-transform: uppercase;
|
|
1717
|
+
font-weight: 700;
|
|
1718
|
+
letter-spacing: 0.05em;
|
|
1719
|
+
font-size: 0.7em;
|
|
1720
|
+
background: color-mix(in lab, currentColor 10%, transparent);
|
|
1721
|
+
color: color-mix(in lab, currentColor, transparent);
|
|
1722
|
+
border: 1px solid;
|
|
1723
|
+
}
|
|
1724
|
+
.content-item .pill.live[data-v-df4b8b3a],
|
|
1725
|
+
.content-item .pill.success[data-v-df4b8b3a],
|
|
1726
|
+
.content-item .pill.paid[data-v-df4b8b3a],
|
|
1727
|
+
.content-item .pill.active[data-v-df4b8b3a] {
|
|
1728
|
+
background: #e0f3bf;
|
|
1729
|
+
color: #569e2f;
|
|
1730
|
+
}
|
|
1731
|
+
@media (prefers-color-scheme: dark) {
|
|
1732
|
+
.content-item .pill.live[data-v-df4b8b3a],
|
|
1733
|
+
.content-item .pill.success[data-v-df4b8b3a],
|
|
1734
|
+
.content-item .pill.paid[data-v-df4b8b3a],
|
|
1735
|
+
.content-item .pill.active[data-v-df4b8b3a] {
|
|
1736
|
+
background: none;
|
|
1737
|
+
}
|
|
1738
|
+
}
|
|
1739
|
+
.content-item .pill.sandbox[data-v-df4b8b3a],
|
|
1740
|
+
.content-item .pill.pending[data-v-df4b8b3a],
|
|
1741
|
+
.content-item .pill.cancelling[data-v-df4b8b3a] {
|
|
1742
|
+
background: #fbecbb;
|
|
1743
|
+
color: #d17a0e;
|
|
1744
|
+
}
|
|
1745
|
+
@media (prefers-color-scheme: dark) {
|
|
1746
|
+
.content-item .pill.sandbox[data-v-df4b8b3a],
|
|
1747
|
+
.content-item .pill.pending[data-v-df4b8b3a],
|
|
1748
|
+
.content-item .pill.cancelling[data-v-df4b8b3a] {
|
|
1749
|
+
background: none;
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1752
|
+
.content-item .pill.error[data-v-df4b8b3a],
|
|
1753
|
+
.content-item .pill.unpaid[data-v-df4b8b3a],
|
|
1754
|
+
.content-item .pill.deleted[data-v-df4b8b3a],
|
|
1755
|
+
.content-item .pill.failed[data-v-df4b8b3a] {
|
|
1756
|
+
background: #ffdddd;
|
|
1757
|
+
color: #b14e4e;
|
|
1758
|
+
}
|
|
1759
|
+
@media (prefers-color-scheme: dark) {
|
|
1760
|
+
.content-item .pill.error[data-v-df4b8b3a],
|
|
1761
|
+
.content-item .pill.unpaid[data-v-df4b8b3a],
|
|
1762
|
+
.content-item .pill.deleted[data-v-df4b8b3a],
|
|
1763
|
+
.content-item .pill.failed[data-v-df4b8b3a] {
|
|
1764
|
+
background: none;
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1705
1767
|
.basic-input-style[data-v-38242855],
|
|
1706
1768
|
input[data-v-38242855] {
|
|
1707
1769
|
color: inherit;
|