floating-copilot-widget 1.4.1 → 1.4.2

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.
@@ -247,9 +247,11 @@
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: white;
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: 600;
254
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
253
255
  }
254
256
 
255
257
  .copilot-message-bot .copilot-message-content {
@@ -302,30 +304,30 @@
302
304
  }
303
305
 
304
306
  .copilot-send-btn {
305
- padding: 11px 16px;
306
- background: linear-gradient(135deg, #6366f1 0%, #5b5fff 100%);
307
+ padding: 12px 18px;
308
+ background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
307
309
  color: white;
308
310
  border: none;
309
311
  border-radius: 10px;
310
312
  cursor: pointer;
311
- font-weight: 800;
312
- font-size: 20px;
313
+ font-weight: 900;
314
+ font-size: 22px;
313
315
  transition: var(--transition-smooth);
314
316
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
315
317
  letter-spacing: 0.3px;
316
- min-width: 50px;
318
+ min-width: 54px;
317
319
  flex-shrink: 0;
318
320
  display: flex;
319
321
  align-items: center;
320
322
  justify-content: center;
321
323
  line-height: 1;
324
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
322
325
  }
323
326
 
324
327
  .copilot-send-btn:hover {
325
- background: linear-gradient(135deg, var(--primary-color, #6366f1) 0%,
326
- rgba(var(--primary-color, 99, 102, 241), 0.7) 100%);
328
+ background: linear-gradient(135deg, #5558e3 0%, #4338ca 100%);
327
329
  transform: translateY(-2px);
328
- box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
330
+ box-shadow: 0 6px 16px rgba(99, 102, 241, 0.5);
329
331
  }
330
332
 
331
333
  .copilot-send-btn:active {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "floating-copilot-widget",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
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",