@realtimexsco/live-chat 1.4.15 → 1.4.16
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.cjs +58 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +58 -21
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +9 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -464,6 +464,12 @@
|
|
|
464
464
|
backdrop-filter: blur(10px);
|
|
465
465
|
}
|
|
466
466
|
|
|
467
|
+
.chat-date-divider-pill > span {
|
|
468
|
+
display: inline-flex;
|
|
469
|
+
align-items: center;
|
|
470
|
+
line-height: 1;
|
|
471
|
+
}
|
|
472
|
+
|
|
467
473
|
.chat-date-divider-pill--interactive {
|
|
468
474
|
cursor: pointer;
|
|
469
475
|
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
|
|
@@ -482,11 +488,13 @@
|
|
|
482
488
|
opacity: 0.8;
|
|
483
489
|
flex-shrink: 0;
|
|
484
490
|
display: block;
|
|
491
|
+
/* Optical vertical center — Lucide chevron sits slightly high */
|
|
492
|
+
transform: translateY(1px);
|
|
485
493
|
transition: transform 0.15s ease;
|
|
486
494
|
}
|
|
487
495
|
|
|
488
496
|
.chat-date-divider-pill--interactive[data-state="open"] .chat-date-divider-chevron {
|
|
489
|
-
transform: rotate(180deg);
|
|
497
|
+
transform: translateY(1px) rotate(180deg);
|
|
490
498
|
}
|
|
491
499
|
|
|
492
500
|
/* shadcn calendar inside chat popover */
|