@akropolys/kiku 1.7.9 → 1.7.11
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.js +21 -19
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -19
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +19 -50
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1471,40 +1471,6 @@
|
|
|
1471
1471
|
transform: rotate(360deg);
|
|
1472
1472
|
}
|
|
1473
1473
|
}
|
|
1474
|
-
.hsk-cb-typing {
|
|
1475
|
-
display: inline-flex;
|
|
1476
|
-
align-items: center;
|
|
1477
|
-
gap: 3px;
|
|
1478
|
-
}
|
|
1479
|
-
.hsk-cb-typing span {
|
|
1480
|
-
width: 6px;
|
|
1481
|
-
height: 6px;
|
|
1482
|
-
border-radius: 50%;
|
|
1483
|
-
background: currentColor;
|
|
1484
|
-
animation: hsk-typing-dot 1.4s ease-in-out infinite;
|
|
1485
|
-
}
|
|
1486
|
-
.hsk-cb-typing span:nth-child(2) {
|
|
1487
|
-
animation-delay: .2s;
|
|
1488
|
-
}
|
|
1489
|
-
.hsk-cb-typing span:nth-child(3) {
|
|
1490
|
-
animation-delay: .4s;
|
|
1491
|
-
}
|
|
1492
|
-
@keyframes hsk-typing-dot {
|
|
1493
|
-
0%, 60%, 100% {
|
|
1494
|
-
opacity: .35;
|
|
1495
|
-
transform: scale(.85);
|
|
1496
|
-
}
|
|
1497
|
-
30% {
|
|
1498
|
-
opacity: 1;
|
|
1499
|
-
transform: scale(1.15);
|
|
1500
|
-
}
|
|
1501
|
-
}
|
|
1502
|
-
@media (prefers-reduced-motion: reduce) {
|
|
1503
|
-
.hsk-cb-typing span {
|
|
1504
|
-
animation: none;
|
|
1505
|
-
opacity: .6;
|
|
1506
|
-
}
|
|
1507
|
-
}
|
|
1508
1474
|
.hsk-cb-think-chevron {
|
|
1509
1475
|
font-size: 9px;
|
|
1510
1476
|
transition: transform .12s;
|
|
@@ -3759,29 +3725,32 @@
|
|
|
3759
3725
|
line-height: 1.4;
|
|
3760
3726
|
color: var(--hsk-chat-muted, #9aa0a6);
|
|
3761
3727
|
}
|
|
3762
|
-
.hsk-cb-viz-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
gap: 12px;
|
|
3767
|
-
max-width: 560px;
|
|
3728
|
+
.hsk-cb-viz-imgwrap {
|
|
3729
|
+
position: relative;
|
|
3730
|
+
display: inline-block;
|
|
3731
|
+
max-width: 100%;
|
|
3768
3732
|
}
|
|
3769
3733
|
.hsk-cb-viz-mark {
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3734
|
+
position: absolute;
|
|
3735
|
+
right: 10px;
|
|
3736
|
+
bottom: 10px;
|
|
3737
|
+
display: inline-flex;
|
|
3738
|
+
align-items: center;
|
|
3739
|
+
gap: 6px;
|
|
3740
|
+
padding: 8px 14px;
|
|
3741
|
+
font-size: 12.5px;
|
|
3774
3742
|
font-weight: 600;
|
|
3775
|
-
color:
|
|
3776
|
-
background:
|
|
3777
|
-
|
|
3778
|
-
border
|
|
3743
|
+
color: #fff;
|
|
3744
|
+
background: rgba(0, 0, 0, .62);
|
|
3745
|
+
backdrop-filter: blur(6px);
|
|
3746
|
+
border: 1px solid rgba(255, 255, 255, .35);
|
|
3747
|
+
border-radius: 999px;
|
|
3779
3748
|
cursor: pointer;
|
|
3780
|
-
transition: background .15s
|
|
3749
|
+
transition: background .15s;
|
|
3781
3750
|
}
|
|
3782
3751
|
.hsk-cb-viz-mark:hover {
|
|
3783
3752
|
background: var(--hsk-primary, #ff6a33);
|
|
3784
|
-
color:
|
|
3753
|
+
border-color: transparent;
|
|
3785
3754
|
}
|
|
3786
3755
|
.hsk-markup-overlay {
|
|
3787
3756
|
position: fixed;
|