@qikdev/vue-ui 0.2.267 → 0.2.268
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 +49 -6
- package/dist/lib.es.js.map +1 -1
- package/dist/lib.umd.js +53 -6
- package/dist/lib.umd.js.map +1 -1
- package/dist/style.css +22 -11
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1589,54 +1589,65 @@ input[data-v-4bea995b]:focus {
|
|
|
1589
1589
|
bottom: 0;
|
|
1590
1590
|
right: 0;
|
|
1591
1591
|
}
|
|
1592
|
-
.basic-input-style[data-v-
|
|
1592
|
+
.basic-input-style[data-v-cf0f8f29] {
|
|
1593
1593
|
color: inherit;
|
|
1594
1594
|
background: color-mix(in lab, currentColor 4%, transparent);
|
|
1595
1595
|
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1596
1596
|
}
|
|
1597
|
-
.content-item[data-v-
|
|
1597
|
+
.content-item[data-v-cf0f8f29] {
|
|
1598
1598
|
padding: 0.5em 0.8em;
|
|
1599
1599
|
border-radius: 0.3em;
|
|
1600
1600
|
cursor: pointer;
|
|
1601
1601
|
margin-bottom: 1px;
|
|
1602
1602
|
}
|
|
1603
|
-
.content-item .item-summary[data-v-
|
|
1603
|
+
.content-item .item-summary[data-v-cf0f8f29] {
|
|
1604
1604
|
opacity: 0.5;
|
|
1605
1605
|
font-size: 0.9em;
|
|
1606
1606
|
}
|
|
1607
|
-
.content-item .item-title[data-v-
|
|
1607
|
+
.content-item .item-title[data-v-cf0f8f29] {
|
|
1608
1608
|
font-weight: 500;
|
|
1609
1609
|
}
|
|
1610
1610
|
@media (prefers-color-scheme: light) {
|
|
1611
|
-
.content-item[data-v-
|
|
1611
|
+
.content-item[data-v-cf0f8f29] {
|
|
1612
1612
|
background: var(--bg1, #fff);
|
|
1613
1613
|
border: 1px solid color-mix(in lab, currentColor 15%, transparent);
|
|
1614
1614
|
}
|
|
1615
1615
|
}
|
|
1616
1616
|
@media (prefers-color-scheme: dark) {
|
|
1617
|
-
.content-item[data-v-
|
|
1617
|
+
.content-item[data-v-cf0f8f29] {
|
|
1618
1618
|
background: color-mix(in lab, #000 1%, transparent);
|
|
1619
1619
|
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1620
1620
|
}
|
|
1621
1621
|
}
|
|
1622
|
-
.content-item[data-v-
|
|
1622
|
+
.content-item[data-v-cf0f8f29]:last-child {
|
|
1623
1623
|
margin-bottom: 0;
|
|
1624
1624
|
}
|
|
1625
|
-
.content-item .text[data-v-
|
|
1625
|
+
.content-item .text[data-v-cf0f8f29] {
|
|
1626
1626
|
overflow: hidden;
|
|
1627
1627
|
text-overflow: ellipsis;
|
|
1628
1628
|
white-space: pre-line;
|
|
1629
1629
|
}
|
|
1630
|
-
.content-item .
|
|
1630
|
+
.content-item .icon-wrapper[data-v-cf0f8f29] {
|
|
1631
|
+
width: 25px;
|
|
1632
|
+
font-size: 20px;
|
|
1633
|
+
text-align: center;
|
|
1634
|
+
}
|
|
1635
|
+
.content-item .icon-wrapper.complete[data-v-cf0f8f29] {
|
|
1636
|
+
color: var(--success, green);
|
|
1637
|
+
}
|
|
1638
|
+
.content-item .icon-wrapper.pending[data-v-cf0f8f29] {
|
|
1639
|
+
color: var(--warning, orange);
|
|
1640
|
+
}
|
|
1641
|
+
.content-item .image-wrapper[data-v-cf0f8f29] {
|
|
1631
1642
|
width: 50px;
|
|
1632
1643
|
}
|
|
1633
|
-
.content-item .image-wrapper.profile[data-v-
|
|
1644
|
+
.content-item .image-wrapper.profile[data-v-cf0f8f29] {
|
|
1634
1645
|
width: 40px;
|
|
1635
1646
|
height: 40px;
|
|
1636
1647
|
background: rgba(0, 0, 0, 0.1);
|
|
1637
1648
|
border-radius: 100%;
|
|
1638
1649
|
}
|
|
1639
|
-
.content-item[data-v-
|
|
1650
|
+
.content-item[data-v-cf0f8f29]:hover {
|
|
1640
1651
|
cursor: pointer;
|
|
1641
1652
|
background: color-mix(in lab, currentColor 2%, transparent);
|
|
1642
1653
|
}
|