@dialpad/dialtone-vue 2.142.1 → 2.143.0

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.
Files changed (49) hide show
  1. package/dist/dialtone-vue.cjs +2 -0
  2. package/dist/dialtone-vue.cjs.map +1 -1
  3. package/dist/dialtone-vue.js +2 -0
  4. package/dist/dialtone-vue.js.map +1 -1
  5. package/dist/lib/combobox-multi-select.cjs +12 -6
  6. package/dist/lib/combobox-multi-select.cjs.map +1 -1
  7. package/dist/lib/combobox-multi-select.js +12 -6
  8. package/dist/lib/combobox-multi-select.js.map +1 -1
  9. package/dist/lib/emoji-picker.cjs +4 -0
  10. package/dist/lib/emoji-picker.cjs.map +1 -1
  11. package/dist/lib/emoji-picker.js +4 -0
  12. package/dist/lib/emoji-picker.js.map +1 -1
  13. package/dist/lib/input.cjs +8 -12
  14. package/dist/lib/input.cjs.map +1 -1
  15. package/dist/lib/input.js +8 -12
  16. package/dist/lib/input.js.map +1 -1
  17. package/dist/lib/message-input.cjs +1 -19
  18. package/dist/lib/message-input.cjs.map +1 -1
  19. package/dist/lib/message-input.js +1 -19
  20. package/dist/lib/message-input.js.map +1 -1
  21. package/dist/lib/rich-text-editor.cjs +153 -57
  22. package/dist/lib/rich-text-editor.cjs.map +1 -1
  23. package/dist/lib/rich-text-editor.js +153 -57
  24. package/dist/lib/rich-text-editor.js.map +1 -1
  25. package/dist/lib/scrollbar-directive.cjs +2402 -0
  26. package/dist/lib/scrollbar-directive.cjs.map +1 -0
  27. package/dist/lib/scrollbar-directive.js +2402 -0
  28. package/dist/lib/scrollbar-directive.js.map +1 -0
  29. package/dist/style.css +771 -125
  30. package/dist/types/components/input/input_constants.d.ts +3 -15
  31. package/dist/types/components/rich_text_editor/extensions/channels/suggestion.d.ts.map +1 -1
  32. package/dist/types/components/rich_text_editor/extensions/emoji/suggestion.d.ts.map +1 -1
  33. package/dist/types/components/rich_text_editor/extensions/mentions/suggestion.d.ts.map +1 -1
  34. package/dist/types/components/rich_text_editor/extensions/slash_command/suggestion.d.ts.map +1 -1
  35. package/dist/types/components/rich_text_editor/extensions/suggestion/SuggestionList.vue.d.ts +1 -1
  36. package/dist/types/components/rich_text_editor/extensions/tippy_plugins/hide_on_esc.d.ts +12 -0
  37. package/dist/types/components/rich_text_editor/extensions/tippy_plugins/hide_on_esc.d.ts.map +1 -0
  38. package/dist/types/components/rich_text_editor/rich_text_editor.vue.d.ts +1 -1
  39. package/dist/types/components/rich_text_editor/rich_text_editor.vue.d.ts.map +1 -1
  40. package/dist/types/directives/scrollbar/index.d.ts +2 -0
  41. package/dist/types/directives/scrollbar/index.d.ts.map +1 -0
  42. package/dist/types/directives/scrollbar/scrollbar.d.ts +6 -0
  43. package/dist/types/directives/scrollbar/scrollbar.d.ts.map +1 -0
  44. package/dist/types/index.d.ts +1 -0
  45. package/dist/types/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.d.ts +1 -0
  46. package/dist/types/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.d.ts.map +1 -1
  47. package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts +0 -3
  48. package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts.map +1 -1
  49. package/package.json +4 -3
package/dist/style.css CHANGED
@@ -120,10 +120,12 @@
120
120
  transform: scale(0.98);
121
121
  }
122
122
 
123
+ .dt-suggestion-list__container {
124
+ max-height: var(--dt-size-875);
125
+ }
123
126
  .dt-suggestion-list {
124
127
  position: relative;
125
128
  padding: var(--dt-size-300);
126
- max-height: var(--dt-size-875) !important;
127
129
  min-width: var(--dt-size-925);
128
130
  max-width: var(--dt-size-975);
129
131
  }
@@ -224,7 +226,650 @@
224
226
  overflow: hidden;
225
227
  transition: height var(--td300) var(--ttf-out-quint);
226
228
  }
