@akropolys/kiku 1.6.9 → 1.7.0
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 +20 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -0
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +33 -2
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1037,10 +1037,10 @@
|
|
|
1037
1037
|
background: var(--hsk-chat-muted, #ccc);
|
|
1038
1038
|
}
|
|
1039
1039
|
.hsk-cb-send--stop {
|
|
1040
|
-
background: #
|
|
1040
|
+
background: #e5342a;
|
|
1041
1041
|
}
|
|
1042
1042
|
.hsk-cb-send--stop:hover {
|
|
1043
|
-
background: #
|
|
1043
|
+
background: #c92a21;
|
|
1044
1044
|
opacity: 1;
|
|
1045
1045
|
}
|
|
1046
1046
|
.hsk-cb-hint {
|
|
@@ -3548,4 +3548,35 @@
|
|
|
3548
3548
|
.hsk-lightbox-close:hover {
|
|
3549
3549
|
background: rgba(255, 255, 255, 0.28);
|
|
3550
3550
|
}
|
|
3551
|
+
.hsk-cb-viz {
|
|
3552
|
+
margin-top: 10px;
|
|
3553
|
+
animation: hsk-msg-in .2s ease-out both;
|
|
3554
|
+
}
|
|
3555
|
+
.hsk-cb-viz img {
|
|
3556
|
+
width: 100%;
|
|
3557
|
+
max-width: 420px;
|
|
3558
|
+
border-radius: 8px;
|
|
3559
|
+
display: block;
|
|
3560
|
+
}
|
|
3561
|
+
.hsk-cb-viz--loading {
|
|
3562
|
+
display: flex;
|
|
3563
|
+
align-items: center;
|
|
3564
|
+
gap: 8px;
|
|
3565
|
+
font-size: 12px;
|
|
3566
|
+
color: var(--hsk-chat-muted, #888);
|
|
3567
|
+
padding: 10px 0;
|
|
3568
|
+
}
|
|
3569
|
+
.hsk-cb-viz-spinner {
|
|
3570
|
+
width: 14px;
|
|
3571
|
+
height: 14px;
|
|
3572
|
+
border-radius: 50%;
|
|
3573
|
+
border: 2px solid var(--hsk-chat-divide, rgba(0,0,0,.15));
|
|
3574
|
+
border-top-color: var(--hsk-primary, #ff6a33);
|
|
3575
|
+
animation: hsk-viz-spin .7s linear infinite;
|
|
3576
|
+
}
|
|
3577
|
+
@keyframes hsk-viz-spin {
|
|
3578
|
+
to {
|
|
3579
|
+
transform: rotate(360deg);
|
|
3580
|
+
}
|
|
3581
|
+
}
|
|
3551
3582
|
/*# sourceMappingURL=styles.css.map */
|