floating-copilot-widget 1.4.1 → 1.4.3
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/FloatingCopilot.css +13 -10
- package/package.json +1 -1
package/dist/FloatingCopilot.css
CHANGED
|
@@ -247,9 +247,12 @@
|
|
|
247
247
|
.copilot-message-user .copilot-message-content {
|
|
248
248
|
background: linear-gradient(135deg, var(--primary-color, #6366f1) 0%,
|
|
249
249
|
rgba(var(--primary-color, 99, 102, 241), 0.9) 100%);
|
|
250
|
-
color:
|
|
250
|
+
color: #FFFFFF;
|
|
251
251
|
border-radius: 16px 4px 16px 16px;
|
|
252
252
|
box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
|
|
253
|
+
font-weight: 700;
|
|
254
|
+
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
255
|
+
letter-spacing: 0.2px;
|
|
253
256
|
}
|
|
254
257
|
|
|
255
258
|
.copilot-message-bot .copilot-message-content {
|
|
@@ -302,30 +305,30 @@
|
|
|
302
305
|
}
|
|
303
306
|
|
|
304
307
|
.copilot-send-btn {
|
|
305
|
-
padding:
|
|
306
|
-
background: linear-gradient(135deg, #6366f1 0%, #
|
|
307
|
-
color:
|
|
308
|
+
padding: 12px 18px;
|
|
309
|
+
background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
|
|
310
|
+
color: #FFFFFF;
|
|
308
311
|
border: none;
|
|
309
312
|
border-radius: 10px;
|
|
310
313
|
cursor: pointer;
|
|
311
|
-
font-weight:
|
|
312
|
-
font-size:
|
|
314
|
+
font-weight: 900;
|
|
315
|
+
font-size: 24px;
|
|
313
316
|
transition: var(--transition-smooth);
|
|
314
317
|
box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
|
|
315
318
|
letter-spacing: 0.3px;
|
|
316
|
-
min-width:
|
|
319
|
+
min-width: 54px;
|
|
317
320
|
flex-shrink: 0;
|
|
318
321
|
display: flex;
|
|
319
322
|
align-items: center;
|
|
320
323
|
justify-content: center;
|
|
321
324
|
line-height: 1;
|
|
325
|
+
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
322
326
|
}
|
|
323
327
|
|
|
324
328
|
.copilot-send-btn:hover {
|
|
325
|
-
background: linear-gradient(135deg,
|
|
326
|
-
rgba(var(--primary-color, 99, 102, 241), 0.7) 100%);
|
|
329
|
+
background: linear-gradient(135deg, #5558e3 0%, #4338ca 100%);
|
|
327
330
|
transform: translateY(-2px);
|
|
328
|
-
box-shadow: 0 6px 16px rgba(99, 102, 241, 0.
|
|
331
|
+
box-shadow: 0 6px 16px rgba(99, 102, 241, 0.5);
|
|
329
332
|
}
|
|
330
333
|
|
|
331
334
|
.copilot-send-btn:active {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "floating-copilot-widget",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "A highly configurable floating chat widget plugin for React websites. Draggable, resizable, themeable, and production-ready.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|