@akropolys/kiku 1.7.11 → 1.7.12
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 +512 -503
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +512 -503
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +8 -6
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
.hsk-chat-reset,
|
|
16
16
|
.hsk-close-btn,
|
|
17
17
|
.hsk-cb-overlay {
|
|
18
|
+
--hsk-font-size: 14.5px;
|
|
18
19
|
touch-action: manipulation;
|
|
19
20
|
-webkit-tap-highlight-color: transparent;
|
|
20
21
|
}
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
--hsk-text: var(--chat-text-color, #1f1f1f);
|
|
29
30
|
--hsk-primary: var(--chat-primary-color, #ff6a33);
|
|
30
31
|
--hsk-font: var(--chat-font-family, inherit);
|
|
32
|
+
--hsk-font-size: 13px;
|
|
31
33
|
display: flex;
|
|
32
34
|
flex-direction: column;
|
|
33
35
|
height: 100%;
|
|
@@ -155,7 +157,7 @@
|
|
|
155
157
|
max-width: 78%;
|
|
156
158
|
padding: 10px 14px;
|
|
157
159
|
border-radius: var(--hsk-border-radius, 0px);
|
|
158
|
-
font-size: 13px;
|
|
160
|
+
font-size: var(--hsk-font-size, 13px);
|
|
159
161
|
line-height: 1.6;
|
|
160
162
|
}
|
|
161
163
|
.hsk-msg-bubble.ai {
|
|
@@ -485,7 +487,7 @@
|
|
|
485
487
|
display: flex;
|
|
486
488
|
flex-direction: column;
|
|
487
489
|
animation: hsk-overlay-in .2s ease-out both;
|
|
488
|
-
background: #ffffff !important;
|
|
490
|
+
background: var(--hsk-chat-bg, #ffffff) !important;
|
|
489
491
|
}
|
|
490
492
|
@keyframes hsk-overlay-in {
|
|
491
493
|
from {
|
|
@@ -767,7 +769,7 @@
|
|
|
767
769
|
color: #fff;
|
|
768
770
|
padding: 10px 16px;
|
|
769
771
|
border-radius: var(--hsk-border-radius, 0px);
|
|
770
|
-
font-size: 14.5px;
|
|
772
|
+
font-size: var(--hsk-font-size, 14.5px);
|
|
771
773
|
line-height: 1.55;
|
|
772
774
|
max-width: 72%;
|
|
773
775
|
font-weight: 500;
|
|
@@ -796,7 +798,7 @@
|
|
|
796
798
|
min-width: 0;
|
|
797
799
|
}
|
|
798
800
|
.hsk-cb-ai-text {
|
|
799
|
-
font-size: 14.5px;
|
|
801
|
+
font-size: var(--hsk-font-size, 14.5px);
|
|
800
802
|
line-height: 1.65;
|
|
801
803
|
color: var(--hsk-chat-text, #111);
|
|
802
804
|
white-space: pre-wrap;
|
|
@@ -1534,7 +1536,7 @@
|
|
|
1534
1536
|
--hsk-chat-input-bg: rgba(255,255,255,.05);
|
|
1535
1537
|
--hsk-chat-source-bg: rgba(255,255,255,.04);
|
|
1536
1538
|
--hsk-fade-bg: #0a0a0a;
|
|
1537
|
-
background: #000000 !important;
|
|
1539
|
+
background: var(--hsk-chat-bg, #000000) !important;
|
|
1538
1540
|
}
|
|
1539
1541
|
.hsk-cb-topbar-title {
|
|
1540
1542
|
color: #f0efed;
|
|
@@ -1628,7 +1630,7 @@
|
|
|
1628
1630
|
--hsk-chat-input-bg: #f1f3f4;
|
|
1629
1631
|
--hsk-chat-source-bg: #f8f9fa;
|
|
1630
1632
|
--hsk-fade-bg: #ffffff;
|
|
1631
|
-
background: #ffffff !important;
|
|
1633
|
+
background: var(--hsk-chat-bg, #ffffff) !important;
|
|
1632
1634
|
}
|
|
1633
1635
|
}
|
|
1634
1636
|
.hsk-sb-wrap {
|