@akropolys/kiku 1.6.8 → 1.6.9
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 +309 -375
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +309 -375
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +60 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1036,6 +1036,13 @@
|
|
|
1036
1036
|
cursor: not-allowed;
|
|
1037
1037
|
background: var(--hsk-chat-muted, #ccc);
|
|
1038
1038
|
}
|
|
1039
|
+
.hsk-cb-send--stop {
|
|
1040
|
+
background: #3a3a3c;
|
|
1041
|
+
}
|
|
1042
|
+
.hsk-cb-send--stop:hover {
|
|
1043
|
+
background: #2a2a2c;
|
|
1044
|
+
opacity: 1;
|
|
1045
|
+
}
|
|
1039
1046
|
.hsk-cb-hint {
|
|
1040
1047
|
text-align: center;
|
|
1041
1048
|
font-size: 10px;
|
|
@@ -3488,4 +3495,57 @@
|
|
|
3488
3495
|
background: color-mix(in srgb, var(--hsk-primary, #7c5cfc) 12%, transparent);
|
|
3489
3496
|
color: var(--hsk-primary, #7c5cfc);
|
|
3490
3497
|
}
|
|
3498
|
+
.hsk-markdown-img,
|
|
3499
|
+
.hsk-cb-user-img-thumb,
|
|
3500
|
+
.hsk-cb-source .hsk-cb-src-imgwrap img {
|
|
3501
|
+
cursor: zoom-in;
|
|
3502
|
+
}
|
|
3503
|
+
.hsk-lightbox {
|
|
3504
|
+
position: fixed;
|
|
3505
|
+
inset: 0;
|
|
3506
|
+
z-index: 999999;
|
|
3507
|
+
background: rgba(0, 0, 0, 0.85);
|
|
3508
|
+
display: flex;
|
|
3509
|
+
align-items: center;
|
|
3510
|
+
justify-content: center;
|
|
3511
|
+
padding: 24px;
|
|
3512
|
+
animation: hsk-lightbox-in .15s ease-out both;
|
|
3513
|
+
cursor: zoom-out;
|
|
3514
|
+
}
|
|
3515
|
+
@keyframes hsk-lightbox-in {
|
|
3516
|
+
from {
|
|
3517
|
+
opacity: 0;
|
|
3518
|
+
}
|
|
3519
|
+
to {
|
|
3520
|
+
opacity: 1;
|
|
3521
|
+
}
|
|
3522
|
+
}
|
|
3523
|
+
.hsk-lightbox-img {
|
|
3524
|
+
max-width: 100%;
|
|
3525
|
+
max-height: 100%;
|
|
3526
|
+
width: auto;
|
|
3527
|
+
height: auto;
|
|
3528
|
+
object-fit: contain;
|
|
3529
|
+
border-radius: 4px;
|
|
3530
|
+
cursor: default;
|
|
3531
|
+
}
|
|
3532
|
+
.hsk-lightbox-close {
|
|
3533
|
+
position: absolute;
|
|
3534
|
+
top: 16px;
|
|
3535
|
+
right: 16px;
|
|
3536
|
+
width: 36px;
|
|
3537
|
+
height: 36px;
|
|
3538
|
+
border-radius: 50%;
|
|
3539
|
+
border: none;
|
|
3540
|
+
background: rgba(255, 255, 255, 0.15);
|
|
3541
|
+
color: #fff;
|
|
3542
|
+
display: flex;
|
|
3543
|
+
align-items: center;
|
|
3544
|
+
justify-content: center;
|
|
3545
|
+
cursor: pointer;
|
|
3546
|
+
transition: background .15s;
|
|
3547
|
+
}
|
|
3548
|
+
.hsk-lightbox-close:hover {
|
|
3549
|
+
background: rgba(255, 255, 255, 0.28);
|
|
3550
|
+
}
|
|
3491
3551
|
/*# sourceMappingURL=styles.css.map */
|