227
- .dt-top-banner-info {
229
+ /*!
230
+ * OverlayScrollbars
231
+ * Version: 2.9.1
232
+ *
233
+ * Copyright (c) Rene Haas | KingSora.
234
+ * https://github.com/KingSora
235
+ *
236
+ * Released under the MIT license.
237
+ */
238
+ .os-size-observer,
239
+ .os-size-observer-listener {
240
+ scroll-behavior: auto !important;
241
+ direction: inherit;
242
+ pointer-events: none;
243
+ overflow: hidden;
244
+ visibility: hidden;
245
+ box-sizing: border-box;
246
+ }
247
+
248
+ .os-size-observer,
249
+ .os-size-observer-listener,
250
+ .os-size-observer-listener-item,
251
+ .os-size-observer-listener-item-final {
252
+ writing-mode: horizontal-tb;
253
+ position: absolute;
254
+ left: 0;
255
+ top: 0;
256
+ }
257
+
258
+ .os-size-observer {
259
+ z-index: -1;
260
+ contain: strict;
261
+ display: flex;
262
+ flex-direction: row;
263
+ flex-wrap: nowrap;
264
+ padding: inherit;
265
+ border: inherit;
266
+ box-sizing: inherit;
267
+ margin: -133px;
268
+ top: 0;
269
+ right: 0;
270
+ bottom: 0;
271
+ left: 0;
272
+ transform: scale(0.1);
273
+ }
274
+ .os-size-observer::before {
275
+ content: "";
276
+ flex: none;
277
+ box-sizing: inherit;
278
+ padding: 10px;
279
+ width: 10px;
280
+ height: 10px;
281
+ }
282
+
283
+ .os-size-observer-appear {
284
+ animation: os-size-observer-appear-animation 1ms forwards;
285
+ }
286
+
287
+ .os-size-observer-listener {
288
+ box-sizing: border-box;
289
+ position: relative;
290
+ flex: auto;
291
+ padding: inherit;
292
+ border: inherit;
293
+ margin: -133px;
294
+ transform: scale(calc(1 / 0.1));
295
+ }
296
+ .os-size-observer-listener.ltr {
297
+ margin-right: -266px;
298
+ margin-left: 0;
299
+ }
300
+ .os-size-observer-listener.rtl {
301
+ margin-left: -266px;
302
+ margin-right: 0;
303
+ }
304
+ .os-size-observer-listener:empty::before {
305
+ content: "";
306
+ width: 100%;
307
+ height: 100%;
308
+ }
309
+ .os-size-observer-listener:empty::before, .os-size-observer-listener > .os-size-observer-listener-item {
310
+ display: block;
311
+ position: relative;
312
+ padding: inherit;
313
+ border: inherit;
314
+ box-sizing: content-box;
315
+ flex: auto;
316
+ }
317
+
318
+ .os-size-observer-listener-scroll {
319
+ box-sizing: border-box;
320
+ display: flex;
321
+ }
322
+
323
+ .os-size-observer-listener-item {
324
+ right: 0;
325
+ bottom: 0;
326
+ overflow: hidden;
327
+ direction: ltr;
328
+ flex: none;
329
+ }
330
+
331
+ .os-size-observer-listener-item-final {
332
+ transition: none;
333
+ }
334
+
335
+ @keyframes os-size-observer-appear-animation {
336
+ from {
337
+ cursor: auto;
338
+ }
339
+ to {
340
+ cursor: none;
341
+ }
342
+ }
343
+ .os-trinsic-observer {
344
+ flex: none;
345
+ box-sizing: border-box;
346
+ position: relative;
347
+ max-width: 0px;
348
+ max-height: 1px;
349
+ padding: 0;
350
+ margin: 0;
351
+ border: none;
352
+ overflow: hidden;
353
+ z-index: -1;
354
+ height: 0;
355
+ top: calc(100% + 1px);
356
+ contain: strict;
357
+ }
358
+ .os-trinsic-observer:not(:empty) {
359
+ height: calc(100% + 1px);
360
+ top: -1px;
361
+ }
362
+ .os-trinsic-observer:not(:empty) > .os-size-observer {
363
+ width: 1000%;
364
+ height: 1000%;
365
+ min-height: 1px;
366
+ min-width: 1px;
367
+ }
368
+
369
+ /**
370
+ * hide native scrollbars
371
+ * changes to this styles need to be reflected in the environment styles to correctly detect scrollbar hiding
372
+ */
373
+ [data-overlayscrollbars-initialize],
374
+ [data-overlayscrollbars-viewport~=scrollbarHidden] {
375
+ scrollbar-width: none !important;
376
+ }
377
+
378
+ [data-overlayscrollbars-initialize]::-webkit-scrollbar,
379
+ [data-overlayscrollbars-initialize]::-webkit-scrollbar-corner,
380
+ [data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar,
381
+ [data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar-corner {
382
+ -webkit-appearance: none !important;
383
+ appearance: none !important;
384
+ display: none !important;
385
+ width: 0 !important;
386
+ height: 0 !important;
387
+ }
388
+
389
+ /**
390
+ * elements wont suddenly clip after initialization is done
391
+ */
392
+ [data-overlayscrollbars-initialize]:not([data-overlayscrollbars]):not(html):not(body) {
393
+ overflow: auto;
394
+ }
395
+
396
+ /**
397
+ * applied to body
398
+ */
399
+ html[data-overlayscrollbars-body] {
400
+ overflow: hidden;
401
+ }
402
+
403
+ html[data-overlayscrollbars-body],
404
+ html[data-overlayscrollbars-body] > body {
405
+ width: 100%;
406
+ height: 100%;
407
+ margin: 0;
408
+ }
409
+
410
+ html[data-overlayscrollbars-body] > body {
411
+ overflow: visible;
412
+ margin: 0;
413
+ }
414
+
415
+ /**
416
+ * structure setup
417
+ */
418
+ [data-overlayscrollbars] {
419
+ position: relative;
420
+ }
421
+
422
+ [data-overlayscrollbars~=host],
423
+ [data-overlayscrollbars-padding] {
424
+ display: flex;
425
+ align-items: stretch !important;
426
+ flex-direction: row !important;
427
+ flex-wrap: nowrap !important;
428
+ scroll-behavior: auto !important;
429
+ }
430
+
431
+ [data-overlayscrollbars-padding],
432
+ [data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
433
+ box-sizing: inherit;
434
+ position: relative;
435
+ flex: auto !important;
436
+ height: auto;
437
+ width: 100%;
438
+ min-width: 0;
439
+ padding: 0;
440
+ margin: 0;
441
+ border: none;
442
+ z-index: 0;
443
+ }
444
+
445
+ [data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
446
+ --os-vaw: 0;
447
+ --os-vah: 0;
448
+ outline: none;
449
+ }
450
+ [data-overlayscrollbars-viewport]:not([data-overlayscrollbars]):focus {
451
+ outline: none;
452
+ }
453
+ [data-overlayscrollbars-viewport][data-overlayscrollbars-viewport~=arrange]::before {
454
+ content: "";
455
+ position: absolute;
456
+ pointer-events: none;
457
+ z-index: -1;
458
+ min-width: 1px;
459
+ min-height: 1px;
460
+ width: var(--os-vaw);
461
+ height: var(--os-vah);
462
+ }
463
+
464
+ [data-overlayscrollbars],
465
+ [data-overlayscrollbars-padding],
466
+ [data-overlayscrollbars-viewport] {
467
+ overflow: hidden !important;
468
+ }
469
+
470
+ [data-overlayscrollbars~=noClipping],
471
+ [data-overlayscrollbars-padding~=noClipping] {
472
+ overflow: visible !important;
473
+ }
474
+
475
+ [data-overlayscrollbars-viewport~=measuring] {
476
+ overflow: hidden !important;
477
+ scroll-behavior: auto !important;
478
+ scroll-snap-type: none !important;
479
+ }
480
+
481
+ [data-overlayscrollbars-viewport~=overflowXVisible]:not([data-overlayscrollbars-viewport~=measuring]) {
482
+ overflow-x: visible !important;
483
+ }
484
+
485
+ [data-overlayscrollbars-viewport~=overflowXHidden] {
486
+ overflow-x: hidden !important;
487
+ }
488
+
489
+ [data-overlayscrollbars-viewport~=overflowXScroll] {
490
+ overflow-x: scroll !important;
491
+ }
492
+
493
+ [data-overlayscrollbars-viewport~=overflowYVisible]:not([data-overlayscrollbars-viewport~=measuring]) {
494
+ overflow-y: visible !important;
495
+ }
496
+
497
+ [data-overlayscrollbars-viewport~=overflowYHidden] {
498
+ overflow-y: hidden !important;
499
+ }
500
+
501
+ [data-overlayscrollbars-viewport~=overflowYScroll] {
502
+ overflow-y: scroll !important;
503
+ }
504
+
505
+ [data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) {
506
+ font-size: 0 !important;
507
+ line-height: 0 !important;
508
+ }
509
+
510
+ [data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::before,
511
+ [data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::after,
512
+ [data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) > * {
513
+ display: none !important;
514
+ position: absolute !important;
515
+ width: 1px !important;
516
+ height: 1px !important;
517
+ padding: 0 !important;
518
+ margin: -1px !important;
519
+ overflow: hidden !important;
520
+ clip: rect(0, 0, 0, 0) !important;
521
+ white-space: nowrap !important;
522
+ border-width: 0 !important;
523
+ }
524
+
525
+ [data-overlayscrollbars-viewport~=scrolling] {
526
+ scroll-behavior: auto !important;
527
+ scroll-snap-type: none !important;
528
+ }
529
+
530
+ [data-overlayscrollbars-content] {
531
+ box-sizing: inherit;
532
+ }
533
+
534
+ /**
535
+ * Display contents to bridge any flickering during deferred initialization.
536
+ */
537
+ [data-overlayscrollbars-contents]:not(#osFakeId):not([data-overlayscrollbars-padding]):not([data-overlayscrollbars-viewport]):not([data-overlayscrollbars-content]) {
538
+ display: contents;
539
+ }
540
+
541
+ /**
542
+ * optional & experimental grid mode
543
+ */
544
+ [data-overlayscrollbars-grid],
545
+ [data-overlayscrollbars-grid] [data-overlayscrollbars-padding] {
546
+ display: grid;
547
+ grid-template: 1fr/1fr;
548
+ }
549
+
550
+ [data-overlayscrollbars-grid] > [data-overlayscrollbars-padding],
551
+ [data-overlayscrollbars-grid] > [data-overlayscrollbars-viewport],
552
+ [data-overlayscrollbars-grid] > [data-overlayscrollbars-padding] > [data-overlayscrollbars-viewport] {
553
+ height: auto !important;
554
+ width: auto !important;
555
+ }
556
+
557
+ @property --os-scroll-percent {
558
+ syntax: "<number>";
559
+ inherits: true;
560
+ initial-value: 0;
561
+ }
562
+ @property --os-viewport-percent {
563
+ syntax: "<number>";
564
+ inherits: true;
565
+ initial-value: 0;
566
+ }
567
+ .os-scrollbar {
568
+ --os-viewport-percent: 0;
569
+ --os-scroll-percent: 0;
570
+ --os-scroll-direction: 0;
571
+ --os-scroll-percent-directional: calc(
572
+ var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) *
573
+ var(--os-scroll-direction)
574
+ );
575
+ }
576
+
577
+ .os-scrollbar {
578
+ contain: size layout;
579
+ contain: size layout style;
580
+ transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
581
+ pointer-events: none;
582
+ position: absolute;
583
+ opacity: 0;
584
+ visibility: hidden;
585
+ }
586
+
587
+ body > .os-scrollbar {
588
+ position: fixed;
589
+ z-index: 99999;
590
+ }
591
+
592
+ .os-scrollbar-transitionless {
593
+ transition: none !important;
594
+ }
595
+
596
+ .os-scrollbar-track {
597
+ position: relative;
598
+ padding: 0 !important;
599
+ border: none !important;
600
+ }
601
+
602
+ .os-scrollbar-handle {
603
+ position: absolute;
604
+ }
605
+
606
+ .os-scrollbar-track,
607
+ .os-scrollbar-handle {
608
+ pointer-events: none;
609
+ width: 100%;
610
+ height: 100%;
611
+ }
612
+
613
+ .os-scrollbar.os-scrollbar-track-interactive .os-scrollbar-track,
614
+ .os-scrollbar.os-scrollbar-handle-interactive .os-scrollbar-handle {
615
+ pointer-events: auto;
616
+ touch-action: none;
617
+ }
618
+
619
+ .os-scrollbar-horizontal {
620
+ bottom: 0;
621
+ left: 0;
622
+ }
623
+
624
+ .os-scrollbar-vertical {
625
+ top: 0;
626
+ right: 0;
627
+ }
628
+
629
+ .os-scrollbar-rtl.os-scrollbar-horizontal {
630
+ right: 0;
631
+ }
632
+
633
+ .os-scrollbar-rtl.os-scrollbar-vertical {
634
+ right: auto;
635
+ left: 0;
636
+ }
637
+
638
+ .os-scrollbar-visible {
639
+ opacity: 1;
640
+ visibility: visible;
641
+ }
642
+
643
+ .os-scrollbar-auto-hide.os-scrollbar-auto-hide-hidden {
644
+ opacity: 0;
645
+ visibility: hidden;
646
+ }
647
+
648
+ .os-scrollbar-interaction.os-scrollbar-visible {
649
+ opacity: 1;
650
+ visibility: visible;
651
+ }
652
+
653
+ .os-scrollbar-unusable,
654
+ .os-scrollbar-unusable *,
655
+ .os-scrollbar-wheel,
656
+ .os-scrollbar-wheel * {
657
+ pointer-events: none !important;
658
+ }
659
+
660
+ .os-scrollbar-unusable .os-scrollbar-handle {
661
+ opacity: 0 !important;
662
+ transition: none !important;
663
+ }
664
+
665
+ .os-scrollbar-horizontal .os-scrollbar-handle {
666
+ bottom: 0;
667
+ left: calc(var(--os-scroll-percent-directional) * 100%);
668
+ transform: translateX(calc(var(--os-scroll-percent-directional) * -100%));
669
+ width: calc(var(--os-viewport-percent) * 100%);
670
+ }
671
+
672
+ .os-scrollbar-vertical .os-scrollbar-handle {
673
+ right: 0;
674
+ top: calc(var(--os-scroll-percent-directional) * 100%);
675
+ transform: translateY(calc(var(--os-scroll-percent-directional) * -100%));
676
+ height: calc(var(--os-viewport-percent) * 100%);
677
+ }
678
+
679
+ @supports (container-type: size) {
680
+ .os-scrollbar-track {
681
+ container-type: size;
682
+ }
683
+ .os-scrollbar-horizontal .os-scrollbar-handle {
684
+ left: auto;
685
+ transform: translateX(calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
686
+ }
687
+ .os-scrollbar-vertical .os-scrollbar-handle {
688
+ top: auto;
689
+ transform: translateY(calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
690
+ }
691
+ .os-scrollbar-rtl.os-scrollbar-horizontal .os-scrollbar-handle {
692
+ right: auto;
693
+ left: 0;
694
+ }
695
+ }
696
+ .os-scrollbar-rtl.os-scrollbar-vertical .os-scrollbar-handle {
697
+ right: auto;
698
+ left: 0;
699
+ }
700
+
701
+ .os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless,
702
+ .os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless.os-scrollbar-rtl {
703
+ left: 0;
704
+ right: 0;
705
+ }
706
+
707
+ .os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless,
708
+ .os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless.os-scrollbar-rtl {
709
+ top: 0;
710
+ bottom: 0;
711
+ }
712
+
713
+ @media print {
714
+ .os-scrollbar {
715
+ display: none;
716
+ }
717
+ }
718
+ .os-scrollbar {
719
+ --os-size: 0;
720
+ --os-padding-perpendicular: 0;
721
+ --os-padding-axis: 0;
722
+ --os-track-border-radius: 0;
723
+ --os-track-bg: none;
724
+ --os-track-bg-hover: none;
725
+ --os-track-bg-active: none;
726
+ --os-track-border: none;
727
+ --os-track-border-hover: none;
728
+ --os-track-border-active: none;
729
+ --os-handle-border-radius: 0;
730
+ --os-handle-bg: none;
731
+ --os-handle-bg-hover: none;
732
+ --os-handle-bg-active: none;
733
+ --os-handle-border: none;
734
+ --os-handle-border-hover: none;
735
+ --os-handle-border-active: none;
736
+ --os-handle-min-size: 33px;
737
+ --os-handle-max-size: none;
738
+ --os-handle-perpendicular-size: 100%;
739
+ --os-handle-perpendicular-size-hover: 100%;
740
+ --os-handle-perpendicular-size-active: 100%;
741
+ --os-handle-interactive-area-offset: 0;
742
+ }
743
+
744
+ .os-scrollbar-track {
745
+ border: var(--os-track-border);
746
+ border-radius: var(--os-track-border-radius);
747
+ background: var(--os-track-bg);
748
+ transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
749
+ }
750
+ .os-scrollbar-track:hover {
751
+ border: var(--os-track-border-hover);
752
+ background: var(--os-track-bg-hover);
753
+ }
754
+ .os-scrollbar-track:active {
755
+ border: var(--os-track-border-active);
756
+ background: var(--os-track-bg-active);
757
+ }
758
+
759
+ .os-scrollbar-handle {
760
+ border: var(--os-handle-border);
761
+ border-radius: var(--os-handle-border-radius);
762
+ background: var(--os-handle-bg);
763
+ }
764
+ .os-scrollbar-handle:hover {
765
+ border: var(--os-handle-border-hover);
766
+ background: var(--os-handle-bg-hover);
767
+ }
768
+ .os-scrollbar-handle:active {
769
+ border: var(--os-handle-border-active);
770
+ background: var(--os-handle-bg-active);
771
+ }
772
+
773
+ .os-scrollbar-track:before,
774
+ .os-scrollbar-handle:before {
775
+ content: "";
776
+ position: absolute;
777
+ left: 0;
778
+ right: 0;
779
+ top: 0;
780
+ bottom: 0;
781
+ display: block;
782
+ }
783
+
784
+ .os-scrollbar-horizontal {
785
+ padding: var(--os-padding-perpendicular) var(--os-padding-axis);
786
+ right: var(--os-size);
787
+ height: var(--os-size);
788
+ }
789
+ .os-scrollbar-horizontal.os-scrollbar-rtl {
790
+ left: var(--os-size);
791
+ right: 0;
792
+ }
793
+ .os-scrollbar-horizontal .os-scrollbar-track:before {
794
+ top: calc(var(--os-padding-perpendicular) * -1);
795
+ bottom: calc(var(--os-padding-perpendicular) * -1);
796
+ }
797
+ .os-scrollbar-horizontal .os-scrollbar-handle {
798
+ min-width: var(--os-handle-min-size);
799
+ max-width: var(--os-handle-max-size);
800
+ height: var(--os-handle-perpendicular-size);
801
+ transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
802
+ }
803
+ .os-scrollbar-horizontal .os-scrollbar-handle:before {
804
+ top: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
805
+ bottom: calc(var(--os-padding-perpendicular) * -1);
806
+ }
807
+ .os-scrollbar-horizontal:hover .os-scrollbar-handle {
808
+ height: var(--os-handle-perpendicular-size-hover);
809
+ }
810
+ .os-scrollbar-horizontal:active .os-scrollbar-handle {
811
+ height: var(--os-handle-perpendicular-size-active);
812
+ }
813
+
814
+ .os-scrollbar-vertical {
815
+ padding: var(--os-padding-axis) var(--os-padding-perpendicular);
816
+ bottom: var(--os-size);
817
+ width: var(--os-size);
818
+ }
819
+ .os-scrollbar-vertical .os-scrollbar-track:before {
820
+ left: calc(var(--os-padding-perpendicular) * -1);
821
+ right: calc(var(--os-padding-perpendicular) * -1);
822
+ }
823
+ .os-scrollbar-vertical .os-scrollbar-handle {
824
+ min-height: var(--os-handle-min-size);
825
+ max-height: var(--os-handle-max-size);
826
+ width: var(--os-handle-perpendicular-size);
827
+ transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
828
+ }
829
+ .os-scrollbar-vertical .os-scrollbar-handle:before {
830
+ left: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
831
+ right: calc(var(--os-padding-perpendicular) * -1);
832
+ }
833
+ .os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle:before {
834
+ right: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
835
+ left: calc(var(--os-padding-perpendicular) * -1);
836
+ }
837
+ .os-scrollbar-vertical:hover .os-scrollbar-handle {
838
+ width: var(--os-handle-perpendicular-size-hover);
839
+ }
840
+ .os-scrollbar-vertical:active .os-scrollbar-handle {
841
+ width: var(--os-handle-perpendicular-size-active);
842
+ }
843
+
844
+ /* NONE THEME: */
845
+ [data-overlayscrollbars-viewport~=measuring] > .os-scrollbar,
846
+ .os-theme-none.os-scrollbar {
847
+ display: none !important;
848
+ }
849
+
850
+ /* DARK & LIGHT THEME: */
851
+ .os-theme-dark,
852
+ .os-theme-light {
853
+ box-sizing: border-box;
854
+ --os-size: 10px;
855
+ --os-padding-perpendicular: 2px;
856
+ --os-padding-axis: 2px;
857
+ --os-track-border-radius: 10px;
858
+ --os-handle-interactive-area-offset: 4px;
859
+ --os-handle-border-radius: 10px;
860
+ }
861
+
862
+ .os-theme-dark {
863
+ --os-handle-bg: rgba(0, 0, 0, 0.44);
864
+ --os-handle-bg-hover: rgba(0, 0, 0, 0.55);
865
+ --os-handle-bg-active: rgba(0, 0, 0, 0.66);
866
+ }
867
+
868
+ .os-theme-light {
869
+ --os-handle-bg: rgba(255, 255, 255, 0.44);
870
+ --os-handle-bg-hover: rgba(255, 255, 255, 0.55);
871
+ --os-handle-bg-active: rgba(255, 255, 255, 0.66);
872
+ }.dt-top-banner-info {
228
873
  font-size: var(--dt-font-size-100);
229
874
  display: flex;
230
875
  justify-content: space-between;
@@ -273,6 +918,7 @@
273
918
  background-color: var(--dt-color-surface-contrast);
274
919
  color: var(--dt-color-foreground-secondary-inverted);
275
920
  }
921
+ /* stylelint-disable selector-pseudo-class-no-unknown */
276
922
  .dt-leftbar-row[data-v-e6da0c41] {
277
923
  --leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);
278
924
  --leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);
@@ -295,14 +941,14 @@
295
941
  --leftbar-row-action-width: var(--dt-size-550);
296
942
  --leftbar-row-action-height: var(--leftbar-row-action-width);
297
943
  position: relative;
298
- opacity: var(--leftbar-row-opacity);
299
944
  display: flex;
300
945
  background-color: var(--dt-theme-sidebar-row-color-background);
301
946
  border-radius: var(--leftbar-row-radius);
947
+ cursor: pointer;
948
+ opacity: var(--leftbar-row-opacity);
949
+ transition-timing-function: var(--ttf-out-quint);
302
950
  transition-duration: var(--td200);
303
951
  transition-property: background-color, border, box-shadow;
304
- transition-timing-function: var(--ttf-out-quint);
305
- cursor: pointer;
306
952
  }
307
953
  .dt-leftbar-row[data-v-e6da0c41]:not(.dt-leftbar-row--no-action):hover,
308
954
  .dt-leftbar-row[data-v-e6da0c41]:not(.dt-leftbar-row--no-action):focus-within {
@@ -341,13 +987,13 @@
341
987
  border-bottom-right-radius: var(--dt-size-radius-0);
342
988
  }
343
989
  .dt-leftbar-row__unread-mention-count-badge[data-v-e6da0c41] {
990
+ background-color: var(--dt-color-purple-500);
344
991
  border-top-left-radius: var(--dt-size-radius-0);
345
992
  border-bottom-left-radius: var(--dt-size-radius-0);
346
- background-color: var(--dt-color-purple-500);
347
993
  }
348
994
  .dt-leftbar-row__unread-mention-only-count-badge[data-v-e6da0c41] {
349
- background-color: var(--dt-color-purple-500);
350
995
  color: var(--dt-color-foreground-primary-inverted);
996
+ background-color: var(--dt-color-purple-500);
351
997
  }
352
998
  .dt-leftbar-row--muted[data-v-e6da0c41] {
353
999
  --leftbar-row-opacity: 60%;
@@ -364,25 +1010,25 @@
364
1010
  }
365
1011
  .dt-leftbar-row__is-typing[data-v-e6da0c41] {
366
1012
  --is-typing-size-shape: var(--dt-size-550);
367
- height: var(--is-typing-size-shape);
368
- width: var(--is-typing-size-shape);
369
1013
  position: absolute;
370
1014
  display: flex;
1015
+ gap: var(--dt-space-200);
371
1016
  align-items: center;
372
1017
  justify-content: center;
373
- gap: 2px;
1018
+ width: var(--is-typing-size-shape);
1019
+ height: var(--is-typing-size-shape);
374
1020
  border-radius: var(--dt-size-radius-pill);
375
1021
  opacity: 0.75;
376
1022
  }
377
1023
  .dt-leftbar-row__is-typing span[data-v-e6da0c41] {
378
- transition: all 500ms ease;
379
- background: var(--dt-color-surface-strong);
380
- height: 4px;
381
- width: 4px;
382
1024
  display: inline-block;
1025
+ width: var(--dt-size-300);
1026
+ height: var(--dt-size-300);
383
1027
  padding: 0;
384
- opacity: 0.3;
1028
+ background: var(--dt-color-surface-strong);
385
1029
  border-radius: var(--dt-size-radius-pill);
1030
+ opacity: 0.3;
1031
+ transition: all 500ms ease;
386
1032
  animation: wave-e6da0c41 1.5s ease infinite;
387
1033
  }
388
1034
  .dt-leftbar-row__is-typing span[data-v-e6da0c41]:nth-child(1) {
@@ -396,20 +1042,20 @@
396
1042
  }
397
1043
  .dt-leftbar-row__primary[data-v-e6da0c41] {
398
1044
  display: flex;
399
- align-items: center;
400
1045
  flex: 1;
1046
+ align-items: center;
401
1047
  width: 100%;
402
- text-align: left;
403
- background-color: var(--leftbar-row-color-background);
1048
+ margin: 0;
1049
+ padding: 0;
404
1050
  color: var(--leftbar-row-color-foreground);
405
- text-decoration: none;
406
- appearance: none;
407
1051
  font-size: inherit;
408
1052
  line-height: inherit;
409
- margin: 0;
1053
+ text-align: left;
1054
+ text-decoration: none;
1055
+ background-color: var(--leftbar-row-color-background);
410
1056
  border: 0;
411
- padding: 0;
412
1057
  border-radius: var(--leftbar-row-radius);
1058
+ appearance: none;
413
1059
  }
414
1060
  .dt-leftbar-row__primary[data-v-e6da0c41]:active {
415
1061
  --leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active);
@@ -418,20 +1064,20 @@
418
1064
  box-shadow: var(--dt-shadow-focus-inset);
419
1065
  }
420
1066
  .dt-leftbar-row__action-button[data-v-e6da0c41] {
421
- opacity: 0;
422
1067
  width: var(--leftbar-row-action-width);
423
1068
  height: var(--leftbar-row-action-height);
1069
+ opacity: 0;
424
1070
  }
425
1071
  .dt-leftbar-row__alpha[data-v-e6da0c41] {
426
- color: var(--leftbar-row-alpha-color-foreground);
427
1072
  display: flex;
428
- box-sizing: border-box;
429
- justify-content: center;
430
1073
  align-items: center;
431
- padding-left: var(--dt-space-400);
432
- padding-right: var(--dt-space-400);
1074
+ justify-content: center;
1075
+ box-sizing: border-box;
433
1076
  width: var(--leftbar-row-alpha-width);
434
1077
  height: var(--leftbar-row-alpha-height);
1078
+ padding-right: var(--dt-space-400);
1079
+ padding-left: var(--dt-space-400);
1080
+ color: var(--leftbar-row-alpha-color-foreground);
435
1081
  border-radius: var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius);
436
1082
  }
437
1083
  .dt-leftbar-row__label[data-v-e6da0c41] {
@@ -440,47 +1086,47 @@
440
1086
  }
441
1087
  .dt-leftbar-row__omega[data-v-e6da0c41] {
442
1088
  position: absolute;
443
- display: flex;
444
- right: var(--leftbar-row-action-position-right);
445
1089
  top: var(--leftbar-row-action-position-bottom);
446
- transform: translateY(calc(var(--leftbar-row-action-position-bottom) * -1));
1090
+ right: var(--leftbar-row-action-position-right);
1091
+ display: flex;
447
1092
  gap: var(--dt-space-300);
448
- justify-content: flex-end;
449
1093
  align-items: center;
1094
+ justify-content: flex-end;
450
1095
  box-sizing: border-box;
451
1096
  border-radius: var(--leftbar-row-radius);
1097
+ transform: translateY(calc(var(--leftbar-row-action-position-bottom) * -1));
452
1098
  }
453
1099
  .dt-leftbar-row__unread-badge[data-v-e6da0c41] {
454
1100
  display: var(--leftbar-row-unread-badge-display);
455
1101
  }
456
1102
  .dt-leftbar-row__active-voice[data-v-e6da0c41] {
457
- color: var(--dt-color-purple-400);
458
1103
  display: inline-flex;
1104
+ color: var(--dt-color-purple-400);
459
1105
  -webkit-animation-name: opacity-pulsate-e6da0c41;
460
- -webkit-animation-duration: 1s;
461
- -webkit-animation-iteration-count: infinite;
462
- -webkit-animation-fill-mode: both;
463
1106
  -moz-animation-name: opacity-pulsate-e6da0c41;
464
- -moz-animation-duration: 1s;
465
- -moz-animation-iteration-count: infinite;
466
- -moz-animation-fill-mode: both;
467
1107
  animation-name: opacity-pulsate-e6da0c41;
1108
+ -webkit-animation-duration: 1s;
1109
+ -moz-animation-duration: 1s;
468
1110
  animation-duration: 1s;
1111
+ -webkit-animation-iteration-count: infinite;
1112
+ -moz-animation-iteration-count: infinite;
469
1113
  animation-iteration-count: infinite;
1114
+ -webkit-animation-fill-mode: both;
1115
+ -moz-animation-fill-mode: both;
470
1116
  animation-fill-mode: both;
471
1117
  }
472
1118
  .dt-leftbar-row__dnd[data-v-e6da0c41] {
473
1119
  padding-top: var(--dt-space-200);
474
1120
  padding-right: var(--dt-space-300);
475
1121
  color: var(--dt-color-foreground-tertiary);
1122
+ font-weight: var(--dt-font-weight-medium);
476
1123
  font-size: var(--dt-font-size-100);
477
1124
  line-height: var(--dt-font-line-height-400);
478
- font-weight: var(--dt-font-weight-medium);
479
1125
  }
480
1126
  .dt-leftbar-row__container--off-duty[data-v-e6da0c41] {
481
- border-radius: var(--dt-size-radius-500);
482
1127
  background-color: var(--dt-badge-color-background-critical);
483
1128
  border: var(--dt-size-100) solid var(--dt-color-border-subtle);
1129
+ border-radius: var(--dt-size-radius-500);
484
1130
  }
485
1131
  .dt-leftbar-row__container--off-duty[data-v-e6da0c41] .dt-leftbar-row__primary {
486
1132
  margin: calc(var(--dt-size-100) * -1);
@@ -498,48 +1144,48 @@
498
1144
  }
499
1145
  .dt-leftbar-row[data-v-e6da0c41] .dt-leftbar-row__description {
500
1146
  display: block;
1147
+ overflow: hidden;
1148
+ color: var(--leftbar-row-description-color-foreground);
501
1149
  font-weight: var(--leftbar-row-description-font-weight);
502
1150
  font-size: var(--leftbar-row-description-font-size);
503
1151
  line-height: var(--leftbar-row-description-line-height);
504
- color: var(--leftbar-row-description-color-foreground);
505
- overflow: hidden;
506
- text-overflow: ellipsis;
507
1152
  white-space: nowrap;
1153
+ text-overflow: ellipsis;
508
1154
  }
509
1155
  .dt-leftbar-row[data-v-e6da0c41] .dt-leftbar-row__status {
510
1156
  display: block;
1157
+ padding-bottom: var(--dt-space-100);
1158
+ overflow: hidden;
511
1159
  color: var(--leftbar-row-status-color-foreground);
512
1160
  font-size: var(--leftbar-row-status-font-size);
513
1161
  line-height: var(--leftbar-row-status-line-height);
514
- padding-bottom: var(--dt-space-100);
515
- overflow: hidden;
516
- text-overflow: ellipsis;
517
1162
  white-space: nowrap;
1163
+ text-overflow: ellipsis;
518
1164
  }
519
- .dt-leftbar-row[data-v-e6da0c41] .dt-leftbar-row__meta-context ~ .dt-leftbar-row__meta-custom:not(:empty):before {
520
- content: ' • ';
1165
+ .dt-leftbar-row[data-v-e6da0c41] .dt-leftbar-row__meta-context ~ .dt-leftbar-row__meta-custom:not(:empty)::before {
521
1166
  color: var(--dt-theme-sidebar-status-color-foreground);
1167
+ content: ' • ';
522
1168
  }
523
1169
  .dt-leftbar-row__icon-cc[data-v-e6da0c41] {
524
- border-radius: var(--dt-size-200);
525
1170
  width: calc(var(--dt-size-300) * 3.5);
526
1171
  height: calc(var(--dt-size-300) * 3.5);
1172
+ border-radius: var(--dt-size-200);
527
1173
  }
528
1174
  .opacity-pulsate[data-v-e6da0c41] {
529
1175
  -webkit-animation-name: opacity-pulsate-e6da0c41;
530
- -webkit-animation-duration: 1s;
531
- -webkit-animation-iteration-count: infinite;
532
- -webkit-animation-fill-mode: both;
533
1176
  -moz-animation-name: opacity-pulsate-e6da0c41;
534
- -moz-animation-duration: 1s;
535
- -moz-animation-iteration-count: infinite;
536
- -moz-animation-fill-mode: both;
537
1177
  animation-name: opacity-pulsate-e6da0c41;
1178
+ -webkit-animation-duration: 1s;
1179
+ -moz-animation-duration: 1s;
538
1180
  animation-duration: 1s;
1181
+ -webkit-animation-iteration-count: infinite;
1182
+ -moz-animation-iteration-count: infinite;
539
1183
  animation-iteration-count: infinite;
1184
+ -webkit-animation-fill-mode: both;
1185
+ -moz-animation-fill-mode: both;
540
1186
  animation-fill-mode: both;
541
1187
  }
542
- @-webkit-keyframes opacity-pulsate-e6da0c41 {
1188
+ @keyframes opacity-pulsate-e6da0c41 {
543
1189
  0%,
544
1190
  100% {
545
1191
  opacity: 0.2;
@@ -548,7 +1194,7 @@
548
1194
  opacity: 1;
549
1195
  }
550
1196
  }
551
- @-moz-keyframes opacity-pulsate-e6da0c41 {
1197
+ @keyframes opacity-pulsate-e6da0c41 {
552
1198
  0%,
553
1199
  100% {
554
1200
  opacity: 0.2;
@@ -573,10 +1219,11 @@
573
1219
  transform: translate(0, 0);
574
1220
  }
575
1221
  10% {
576
- transform: translate(0, -5px);
577
- opacity: 90%;
1222
+ transform: translate(0, -0.5rem);
1223
+ opacity: 0.9;
578
1224
  }
579
1225
  }
1226
+ /* stylelint-disable selector-pseudo-class-no-unknown */
580
1227
  .dt-leftbar-row[data-v-f44e0386] {
581
1228
  --leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);
582
1229
  --leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);
@@ -599,14 +1246,14 @@
599
1246
  --leftbar-row-action-width: var(--dt-size-550);
600
1247
  --leftbar-row-action-height: var(--leftbar-row-action-width);
601
1248
  position: relative;
602
- opacity: var(--leftbar-row-opacity);
603
1249
  display: flex;
604
1250
  background-color: var(--dt-theme-sidebar-row-color-background);
605
1251
  border-radius: var(--leftbar-row-radius);
1252
+ cursor: pointer;
1253
+ opacity: var(--leftbar-row-opacity);
1254
+ transition-timing-function: var(--ttf-out-quint);
606
1255
  transition-duration: var(--td200);
607
1256
  transition-property: background-color, border, box-shadow;
608
- transition-timing-function: var(--ttf-out-quint);
609
- cursor: pointer;
610
1257
  }
611
1258
  .dt-leftbar-row[data-v-f44e0386]:not(.dt-leftbar-row--no-action):hover,
612
1259
  .dt-leftbar-row[data-v-f44e0386]:not(.dt-leftbar-row--no-action):focus-within {
@@ -645,13 +1292,13 @@
645
1292
  border-bottom-right-radius: var(--dt-size-radius-0);
646
1293
  }
647
1294
  .dt-leftbar-row__unread-mention-count-badge[data-v-f44e0386] {
1295
+ background-color: var(--dt-color-purple-500);
648
1296
  border-top-left-radius: var(--dt-size-radius-0);
649
1297
  border-bottom-left-radius: var(--dt-size-radius-0);
650
- background-color: var(--dt-color-purple-500);
651
1298
  }
652
1299
  .dt-leftbar-row__unread-mention-only-count-badge[data-v-f44e0386] {
653
- background-color: var(--dt-color-purple-500);
654
1300
  color: var(--dt-color-foreground-primary-inverted);
1301
+ background-color: var(--dt-color-purple-500);
655
1302
  }
656
1303
  .dt-leftbar-row--muted[data-v-f44e0386] {
657
1304
  --leftbar-row-opacity: 60%;
@@ -668,25 +1315,25 @@
668
1315
  }
669
1316
  .dt-leftbar-row__is-typing[data-v-f44e0386] {
670
1317
  --is-typing-size-shape: var(--dt-size-550);
671
- height: var(--is-typing-size-shape);
672
- width: var(--is-typing-size-shape);
673
1318
  position: absolute;
674
1319
  display: flex;
1320
+ gap: var(--dt-space-200);
675
1321
  align-items: center;
676
1322
  justify-content: center;
677
- gap: 2px;
1323
+ width: var(--is-typing-size-shape);
1324
+ height: var(--is-typing-size-shape);
678
1325
  border-radius: var(--dt-size-radius-pill);
679
1326
  opacity: 0.75;
680
1327
  }
681
1328
  .dt-leftbar-row__is-typing span[data-v-f44e0386] {
682
- transition: all 500ms ease;
683
- background: var(--dt-color-surface-strong);
684
- height: 4px;
685
- width: 4px;
686
1329
  display: inline-block;
1330
+ width: var(--dt-size-300);
1331
+ height: var(--dt-size-300);
687
1332
  padding: 0;
688
- opacity: 0.3;
1333
+ background: var(--dt-color-surface-strong);
689
1334
  border-radius: var(--dt-size-radius-pill);
1335
+ opacity: 0.3;
1336
+ transition: all 500ms ease;
690
1337
  animation: wave-f44e0386 1.5s ease infinite;
691
1338
  }
692
1339
  .dt-leftbar-row__is-typing span[data-v-f44e0386]:nth-child(1) {
@@ -700,20 +1347,20 @@
700
1347
  }
701
1348
  .dt-leftbar-row__primary[data-v-f44e0386] {
702
1349
  display: flex;
703
- align-items: center;
704
1350
  flex: 1;
1351
+ align-items: center;
705
1352
  width: 100%;
706
- text-align: left;
707
- background-color: var(--leftbar-row-color-background);
1353
+ margin: 0;
1354
+ padding: 0;
708
1355
  color: var(--leftbar-row-color-foreground);
709
- text-decoration: none;
710
- appearance: none;
711
1356
  font-size: inherit;
712
1357
  line-height: inherit;
713
- margin: 0;
1358
+ text-align: left;
1359
+ text-decoration: none;
1360
+ background-color: var(--leftbar-row-color-background);
714
1361
  border: 0;
715
- padding: 0;
716
1362
  border-radius: var(--leftbar-row-radius);
1363
+ appearance: none;
717
1364
  }
718
1365
  .dt-leftbar-row__primary[data-v-f44e0386]:active {
719
1366
  --leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active);
@@ -722,20 +1369,20 @@
722
1369
  box-shadow: var(--dt-shadow-focus-inset);
723
1370
  }
724
1371
  .dt-leftbar-row__action-button[data-v-f44e0386] {
725
- opacity: 0;
726
1372
  width: var(--leftbar-row-action-width);
727
1373
  height: var(--leftbar-row-action-height);
1374
+ opacity: 0;
728
1375
  }
729
1376
  .dt-leftbar-row__alpha[data-v-f44e0386] {
730
- color: var(--leftbar-row-alpha-color-foreground);
731
1377
  display: flex;
732
- box-sizing: border-box;
733
- justify-content: center;
734
1378
  align-items: center;
735
- padding-left: var(--dt-space-400);
736
- padding-right: var(--dt-space-400);
1379
+ justify-content: center;
1380
+ box-sizing: border-box;
737
1381
  width: var(--leftbar-row-alpha-width);
738
1382
  height: var(--leftbar-row-alpha-height);
1383
+ padding-right: var(--dt-space-400);
1384
+ padding-left: var(--dt-space-400);
1385
+ color: var(--leftbar-row-alpha-color-foreground);
739
1386
  border-radius: var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius);
740
1387
  }
741
1388
  .dt-leftbar-row__label[data-v-f44e0386] {
@@ -744,47 +1391,47 @@
744
1391
  }
745
1392
  .dt-leftbar-row__omega[data-v-f44e0386] {
746
1393
  position: absolute;
747
- display: flex;
748
- right: var(--leftbar-row-action-position-right);
749
1394
  top: var(--leftbar-row-action-position-bottom);
750
- transform: translateY(calc(var(--leftbar-row-action-position-bottom) * -1));
1395
+ right: var(--leftbar-row-action-position-right);
1396
+ display: flex;
751
1397
  gap: var(--dt-space-300);
752
- justify-content: flex-end;
753
1398
  align-items: center;
1399
+ justify-content: flex-end;
754
1400
  box-sizing: border-box;
755
1401
  border-radius: var(--leftbar-row-radius);
1402
+ transform: translateY(calc(var(--leftbar-row-action-position-bottom) * -1));
756
1403
  }
757
1404
  .dt-leftbar-row__unread-badge[data-v-f44e0386] {
758
1405
  display: var(--leftbar-row-unread-badge-display);
759
1406
  }
760
1407
  .dt-leftbar-row__active-voice[data-v-f44e0386] {
761
- color: var(--dt-color-purple-400);
762
1408
  display: inline-flex;
1409
+ color: var(--dt-color-purple-400);
763
1410
  -webkit-animation-name: opacity-pulsate-f44e0386;
764
- -webkit-animation-duration: 1s;
765
- -webkit-animation-iteration-count: infinite;
766
- -webkit-animation-fill-mode: both;
767
1411
  -moz-animation-name: opacity-pulsate-f44e0386;
768
- -moz-animation-duration: 1s;
769
- -moz-animation-iteration-count: infinite;
770
- -moz-animation-fill-mode: both;
771
1412
  animation-name: opacity-pulsate-f44e0386;
1413
+ -webkit-animation-duration: 1s;
1414
+ -moz-animation-duration: 1s;
772
1415
  animation-duration: 1s;
1416
+ -webkit-animation-iteration-count: infinite;
1417
+ -moz-animation-iteration-count: infinite;
773
1418
  animation-iteration-count: infinite;
1419
+ -webkit-animation-fill-mode: both;
1420
+ -moz-animation-fill-mode: both;
774
1421
  animation-fill-mode: both;
775
1422
  }
776
1423
  .dt-leftbar-row__dnd[data-v-f44e0386] {
777
1424
  padding-top: var(--dt-space-200);
778
1425
  padding-right: var(--dt-space-300);
779
1426
  color: var(--dt-color-foreground-tertiary);
1427
+ font-weight: var(--dt-font-weight-medium);
780
1428
  font-size: var(--dt-font-size-100);
781
1429
  line-height: var(--dt-font-line-height-400);
782
- font-weight: var(--dt-font-weight-medium);
783
1430
  }
784
1431
  .dt-leftbar-row__container--off-duty[data-v-f44e0386] {
785
- border-radius: var(--dt-size-radius-500);
786
1432
  background-color: var(--dt-badge-color-background-critical);
787
1433
  border: var(--dt-size-100) solid var(--dt-color-border-subtle);
1434
+ border-radius: var(--dt-size-radius-500);
788
1435
  }
789
1436
  .dt-leftbar-row__container--off-duty[data-v-f44e0386] .dt-leftbar-row__primary {
790
1437
  margin: calc(var(--dt-size-100) * -1);
@@ -802,48 +1449,48 @@
802
1449
  }
803
1450
  .dt-leftbar-row[data-v-f44e0386] .dt-leftbar-row__description {
804
1451
  display: block;
1452
+ overflow: hidden;
1453
+ color: var(--leftbar-row-description-color-foreground);
805
1454
  font-weight: var(--leftbar-row-description-font-weight);
806
1455
  font-size: var(--leftbar-row-description-font-size);
807
1456
  line-height: var(--leftbar-row-description-line-height);
808
- color: var(--leftbar-row-description-color-foreground);
809
- overflow: hidden;
810
- text-overflow: ellipsis;
811
1457
  white-space: nowrap;
1458
+ text-overflow: ellipsis;
812
1459
  }
813
1460
  .dt-leftbar-row[data-v-f44e0386] .dt-leftbar-row__status {
814
1461
  display: block;
1462
+ padding-bottom: var(--dt-space-100);
1463
+ overflow: hidden;
815
1464
  color: var(--leftbar-row-status-color-foreground);
816
1465
  font-size: var(--leftbar-row-status-font-size);
817
1466
  line-height: var(--leftbar-row-status-line-height);
818
- padding-bottom: var(--dt-space-100);
819
- overflow: hidden;
820
- text-overflow: ellipsis;
821
1467
  white-space: nowrap;
1468
+ text-overflow: ellipsis;
822
1469
  }
823
- .dt-leftbar-row[data-v-f44e0386] .dt-leftbar-row__meta-context ~ .dt-leftbar-row__meta-custom:not(:empty):before {
824
- content: ' • ';
1470
+ .dt-leftbar-row[data-v-f44e0386] .dt-leftbar-row__meta-context ~ .dt-leftbar-row__meta-custom:not(:empty)::before {
825
1471
  color: var(--dt-theme-sidebar-status-color-foreground);
1472
+ content: ' • ';
826
1473
  }
827
1474
  .dt-leftbar-row__icon-cc[data-v-f44e0386] {
828
- border-radius: var(--dt-size-200);
829
1475
  width: calc(var(--dt-size-300) * 3.5);
830
1476
  height: calc(var(--dt-size-300) * 3.5);
1477
+ border-radius: var(--dt-size-200);
831
1478
  }
832
1479
  .opacity-pulsate[data-v-f44e0386] {
833
1480
  -webkit-animation-name: opacity-pulsate-f44e0386;
834
- -webkit-animation-duration: 1s;
835
- -webkit-animation-iteration-count: infinite;
836
- -webkit-animation-fill-mode: both;
837
1481
  -moz-animation-name: opacity-pulsate-f44e0386;
838
- -moz-animation-duration: 1s;
839
- -moz-animation-iteration-count: infinite;
840
- -moz-animation-fill-mode: both;
841
1482
  animation-name: opacity-pulsate-f44e0386;
1483
+ -webkit-animation-duration: 1s;
1484
+ -moz-animation-duration: 1s;
842
1485
  animation-duration: 1s;
1486
+ -webkit-animation-iteration-count: infinite;
1487
+ -moz-animation-iteration-count: infinite;
843
1488
  animation-iteration-count: infinite;
1489
+ -webkit-animation-fill-mode: both;
1490
+ -moz-animation-fill-mode: both;
844
1491
  animation-fill-mode: both;
845
1492
  }
846
- @-webkit-keyframes opacity-pulsate-f44e0386 {
1493
+ @keyframes opacity-pulsate-f44e0386 {
847
1494
  0%,
848
1495
  100% {
849
1496
  opacity: 0.2;
@@ -852,7 +1499,7 @@
852
1499
  opacity: 1;
853
1500
  }
854
1501
  }
855
- @-moz-keyframes opacity-pulsate-f44e0386 {
1502
+ @keyframes opacity-pulsate-f44e0386 {
856
1503
  0%,
857
1504
  100% {
858
1505
  opacity: 0.2;
@@ -877,8 +1524,8 @@
877
1524
  transform: translate(0, 0);
878
1525
  }
879
1526
  10% {
880
- transform: translate(0, -5px);
881
- opacity: 90%;
1527
+ transform: translate(0, -0.5rem);
1528
+ opacity: 0.9;
882
1529
  }
883
1530
  }
884
1531
  .dt-recipe-callbox[data-v-ef08f46e] {
@@ -1086,12 +1733,11 @@
1086
1733
  border-color: var(--dt-color-border-default);
1087
1734
  cursor: text;
1088
1735
  }
1089
- .dt-message-input--focused {
1736
+ .dt-message-input:focus-within {
1090
1737
  border-color: var(--dt-color-border-bold);
1091
1738
  box-shadow: var(--dt-shadow-small);
1092
1739
  }
1093
1740
  .dt-message-input__editor-wrapper {
1094
- overflow: auto;
1095
1741
  padding: var(--dt-space-400) var(--dt-space-500) var(--dt-space-300);
1096
1742
  }
1097
1743
  .dt-message-input__remaining-char-tooltip {
@@ -1462,28 +2108,28 @@
1462
2108
  border-width: var(--dt-size-350);
1463
2109
  border-color: var(--dt-color-border-subtle);
1464
2110
  }
1465
- .combobox__input-wrapper[data-v-e8b2c5a4] {
2111
+ .combobox__input-wrapper[data-v-7d72ca8b] {
1466
2112
  position: relative;
1467
2113
  display: block;
1468
2114
  }
1469
- .combobox__chip-wrapper[data-v-e8b2c5a4] {
2115
+ .combobox__chip-wrapper[data-v-7d72ca8b] {
1470
2116
  position: absolute;
1471
2117
  margin-left: var(--dt-space-200);
1472
2118
  margin-right: var(--dt-space-200);
1473
2119
  padding-left: var(--dt-space-100);
1474
2120
  max-width: calc(var(--dt-size-100-percent) - var(--dt-space-400));
1475
2121
  }
1476
- .combobox__chip[data-v-e8b2c5a4] {
2122
+ .combobox__chip[data-v-7d72ca8b] {
1477
2123
  margin-top: var(--dt-space-300);
1478
2124
  margin-left: var(--dt-space-200);
1479
2125
  margin-right: var(--dt-space-200);
1480
2126
  z-index: var(--zi-base1);
1481
2127
  max-width: var(--dt-size-100-percent);
1482
2128
  }
1483
- .combobox__input[data-v-e8b2c5a4] {
2129
+ .combobox__input[data-v-7d72ca8b] {
1484
2130
  flex-grow: 1;
1485
2131
  }
1486
- .combobox__list--loading[data-v-e8b2c5a4] {
2132
+ .combobox__list--loading[data-v-7d72ca8b] {
1487
2133
  text-align: center;
1488
2134
  padding-top: var(--dt-space-500);
1489
2135
  padding-bottom: var(--dt-space-500);