@dialpad/dialtone-vue 3.135.1 → 3.136.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.
- package/dist/dialtone-vue.cjs +2 -0
- package/dist/dialtone-vue.cjs.map +1 -1
- package/dist/dialtone-vue.js +2 -0
- package/dist/dialtone-vue.js.map +1 -1
- package/dist/lib/emoji-picker.cjs +2 -1
- package/dist/lib/emoji-picker.cjs.map +1 -1
- package/dist/lib/emoji-picker.js +2 -1
- package/dist/lib/emoji-picker.js.map +1 -1
- package/dist/lib/input.cjs +9 -12
- package/dist/lib/input.cjs.map +1 -1
- package/dist/lib/input.js +9 -12
- package/dist/lib/input.js.map +1 -1
- package/dist/lib/message-input.cjs +14 -24
- package/dist/lib/message-input.cjs.map +1 -1
- package/dist/lib/message-input.js +15 -25
- package/dist/lib/message-input.js.map +1 -1
- package/dist/lib/rich-text-editor.cjs +154 -57
- package/dist/lib/rich-text-editor.cjs.map +1 -1
- package/dist/lib/rich-text-editor.js +154 -57
- package/dist/lib/rich-text-editor.js.map +1 -1
- package/dist/lib/scrollbar-directive.cjs +2402 -0
- package/dist/lib/scrollbar-directive.cjs.map +1 -0
- package/dist/lib/scrollbar-directive.js +2402 -0
- package/dist/lib/scrollbar-directive.js.map +1 -0
- package/dist/style.css +766 -120
- package/dist/types/components/emoji_picker/modules/emoji_selector.vue.d.ts.map +1 -1
- package/dist/types/components/input/input_constants.d.ts +3 -15
- package/dist/types/components/rich_text_editor/extensions/channels/suggestion.d.ts.map +1 -1
- package/dist/types/components/rich_text_editor/extensions/emoji/suggestion.d.ts.map +1 -1
- package/dist/types/components/rich_text_editor/extensions/mentions/suggestion.d.ts.map +1 -1
- package/dist/types/components/rich_text_editor/extensions/slash_command/suggestion.d.ts.map +1 -1
- package/dist/types/components/rich_text_editor/extensions/suggestion/SuggestionList.vue.d.ts +1 -1
- package/dist/types/components/rich_text_editor/extensions/tippy_plugins/hide_on_esc.d.ts +12 -0
- package/dist/types/components/rich_text_editor/extensions/tippy_plugins/hide_on_esc.d.ts.map +1 -0
- package/dist/types/components/rich_text_editor/rich_text_editor.vue.d.ts +2 -1
- package/dist/types/components/rich_text_editor/rich_text_editor.vue.d.ts.map +1 -1
- package/dist/types/directives/scrollbar/index.d.ts +2 -0
- package/dist/types/directives/scrollbar/index.d.ts.map +1 -0
- package/dist/types/directives/scrollbar/scrollbar.d.ts +6 -0
- package/dist/types/directives/scrollbar/scrollbar.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts +0 -3
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts.map +1 -1
- package/package.json +4 -3
package/dist/style.css
CHANGED
|
@@ -160,10 +160,12 @@
|
|
|
160
160
|
transform: scale(0.98);
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
+
.dt-suggestion-list__container {
|
|
164
|
+
max-height: var(--dt-size-875);
|
|
165
|
+
}
|
|
163
166
|
.dt-suggestion-list {
|
|
164
167
|
position: relative;
|
|
165
168
|
padding: var(--dt-size-300);
|
|
166
|
-
max-height: var(--dt-size-875) !important;
|
|
167
169
|
min-width: var(--dt-size-925);
|
|
168
170
|
max-width: var(--dt-size-975);
|
|
169
171
|
}
|
|
@@ -264,7 +266,650 @@
|
|
|
264
266
|
overflow: hidden;
|
|
265
267
|
transition: height var(--td300) var(--ttf-out-quint);
|
|
266
268
|
}
|
|
267
|
-
|
|
269
|
+
/*!
|
|
270
|
+
* OverlayScrollbars
|
|
271
|
+
* Version: 2.9.1
|
|
272
|
+
*
|
|
273
|
+
* Copyright (c) Rene Haas | KingSora.
|
|
274
|
+
* https://github.com/KingSora
|
|
275
|
+
*
|
|
276
|
+
* Released under the MIT license.
|
|
277
|
+
*/
|
|
278
|
+
.os-size-observer,
|
|
279
|
+
.os-size-observer-listener {
|
|
280
|
+
scroll-behavior: auto !important;
|
|
281
|
+
direction: inherit;
|
|
282
|
+
pointer-events: none;
|
|
283
|
+
overflow: hidden;
|
|
284
|
+
visibility: hidden;
|
|
285
|
+
box-sizing: border-box;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.os-size-observer,
|
|
289
|
+
.os-size-observer-listener,
|
|
290
|
+
.os-size-observer-listener-item,
|
|
291
|
+
.os-size-observer-listener-item-final {
|
|
292
|
+
writing-mode: horizontal-tb;
|
|
293
|
+
position: absolute;
|
|
294
|
+
left: 0;
|
|
295
|
+
top: 0;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.os-size-observer {
|
|
299
|
+
z-index: -1;
|
|
300
|
+
contain: strict;
|
|
301
|
+
display: flex;
|
|
302
|
+
flex-direction: row;
|
|
303
|
+
flex-wrap: nowrap;
|
|
304
|
+
padding: inherit;
|
|
305
|
+
border: inherit;
|
|
306
|
+
box-sizing: inherit;
|
|
307
|
+
margin: -133px;
|
|
308
|
+
top: 0;
|
|
309
|
+
right: 0;
|
|
310
|
+
bottom: 0;
|
|
311
|
+
left: 0;
|
|
312
|
+
transform: scale(0.1);
|
|
313
|
+
}
|
|
314
|
+
.os-size-observer::before {
|
|
315
|
+
content: "";
|
|
316
|
+
flex: none;
|
|
317
|
+
box-sizing: inherit;
|
|
318
|
+
padding: 10px;
|
|
319
|
+
width: 10px;
|
|
320
|
+
height: 10px;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.os-size-observer-appear {
|
|
324
|
+
animation: os-size-observer-appear-animation 1ms forwards;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.os-size-observer-listener {
|
|
328
|
+
box-sizing: border-box;
|
|
329
|
+
position: relative;
|
|
330
|
+
flex: auto;
|
|
331
|
+
padding: inherit;
|
|
332
|
+
border: inherit;
|
|
333
|
+
margin: -133px;
|
|
334
|
+
transform: scale(calc(1 / 0.1));
|
|
335
|
+
}
|
|
336
|
+
.os-size-observer-listener.ltr {
|
|
337
|
+
margin-right: -266px;
|
|
338
|
+
margin-left: 0;
|
|
339
|
+
}
|
|
340
|
+
.os-size-observer-listener.rtl {
|
|
341
|
+
margin-left: -266px;
|
|
342
|
+
margin-right: 0;
|
|
343
|
+
}
|
|
344
|
+
.os-size-observer-listener:empty::before {
|
|
345
|
+
content: "";
|
|
346
|
+
width: 100%;
|
|
347
|
+
height: 100%;
|
|
348
|
+
}
|
|
349
|
+
.os-size-observer-listener:empty::before, .os-size-observer-listener > .os-size-observer-listener-item {
|
|
350
|
+
display: block;
|
|
351
|
+
position: relative;
|
|
352
|
+
padding: inherit;
|
|
353
|
+
border: inherit;
|
|
354
|
+
box-sizing: content-box;
|
|
355
|
+
flex: auto;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.os-size-observer-listener-scroll {
|
|
359
|
+
box-sizing: border-box;
|
|
360
|
+
display: flex;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.os-size-observer-listener-item {
|
|
364
|
+
right: 0;
|
|
365
|
+
bottom: 0;
|
|
366
|
+
overflow: hidden;
|
|
367
|
+
direction: ltr;
|
|
368
|
+
flex: none;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.os-size-observer-listener-item-final {
|
|
372
|
+
transition: none;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
@keyframes os-size-observer-appear-animation {
|
|
376
|
+
from {
|
|
377
|
+
cursor: auto;
|
|
378
|
+
}
|
|
379
|
+
to {
|
|
380
|
+
cursor: none;
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
.os-trinsic-observer {
|
|
384
|
+
flex: none;
|
|
385
|
+
box-sizing: border-box;
|
|
386
|
+
position: relative;
|
|
387
|
+
max-width: 0px;
|
|
388
|
+
max-height: 1px;
|
|
389
|
+
padding: 0;
|
|
390
|
+
margin: 0;
|
|
391
|
+
border: none;
|
|
392
|
+
overflow: hidden;
|
|
393
|
+
z-index: -1;
|
|
394
|
+
height: 0;
|
|
395
|
+
top: calc(100% + 1px);
|
|
396
|
+
contain: strict;
|
|
397
|
+
}
|
|
398
|
+
.os-trinsic-observer:not(:empty) {
|
|
399
|
+
height: calc(100% + 1px);
|
|
400
|
+
top: -1px;
|
|
401
|
+
}
|
|
402
|
+
.os-trinsic-observer:not(:empty) > .os-size-observer {
|
|
403
|
+
width: 1000%;
|
|
404
|
+
height: 1000%;
|
|
405
|
+
min-height: 1px;
|
|
406
|
+
min-width: 1px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/**
|
|
410
|
+
* hide native scrollbars
|
|
411
|
+
* changes to this styles need to be reflected in the environment styles to correctly detect scrollbar hiding
|
|
412
|
+
*/
|
|
413
|
+
[data-overlayscrollbars-initialize],
|
|
414
|
+
[data-overlayscrollbars-viewport~=scrollbarHidden] {
|
|
415
|
+
scrollbar-width: none !important;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
[data-overlayscrollbars-initialize]::-webkit-scrollbar,
|
|
419
|
+
[data-overlayscrollbars-initialize]::-webkit-scrollbar-corner,
|
|
420
|
+
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar,
|
|
421
|
+
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar-corner {
|
|
422
|
+
-webkit-appearance: none !important;
|
|
423
|
+
appearance: none !important;
|
|
424
|
+
display: none !important;
|
|
425
|
+
width: 0 !important;
|
|
426
|
+
height: 0 !important;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* elements wont suddenly clip after initialization is done
|
|
431
|
+
*/
|
|
432
|
+
[data-overlayscrollbars-initialize]:not([data-overlayscrollbars]):not(html):not(body) {
|
|
433
|
+
overflow: auto;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* applied to body
|
|
438
|
+
*/
|
|
439
|
+
html[data-overlayscrollbars-body] {
|
|
440
|
+
overflow: hidden;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
html[data-overlayscrollbars-body],
|
|
444
|
+
html[data-overlayscrollbars-body] > body {
|
|
445
|
+
width: 100%;
|
|
446
|
+
height: 100%;
|
|
447
|
+
margin: 0;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
html[data-overlayscrollbars-body] > body {
|
|
451
|
+
overflow: visible;
|
|
452
|
+
margin: 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* structure setup
|
|
457
|
+
*/
|
|
458
|
+
[data-overlayscrollbars] {
|
|
459
|
+
position: relative;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
[data-overlayscrollbars~=host],
|
|
463
|
+
[data-overlayscrollbars-padding] {
|
|
464
|
+
display: flex;
|
|
465
|
+
align-items: stretch !important;
|
|
466
|
+
flex-direction: row !important;
|
|
467
|
+
flex-wrap: nowrap !important;
|
|
468
|
+
scroll-behavior: auto !important;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
[data-overlayscrollbars-padding],
|
|
472
|
+
[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
|
|
473
|
+
box-sizing: inherit;
|
|
474
|
+
position: relative;
|
|
475
|
+
flex: auto !important;
|
|
476
|
+
height: auto;
|
|
477
|
+
width: 100%;
|
|
478
|
+
min-width: 0;
|
|
479
|
+
padding: 0;
|
|
480
|
+
margin: 0;
|
|
481
|
+
border: none;
|
|
482
|
+
z-index: 0;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
|
|
486
|
+
--os-vaw: 0;
|
|
487
|
+
--os-vah: 0;
|
|
488
|
+
outline: none;
|
|
489
|
+
}
|
|
490
|
+
[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]):focus {
|
|
491
|
+
outline: none;
|
|
492
|
+
}
|
|
493
|
+
[data-overlayscrollbars-viewport][data-overlayscrollbars-viewport~=arrange]::before {
|
|
494
|
+
content: "";
|
|
495
|
+
position: absolute;
|
|
496
|
+
pointer-events: none;
|
|
497
|
+
z-index: -1;
|
|
498
|
+
min-width: 1px;
|
|
499
|
+
min-height: 1px;
|
|
500
|
+
width: var(--os-vaw);
|
|
501
|
+
height: var(--os-vah);
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
[data-overlayscrollbars],
|
|
505
|
+
[data-overlayscrollbars-padding],
|
|
506
|
+
[data-overlayscrollbars-viewport] {
|
|
507
|
+
overflow: hidden !important;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
[data-overlayscrollbars~=noClipping],
|
|
511
|
+
[data-overlayscrollbars-padding~=noClipping] {
|
|
512
|
+
overflow: visible !important;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
[data-overlayscrollbars-viewport~=measuring] {
|
|
516
|
+
overflow: hidden !important;
|
|
517
|
+
scroll-behavior: auto !important;
|
|
518
|
+
scroll-snap-type: none !important;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
[data-overlayscrollbars-viewport~=overflowXVisible]:not([data-overlayscrollbars-viewport~=measuring]) {
|
|
522
|
+
overflow-x: visible !important;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
[data-overlayscrollbars-viewport~=overflowXHidden] {
|
|
526
|
+
overflow-x: hidden !important;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
[data-overlayscrollbars-viewport~=overflowXScroll] {
|
|
530
|
+
overflow-x: scroll !important;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
[data-overlayscrollbars-viewport~=overflowYVisible]:not([data-overlayscrollbars-viewport~=measuring]) {
|
|
534
|
+
overflow-y: visible !important;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
[data-overlayscrollbars-viewport~=overflowYHidden] {
|
|
538
|
+
overflow-y: hidden !important;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
[data-overlayscrollbars-viewport~=overflowYScroll] {
|
|
542
|
+
overflow-y: scroll !important;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) {
|
|
546
|
+
font-size: 0 !important;
|
|
547
|
+
line-height: 0 !important;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::before,
|
|
551
|
+
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::after,
|
|
552
|
+
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) > * {
|
|
553
|
+
display: none !important;
|
|
554
|
+
position: absolute !important;
|
|
555
|
+
width: 1px !important;
|
|
556
|
+
height: 1px !important;
|
|
557
|
+
padding: 0 !important;
|
|
558
|
+
margin: -1px !important;
|
|
559
|
+
overflow: hidden !important;
|
|
560
|
+
clip: rect(0, 0, 0, 0) !important;
|
|
561
|
+
white-space: nowrap !important;
|
|
562
|
+
border-width: 0 !important;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
[data-overlayscrollbars-viewport~=scrolling] {
|
|
566
|
+
scroll-behavior: auto !important;
|
|
567
|
+
scroll-snap-type: none !important;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
[data-overlayscrollbars-content] {
|
|
571
|
+
box-sizing: inherit;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Display contents to bridge any flickering during deferred initialization.
|
|
576
|
+
*/
|
|
577
|
+
[data-overlayscrollbars-contents]:not(#osFakeId):not([data-overlayscrollbars-padding]):not([data-overlayscrollbars-viewport]):not([data-overlayscrollbars-content]) {
|
|
578
|
+
display: contents;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
/**
|
|
582
|
+
* optional & experimental grid mode
|
|
583
|
+
*/
|
|
584
|
+
[data-overlayscrollbars-grid],
|
|
585
|
+
[data-overlayscrollbars-grid] [data-overlayscrollbars-padding] {
|
|
586
|
+
display: grid;
|
|
587
|
+
grid-template: 1fr/1fr;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding],
|
|
591
|
+
[data-overlayscrollbars-grid] > [data-overlayscrollbars-viewport],
|
|
592
|
+
[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding] > [data-overlayscrollbars-viewport] {
|
|
593
|
+
height: auto !important;
|
|
594
|
+
width: auto !important;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
@property --os-scroll-percent {
|
|
598
|
+
syntax: "<number>";
|
|
599
|
+
inherits: true;
|
|
600
|
+
initial-value: 0;
|
|
601
|
+
}
|
|
602
|
+
@property --os-viewport-percent {
|
|
603
|
+
syntax: "<number>";
|
|
604
|
+
inherits: true;
|
|
605
|
+
initial-value: 0;
|
|
606
|
+
}
|
|
607
|
+
.os-scrollbar {
|
|
608
|
+
--os-viewport-percent: 0;
|
|
609
|
+
--os-scroll-percent: 0;
|
|
610
|
+
--os-scroll-direction: 0;
|
|
611
|
+
--os-scroll-percent-directional: calc(
|
|
612
|
+
var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) *
|
|
613
|
+
var(--os-scroll-direction)
|
|
614
|
+
);
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.os-scrollbar {
|
|
618
|
+
contain: size layout;
|
|
619
|
+
contain: size layout style;
|
|
620
|
+
transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
|
|
621
|
+
pointer-events: none;
|
|
622
|
+
position: absolute;
|
|
623
|
+
opacity: 0;
|
|
624
|
+
visibility: hidden;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
body > .os-scrollbar {
|
|
628
|
+
position: fixed;
|
|
629
|
+
z-index: 99999;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.os-scrollbar-transitionless {
|
|
633
|
+
transition: none !important;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.os-scrollbar-track {
|
|
637
|
+
position: relative;
|
|
638
|
+
padding: 0 !important;
|
|
639
|
+
border: none !important;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.os-scrollbar-handle {
|
|
643
|
+
position: absolute;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.os-scrollbar-track,
|
|
647
|
+
.os-scrollbar-handle {
|
|
648
|
+
pointer-events: none;
|
|
649
|
+
width: 100%;
|
|
650
|
+
height: 100%;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.os-scrollbar.os-scrollbar-track-interactive .os-scrollbar-track,
|
|
654
|
+
.os-scrollbar.os-scrollbar-handle-interactive .os-scrollbar-handle {
|
|
655
|
+
pointer-events: auto;
|
|
656
|
+
touch-action: none;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.os-scrollbar-horizontal {
|
|
660
|
+
bottom: 0;
|
|
661
|
+
left: 0;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.os-scrollbar-vertical {
|
|
665
|
+
top: 0;
|
|
666
|
+
right: 0;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.os-scrollbar-rtl.os-scrollbar-horizontal {
|
|
670
|
+
right: 0;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.os-scrollbar-rtl.os-scrollbar-vertical {
|
|
674
|
+
right: auto;
|
|
675
|
+
left: 0;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.os-scrollbar-visible {
|
|
679
|
+
opacity: 1;
|
|
680
|
+
visibility: visible;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.os-scrollbar-auto-hide.os-scrollbar-auto-hide-hidden {
|
|
684
|
+
opacity: 0;
|
|
685
|
+
visibility: hidden;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.os-scrollbar-interaction.os-scrollbar-visible {
|
|
689
|
+
opacity: 1;
|
|
690
|
+
visibility: visible;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.os-scrollbar-unusable,
|
|
694
|
+
.os-scrollbar-unusable *,
|
|
695
|
+
.os-scrollbar-wheel,
|
|
696
|
+
.os-scrollbar-wheel * {
|
|
697
|
+
pointer-events: none !important;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.os-scrollbar-unusable .os-scrollbar-handle {
|
|
701
|
+
opacity: 0 !important;
|
|
702
|
+
transition: none !important;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.os-scrollbar-horizontal .os-scrollbar-handle {
|
|
706
|
+
bottom: 0;
|
|
707
|
+
left: calc(var(--os-scroll-percent-directional) * 100%);
|
|
708
|
+
transform: translateX(calc(var(--os-scroll-percent-directional) * -100%));
|
|
709
|
+
width: calc(var(--os-viewport-percent) * 100%);
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.os-scrollbar-vertical .os-scrollbar-handle {
|
|
713
|
+
right: 0;
|
|
714
|
+
top: calc(var(--os-scroll-percent-directional) * 100%);
|
|
715
|
+
transform: translateY(calc(var(--os-scroll-percent-directional) * -100%));
|
|
716
|
+
height: calc(var(--os-viewport-percent) * 100%);
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
@supports (container-type: size) {
|
|
720
|
+
.os-scrollbar-track {
|
|
721
|
+
container-type: size;
|
|
722
|
+
}
|
|
723
|
+
.os-scrollbar-horizontal .os-scrollbar-handle {
|
|
724
|
+
left: auto;
|
|
725
|
+
transform: translateX(calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
|
|
726
|
+
}
|
|
727
|
+
.os-scrollbar-vertical .os-scrollbar-handle {
|
|
728
|
+
top: auto;
|
|
729
|
+
transform: translateY(calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
|
|
730
|
+
}
|
|
731
|
+
.os-scrollbar-rtl.os-scrollbar-horizontal .os-scrollbar-handle {
|
|
732
|
+
right: auto;
|
|
733
|
+
left: 0;
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
.os-scrollbar-rtl.os-scrollbar-vertical .os-scrollbar-handle {
|
|
737
|
+
right: auto;
|
|
738
|
+
left: 0;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless,
|
|
742
|
+
.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless.os-scrollbar-rtl {
|
|
743
|
+
left: 0;
|
|
744
|
+
right: 0;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless,
|
|
748
|
+
.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless.os-scrollbar-rtl {
|
|
749
|
+
top: 0;
|
|
750
|
+
bottom: 0;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
@media print {
|
|
754
|
+
.os-scrollbar {
|
|
755
|
+
display: none;
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
.os-scrollbar {
|
|
759
|
+
--os-size: 0;
|
|
760
|
+
--os-padding-perpendicular: 0;
|
|
761
|
+
--os-padding-axis: 0;
|
|
762
|
+
--os-track-border-radius: 0;
|
|
763
|
+
--os-track-bg: none;
|
|
764
|
+
--os-track-bg-hover: none;
|
|
765
|
+
--os-track-bg-active: none;
|
|
766
|
+
--os-track-border: none;
|
|
767
|
+
--os-track-border-hover: none;
|
|
768
|
+
--os-track-border-active: none;
|
|
769
|
+
--os-handle-border-radius: 0;
|
|
770
|
+
--os-handle-bg: none;
|
|
771
|
+
--os-handle-bg-hover: none;
|
|
772
|
+
--os-handle-bg-active: none;
|
|
773
|
+
--os-handle-border: none;
|
|
774
|
+
--os-handle-border-hover: none;
|
|
775
|
+
--os-handle-border-active: none;
|
|
776
|
+
--os-handle-min-size: 33px;
|
|
777
|
+
--os-handle-max-size: none;
|
|
778
|
+
--os-handle-perpendicular-size: 100%;
|
|
779
|
+
--os-handle-perpendicular-size-hover: 100%;
|
|
780
|
+
--os-handle-perpendicular-size-active: 100%;
|
|
781
|
+
--os-handle-interactive-area-offset: 0;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.os-scrollbar-track {
|
|
785
|
+
border: var(--os-track-border);
|
|
786
|
+
border-radius: var(--os-track-border-radius);
|
|
787
|
+
background: var(--os-track-bg);
|
|
788
|
+
transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
|
|
789
|
+
}
|
|
790
|
+
.os-scrollbar-track:hover {
|
|
791
|
+
border: var(--os-track-border-hover);
|
|
792
|
+
background: var(--os-track-bg-hover);
|
|
793
|
+
}
|
|
794
|
+
.os-scrollbar-track:active {
|
|
795
|
+
border: var(--os-track-border-active);
|
|
796
|
+
background: var(--os-track-bg-active);
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.os-scrollbar-handle {
|
|
800
|
+
border: var(--os-handle-border);
|
|
801
|
+
border-radius: var(--os-handle-border-radius);
|
|
802
|
+
background: var(--os-handle-bg);
|
|
803
|
+
}
|
|
804
|
+
.os-scrollbar-handle:hover {
|
|
805
|
+
border: var(--os-handle-border-hover);
|
|
806
|
+
background: var(--os-handle-bg-hover);
|
|
807
|
+
}
|
|
808
|
+
.os-scrollbar-handle:active {
|
|
809
|
+
border: var(--os-handle-border-active);
|
|
810
|
+
background: var(--os-handle-bg-active);
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.os-scrollbar-track:before,
|
|
814
|
+
.os-scrollbar-handle:before {
|
|
815
|
+
content: "";
|
|
816
|
+
position: absolute;
|
|
817
|
+
left: 0;
|
|
818
|
+
right: 0;
|
|
819
|
+
top: 0;
|
|
820
|
+
bottom: 0;
|
|
821
|
+
display: block;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.os-scrollbar-horizontal {
|
|
825
|
+
padding: var(--os-padding-perpendicular) var(--os-padding-axis);
|
|
826
|
+
right: var(--os-size);
|
|
827
|
+
height: var(--os-size);
|
|
828
|
+
}
|
|
829
|
+
.os-scrollbar-horizontal.os-scrollbar-rtl {
|
|
830
|
+
left: var(--os-size);
|
|
831
|
+
right: 0;
|
|
832
|
+
}
|
|
833
|
+
.os-scrollbar-horizontal .os-scrollbar-track:before {
|
|
834
|
+
top: calc(var(--os-padding-perpendicular) * -1);
|
|
835
|
+
bottom: calc(var(--os-padding-perpendicular) * -1);
|
|
836
|
+
}
|
|
837
|
+
.os-scrollbar-horizontal .os-scrollbar-handle {
|
|
838
|
+
min-width: var(--os-handle-min-size);
|
|
839
|
+
max-width: var(--os-handle-max-size);
|
|
840
|
+
height: var(--os-handle-perpendicular-size);
|
|
841
|
+
transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
|
|
842
|
+
}
|
|
843
|
+
.os-scrollbar-horizontal .os-scrollbar-handle:before {
|
|
844
|
+
top: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
|
|
845
|
+
bottom: calc(var(--os-padding-perpendicular) * -1);
|
|
846
|
+
}
|
|
847
|
+
.os-scrollbar-horizontal:hover .os-scrollbar-handle {
|
|
848
|
+
height: var(--os-handle-perpendicular-size-hover);
|
|
849
|
+
}
|
|
850
|
+
.os-scrollbar-horizontal:active .os-scrollbar-handle {
|
|
851
|
+
height: var(--os-handle-perpendicular-size-active);
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.os-scrollbar-vertical {
|
|
855
|
+
padding: var(--os-padding-axis) var(--os-padding-perpendicular);
|
|
856
|
+
bottom: var(--os-size);
|
|
857
|
+
width: var(--os-size);
|
|
858
|
+
}
|
|
859
|
+
.os-scrollbar-vertical .os-scrollbar-track:before {
|
|
860
|
+
left: calc(var(--os-padding-perpendicular) * -1);
|
|
861
|
+
right: calc(var(--os-padding-perpendicular) * -1);
|
|
862
|
+
}
|
|
863
|
+
.os-scrollbar-vertical .os-scrollbar-handle {
|
|
864
|
+
min-height: var(--os-handle-min-size);
|
|
865
|
+
max-height: var(--os-handle-max-size);
|
|
866
|
+
width: var(--os-handle-perpendicular-size);
|
|
867
|
+
transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
|
|
868
|
+
}
|
|
869
|
+
.os-scrollbar-vertical .os-scrollbar-handle:before {
|
|
870
|
+
left: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
|
|
871
|
+
right: calc(var(--os-padding-perpendicular) * -1);
|
|
872
|
+
}
|
|
873
|
+
.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle:before {
|
|
874
|
+
right: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
|
|
875
|
+
left: calc(var(--os-padding-perpendicular) * -1);
|
|
876
|
+
}
|
|
877
|
+
.os-scrollbar-vertical:hover .os-scrollbar-handle {
|
|
878
|
+
width: var(--os-handle-perpendicular-size-hover);
|
|
879
|
+
}
|
|
880
|
+
.os-scrollbar-vertical:active .os-scrollbar-handle {
|
|
881
|
+
width: var(--os-handle-perpendicular-size-active);
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
/* NONE THEME: */
|
|
885
|
+
[data-overlayscrollbars-viewport~=measuring] > .os-scrollbar,
|
|
886
|
+
.os-theme-none.os-scrollbar {
|
|
887
|
+
display: none !important;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
/* DARK & LIGHT THEME: */
|
|
891
|
+
.os-theme-dark,
|
|
892
|
+
.os-theme-light {
|
|
893
|
+
box-sizing: border-box;
|
|
894
|
+
--os-size: 10px;
|
|
895
|
+
--os-padding-perpendicular: 2px;
|
|
896
|
+
--os-padding-axis: 2px;
|
|
897
|
+
--os-track-border-radius: 10px;
|
|
898
|
+
--os-handle-interactive-area-offset: 4px;
|
|
899
|
+
--os-handle-border-radius: 10px;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.os-theme-dark {
|
|
903
|
+
--os-handle-bg: rgba(0, 0, 0, 0.44);
|
|
904
|
+
--os-handle-bg-hover: rgba(0, 0, 0, 0.55);
|
|
905
|
+
--os-handle-bg-active: rgba(0, 0, 0, 0.66);
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.os-theme-light {
|
|
909
|
+
--os-handle-bg: rgba(255, 255, 255, 0.44);
|
|
910
|
+
--os-handle-bg-hover: rgba(255, 255, 255, 0.55);
|
|
911
|
+
--os-handle-bg-active: rgba(255, 255, 255, 0.66);
|
|
912
|
+
}.dt-top-banner-info {
|
|
268
913
|
font-size: var(--dt-font-size-100);
|
|
269
914
|
display: flex;
|
|
270
915
|
justify-content: space-between;
|
|
@@ -313,6 +958,7 @@
|
|
|
313
958
|
background-color: var(--dt-color-surface-contrast);
|
|
314
959
|
color: var(--dt-color-foreground-secondary-inverted);
|
|
315
960
|
}
|
|
961
|
+
/* stylelint-disable selector-pseudo-class-no-unknown */
|
|
316
962
|
.dt-leftbar-row[data-v-4793665c] {
|
|
317
963
|
--leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);
|
|
318
964
|
--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);
|
|
@@ -335,14 +981,14 @@
|
|
|
335
981
|
--leftbar-row-action-width: var(--dt-size-550);
|
|
336
982
|
--leftbar-row-action-height: var(--leftbar-row-action-width);
|
|
337
983
|
position: relative;
|
|
338
|
-
opacity: var(--leftbar-row-opacity);
|
|
339
984
|
display: flex;
|
|
340
985
|
background-color: var(--dt-theme-sidebar-row-color-background);
|
|
341
986
|
border-radius: var(--leftbar-row-radius);
|
|
987
|
+
cursor: pointer;
|
|
988
|
+
opacity: var(--leftbar-row-opacity);
|
|
989
|
+
transition-timing-function: var(--ttf-out-quint);
|
|
342
990
|
transition-duration: var(--td200);
|
|
343
991
|
transition-property: background-color, border, box-shadow;
|
|
344
|
-
transition-timing-function: var(--ttf-out-quint);
|
|
345
|
-
cursor: pointer;
|
|
346
992
|
}
|
|
347
993
|
.dt-leftbar-row[data-v-4793665c]:not(.dt-leftbar-row--no-action):hover,
|
|
348
994
|
.dt-leftbar-row[data-v-4793665c]:not(.dt-leftbar-row--no-action):focus-within {
|
|
@@ -381,13 +1027,13 @@
|
|
|
381
1027
|
border-bottom-right-radius: var(--dt-size-radius-0);
|
|
382
1028
|
}
|
|
383
1029
|
.dt-leftbar-row__unread-mention-count-badge[data-v-4793665c] {
|
|
1030
|
+
background-color: var(--dt-color-purple-500);
|
|
384
1031
|
border-top-left-radius: var(--dt-size-radius-0);
|
|
385
1032
|
border-bottom-left-radius: var(--dt-size-radius-0);
|
|
386
|
-
background-color: var(--dt-color-purple-500);
|
|
387
1033
|
}
|
|
388
1034
|
.dt-leftbar-row__unread-mention-only-count-badge[data-v-4793665c] {
|
|
389
|
-
background-color: var(--dt-color-purple-500);
|
|
390
1035
|
color: var(--dt-color-foreground-primary-inverted);
|
|
1036
|
+
background-color: var(--dt-color-purple-500);
|
|
391
1037
|
}
|
|
392
1038
|
.dt-leftbar-row--muted[data-v-4793665c] {
|
|
393
1039
|
--leftbar-row-opacity: 60%;
|
|
@@ -404,25 +1050,25 @@
|
|
|
404
1050
|
}
|
|
405
1051
|
.dt-leftbar-row__is-typing[data-v-4793665c] {
|
|
406
1052
|
--is-typing-size-shape: var(--dt-size-550);
|
|
407
|
-
height: var(--is-typing-size-shape);
|
|
408
|
-
width: var(--is-typing-size-shape);
|
|
409
1053
|
position: absolute;
|
|
410
1054
|
display: flex;
|
|
1055
|
+
gap: var(--dt-space-200);
|
|
411
1056
|
align-items: center;
|
|
412
1057
|
justify-content: center;
|
|
413
|
-
|
|
1058
|
+
width: var(--is-typing-size-shape);
|
|
1059
|
+
height: var(--is-typing-size-shape);
|
|
414
1060
|
border-radius: var(--dt-size-radius-pill);
|
|
415
1061
|
opacity: 0.75;
|
|
416
1062
|
}
|
|
417
1063
|
.dt-leftbar-row__is-typing span[data-v-4793665c] {
|
|
418
|
-
transition: all 500ms ease;
|
|
419
|
-
background: var(--dt-color-surface-strong);
|
|
420
|
-
height: 4px;
|
|
421
|
-
width: 4px;
|
|
422
1064
|
display: inline-block;
|
|
1065
|
+
width: var(--dt-size-300);
|
|
1066
|
+
height: var(--dt-size-300);
|
|
423
1067
|
padding: 0;
|
|
424
|
-
|
|
1068
|
+
background: var(--dt-color-surface-strong);
|
|
425
1069
|
border-radius: var(--dt-size-radius-pill);
|
|
1070
|
+
opacity: 0.3;
|
|
1071
|
+
transition: all 500ms ease;
|
|
426
1072
|
animation: wave-4793665c 1.5s ease infinite;
|
|
427
1073
|
}
|
|
428
1074
|
.dt-leftbar-row__is-typing span[data-v-4793665c]:nth-child(1) {
|
|
@@ -436,20 +1082,20 @@
|
|
|
436
1082
|
}
|
|
437
1083
|
.dt-leftbar-row__primary[data-v-4793665c] {
|
|
438
1084
|
display: flex;
|
|
439
|
-
align-items: center;
|
|
440
1085
|
flex: 1;
|
|
1086
|
+
align-items: center;
|
|
441
1087
|
width: 100%;
|
|
442
|
-
|
|
443
|
-
|
|
1088
|
+
margin: 0;
|
|
1089
|
+
padding: 0;
|
|
444
1090
|
color: var(--leftbar-row-color-foreground);
|
|
445
|
-
text-decoration: none;
|
|
446
|
-
appearance: none;
|
|
447
1091
|
font-size: inherit;
|
|
448
1092
|
line-height: inherit;
|
|
449
|
-
|
|
1093
|
+
text-align: left;
|
|
1094
|
+
text-decoration: none;
|
|
1095
|
+
background-color: var(--leftbar-row-color-background);
|
|
450
1096
|
border: 0;
|
|
451
|
-
padding: 0;
|
|
452
1097
|
border-radius: var(--leftbar-row-radius);
|
|
1098
|
+
appearance: none;
|
|
453
1099
|
}
|
|
454
1100
|
.dt-leftbar-row__primary[data-v-4793665c]:active {
|
|
455
1101
|
--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active);
|
|
@@ -458,20 +1104,20 @@
|
|
|
458
1104
|
box-shadow: var(--dt-shadow-focus-inset);
|
|
459
1105
|
}
|
|
460
1106
|
.dt-leftbar-row__action-button[data-v-4793665c] {
|
|
461
|
-
opacity: 0;
|
|
462
1107
|
width: var(--leftbar-row-action-width);
|
|
463
1108
|
height: var(--leftbar-row-action-height);
|
|
1109
|
+
opacity: 0;
|
|
464
1110
|
}
|
|
465
1111
|
.dt-leftbar-row__alpha[data-v-4793665c] {
|
|
466
|
-
color: var(--leftbar-row-alpha-color-foreground);
|
|
467
1112
|
display: flex;
|
|
468
|
-
box-sizing: border-box;
|
|
469
|
-
justify-content: center;
|
|
470
1113
|
align-items: center;
|
|
471
|
-
|
|
472
|
-
|
|
1114
|
+
justify-content: center;
|
|
1115
|
+
box-sizing: border-box;
|
|
473
1116
|
width: var(--leftbar-row-alpha-width);
|
|
474
1117
|
height: var(--leftbar-row-alpha-height);
|
|
1118
|
+
padding-right: var(--dt-space-400);
|
|
1119
|
+
padding-left: var(--dt-space-400);
|
|
1120
|
+
color: var(--leftbar-row-alpha-color-foreground);
|
|
475
1121
|
border-radius: var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius);
|
|
476
1122
|
}
|
|
477
1123
|
.dt-leftbar-row__label[data-v-4793665c] {
|
|
@@ -480,47 +1126,47 @@
|
|
|
480
1126
|
}
|
|
481
1127
|
.dt-leftbar-row__omega[data-v-4793665c] {
|
|
482
1128
|
position: absolute;
|
|
483
|
-
display: flex;
|
|
484
|
-
right: var(--leftbar-row-action-position-right);
|
|
485
1129
|
top: var(--leftbar-row-action-position-bottom);
|
|
486
|
-
|
|
1130
|
+
right: var(--leftbar-row-action-position-right);
|
|
1131
|
+
display: flex;
|
|
487
1132
|
gap: var(--dt-space-300);
|
|
488
|
-
justify-content: flex-end;
|
|
489
1133
|
align-items: center;
|
|
1134
|
+
justify-content: flex-end;
|
|
490
1135
|
box-sizing: border-box;
|
|
491
1136
|
border-radius: var(--leftbar-row-radius);
|
|
1137
|
+
transform: translateY(calc(var(--leftbar-row-action-position-bottom) * -1));
|
|
492
1138
|
}
|
|
493
1139
|
.dt-leftbar-row__unread-badge[data-v-4793665c] {
|
|
494
1140
|
display: var(--leftbar-row-unread-badge-display);
|
|
495
1141
|
}
|
|
496
1142
|
.dt-leftbar-row__active-voice[data-v-4793665c] {
|
|
497
|
-
color: var(--dt-color-purple-400);
|
|
498
1143
|
display: inline-flex;
|
|
1144
|
+
color: var(--dt-color-purple-400);
|
|
499
1145
|
-webkit-animation-name: opacity-pulsate-4793665c;
|
|
500
|
-
-webkit-animation-duration: 1s;
|
|
501
|
-
-webkit-animation-iteration-count: infinite;
|
|
502
|
-
-webkit-animation-fill-mode: both;
|
|
503
1146
|
-moz-animation-name: opacity-pulsate-4793665c;
|
|
504
|
-
-moz-animation-duration: 1s;
|
|
505
|
-
-moz-animation-iteration-count: infinite;
|
|
506
|
-
-moz-animation-fill-mode: both;
|
|
507
1147
|
animation-name: opacity-pulsate-4793665c;
|
|
1148
|
+
-webkit-animation-duration: 1s;
|
|
1149
|
+
-moz-animation-duration: 1s;
|
|
508
1150
|
animation-duration: 1s;
|
|
1151
|
+
-webkit-animation-iteration-count: infinite;
|
|
1152
|
+
-moz-animation-iteration-count: infinite;
|
|
509
1153
|
animation-iteration-count: infinite;
|
|
1154
|
+
-webkit-animation-fill-mode: both;
|
|
1155
|
+
-moz-animation-fill-mode: both;
|
|
510
1156
|
animation-fill-mode: both;
|
|
511
1157
|
}
|
|
512
1158
|
.dt-leftbar-row__dnd[data-v-4793665c] {
|
|
513
1159
|
padding-top: var(--dt-space-200);
|
|
514
1160
|
padding-right: var(--dt-space-300);
|
|
515
1161
|
color: var(--dt-color-foreground-tertiary);
|
|
1162
|
+
font-weight: var(--dt-font-weight-medium);
|
|
516
1163
|
font-size: var(--dt-font-size-100);
|
|
517
1164
|
line-height: var(--dt-font-line-height-400);
|
|
518
|
-
font-weight: var(--dt-font-weight-medium);
|
|
519
1165
|
}
|
|
520
1166
|
.dt-leftbar-row__container--off-duty[data-v-4793665c] {
|
|
521
|
-
border-radius: var(--dt-size-radius-500);
|
|
522
1167
|
background-color: var(--dt-badge-color-background-critical);
|
|
523
1168
|
border: var(--dt-size-100) solid var(--dt-color-border-subtle);
|
|
1169
|
+
border-radius: var(--dt-size-radius-500);
|
|
524
1170
|
}
|
|
525
1171
|
.dt-leftbar-row__container--off-duty[data-v-4793665c] .dt-leftbar-row__primary {
|
|
526
1172
|
margin: calc(var(--dt-size-100) * -1);
|
|
@@ -538,48 +1184,48 @@
|
|
|
538
1184
|
}
|
|
539
1185
|
.dt-leftbar-row[data-v-4793665c] .dt-leftbar-row__description {
|
|
540
1186
|
display: block;
|
|
1187
|
+
overflow: hidden;
|
|
1188
|
+
color: var(--leftbar-row-description-color-foreground);
|
|
541
1189
|
font-weight: var(--leftbar-row-description-font-weight);
|
|
542
1190
|
font-size: var(--leftbar-row-description-font-size);
|
|
543
1191
|
line-height: var(--leftbar-row-description-line-height);
|
|
544
|
-
color: var(--leftbar-row-description-color-foreground);
|
|
545
|
-
overflow: hidden;
|
|
546
|
-
text-overflow: ellipsis;
|
|
547
1192
|
white-space: nowrap;
|
|
1193
|
+
text-overflow: ellipsis;
|
|
548
1194
|
}
|
|
549
1195
|
.dt-leftbar-row[data-v-4793665c] .dt-leftbar-row__status {
|
|
550
1196
|
display: block;
|
|
1197
|
+
padding-bottom: var(--dt-space-100);
|
|
1198
|
+
overflow: hidden;
|
|
551
1199
|
color: var(--leftbar-row-status-color-foreground);
|
|
552
1200
|
font-size: var(--leftbar-row-status-font-size);
|
|
553
1201
|
line-height: var(--leftbar-row-status-line-height);
|
|
554
|
-
padding-bottom: var(--dt-space-100);
|
|
555
|
-
overflow: hidden;
|
|
556
|
-
text-overflow: ellipsis;
|
|
557
1202
|
white-space: nowrap;
|
|
1203
|
+
text-overflow: ellipsis;
|
|
558
1204
|
}
|
|
559
|
-
.dt-leftbar-row[data-v-4793665c] .dt-leftbar-row__meta-context ~ .dt-leftbar-row__meta-custom:not(:empty)
|
|
560
|
-
content: ' • ';
|
|
1205
|
+
.dt-leftbar-row[data-v-4793665c] .dt-leftbar-row__meta-context ~ .dt-leftbar-row__meta-custom:not(:empty)::before {
|
|
561
1206
|
color: var(--dt-theme-sidebar-status-color-foreground);
|
|
1207
|
+
content: ' • ';
|
|
562
1208
|
}
|
|
563
1209
|
.dt-leftbar-row__icon-cc[data-v-4793665c] {
|
|
564
|
-
border-radius: var(--dt-size-200);
|
|
565
1210
|
width: calc(var(--dt-size-300) * 3.5);
|
|
566
1211
|
height: calc(var(--dt-size-300) * 3.5);
|
|
1212
|
+
border-radius: var(--dt-size-200);
|
|
567
1213
|
}
|
|
568
1214
|
.opacity-pulsate[data-v-4793665c] {
|
|
569
1215
|
-webkit-animation-name: opacity-pulsate-4793665c;
|
|
570
|
-
-webkit-animation-duration: 1s;
|
|
571
|
-
-webkit-animation-iteration-count: infinite;
|
|
572
|
-
-webkit-animation-fill-mode: both;
|
|
573
1216
|
-moz-animation-name: opacity-pulsate-4793665c;
|
|
574
|
-
-moz-animation-duration: 1s;
|
|
575
|
-
-moz-animation-iteration-count: infinite;
|
|
576
|
-
-moz-animation-fill-mode: both;
|
|
577
1217
|
animation-name: opacity-pulsate-4793665c;
|
|
1218
|
+
-webkit-animation-duration: 1s;
|
|
1219
|
+
-moz-animation-duration: 1s;
|
|
578
1220
|
animation-duration: 1s;
|
|
1221
|
+
-webkit-animation-iteration-count: infinite;
|
|
1222
|
+
-moz-animation-iteration-count: infinite;
|
|
579
1223
|
animation-iteration-count: infinite;
|
|
1224
|
+
-webkit-animation-fill-mode: both;
|
|
1225
|
+
-moz-animation-fill-mode: both;
|
|
580
1226
|
animation-fill-mode: both;
|
|
581
1227
|
}
|
|
582
|
-
|
|
1228
|
+
@keyframes opacity-pulsate-4793665c {
|
|
583
1229
|
0%,
|
|
584
1230
|
100% {
|
|
585
1231
|
opacity: 0.2;
|
|
@@ -588,7 +1234,7 @@
|
|
|
588
1234
|
opacity: 1;
|
|
589
1235
|
}
|
|
590
1236
|
}
|
|
591
|
-
|
|
1237
|
+
@keyframes opacity-pulsate-4793665c {
|
|
592
1238
|
0%,
|
|
593
1239
|
100% {
|
|
594
1240
|
opacity: 0.2;
|
|
@@ -613,10 +1259,11 @@
|
|
|
613
1259
|
transform: translate(0, 0);
|
|
614
1260
|
}
|
|
615
1261
|
10% {
|
|
616
|
-
transform: translate(0, -
|
|
617
|
-
opacity:
|
|
1262
|
+
transform: translate(0, -0.5rem);
|
|
1263
|
+
opacity: 0.9;
|
|
618
1264
|
}
|
|
619
1265
|
}
|
|
1266
|
+
/* stylelint-disable selector-pseudo-class-no-unknown */
|
|
620
1267
|
.dt-leftbar-row[data-v-094eaef1] {
|
|
621
1268
|
--leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);
|
|
622
1269
|
--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);
|
|
@@ -639,14 +1286,14 @@
|
|
|
639
1286
|
--leftbar-row-action-width: var(--dt-size-550);
|
|
640
1287
|
--leftbar-row-action-height: var(--leftbar-row-action-width);
|
|
641
1288
|
position: relative;
|
|
642
|
-
opacity: var(--leftbar-row-opacity);
|
|
643
1289
|
display: flex;
|
|
644
1290
|
background-color: var(--dt-theme-sidebar-row-color-background);
|
|
645
1291
|
border-radius: var(--leftbar-row-radius);
|
|
1292
|
+
cursor: pointer;
|
|
1293
|
+
opacity: var(--leftbar-row-opacity);
|
|
1294
|
+
transition-timing-function: var(--ttf-out-quint);
|
|
646
1295
|
transition-duration: var(--td200);
|
|
647
1296
|
transition-property: background-color, border, box-shadow;
|
|
648
|
-
transition-timing-function: var(--ttf-out-quint);
|
|
649
|
-
cursor: pointer;
|
|
650
1297
|
}
|
|
651
1298
|
.dt-leftbar-row[data-v-094eaef1]:not(.dt-leftbar-row--no-action):hover,
|
|
652
1299
|
.dt-leftbar-row[data-v-094eaef1]:not(.dt-leftbar-row--no-action):focus-within {
|
|
@@ -685,13 +1332,13 @@
|
|
|
685
1332
|
border-bottom-right-radius: var(--dt-size-radius-0);
|
|
686
1333
|
}
|
|
687
1334
|
.dt-leftbar-row__unread-mention-count-badge[data-v-094eaef1] {
|
|
1335
|
+
background-color: var(--dt-color-purple-500);
|
|
688
1336
|
border-top-left-radius: var(--dt-size-radius-0);
|
|
689
1337
|
border-bottom-left-radius: var(--dt-size-radius-0);
|
|
690
|
-
background-color: var(--dt-color-purple-500);
|
|
691
1338
|
}
|
|
692
1339
|
.dt-leftbar-row__unread-mention-only-count-badge[data-v-094eaef1] {
|
|
693
|
-
background-color: var(--dt-color-purple-500);
|
|
694
1340
|
color: var(--dt-color-foreground-primary-inverted);
|
|
1341
|
+
background-color: var(--dt-color-purple-500);
|
|
695
1342
|
}
|
|
696
1343
|
.dt-leftbar-row--muted[data-v-094eaef1] {
|
|
697
1344
|
--leftbar-row-opacity: 60%;
|
|
@@ -708,25 +1355,25 @@
|
|
|
708
1355
|
}
|
|
709
1356
|
.dt-leftbar-row__is-typing[data-v-094eaef1] {
|
|
710
1357
|
--is-typing-size-shape: var(--dt-size-550);
|
|
711
|
-
height: var(--is-typing-size-shape);
|
|
712
|
-
width: var(--is-typing-size-shape);
|
|
713
1358
|
position: absolute;
|
|
714
1359
|
display: flex;
|
|
1360
|
+
gap: var(--dt-space-200);
|
|
715
1361
|
align-items: center;
|
|
716
1362
|
justify-content: center;
|
|
717
|
-
|
|
1363
|
+
width: var(--is-typing-size-shape);
|
|
1364
|
+
height: var(--is-typing-size-shape);
|
|
718
1365
|
border-radius: var(--dt-size-radius-pill);
|
|
719
1366
|
opacity: 0.75;
|
|
720
1367
|
}
|
|
721
1368
|
.dt-leftbar-row__is-typing span[data-v-094eaef1] {
|
|
722
|
-
transition: all 500ms ease;
|
|
723
|
-
background: var(--dt-color-surface-strong);
|
|
724
|
-
height: 4px;
|
|
725
|
-
width: 4px;
|
|
726
1369
|
display: inline-block;
|
|
1370
|
+
width: var(--dt-size-300);
|
|
1371
|
+
height: var(--dt-size-300);
|
|
727
1372
|
padding: 0;
|
|
728
|
-
|
|
1373
|
+
background: var(--dt-color-surface-strong);
|
|
729
1374
|
border-radius: var(--dt-size-radius-pill);
|
|
1375
|
+
opacity: 0.3;
|
|
1376
|
+
transition: all 500ms ease;
|
|
730
1377
|
animation: wave-094eaef1 1.5s ease infinite;
|
|
731
1378
|
}
|
|
732
1379
|
.dt-leftbar-row__is-typing span[data-v-094eaef1]:nth-child(1) {
|
|
@@ -740,20 +1387,20 @@
|
|
|
740
1387
|
}
|
|
741
1388
|
.dt-leftbar-row__primary[data-v-094eaef1] {
|
|
742
1389
|
display: flex;
|
|
743
|
-
align-items: center;
|
|
744
1390
|
flex: 1;
|
|
1391
|
+
align-items: center;
|
|
745
1392
|
width: 100%;
|
|
746
|
-
|
|
747
|
-
|
|
1393
|
+
margin: 0;
|
|
1394
|
+
padding: 0;
|
|
748
1395
|
color: var(--leftbar-row-color-foreground);
|
|
749
|
-
text-decoration: none;
|
|
750
|
-
appearance: none;
|
|
751
1396
|
font-size: inherit;
|
|
752
1397
|
line-height: inherit;
|
|
753
|
-
|
|
1398
|
+
text-align: left;
|
|
1399
|
+
text-decoration: none;
|
|
1400
|
+
background-color: var(--leftbar-row-color-background);
|
|
754
1401
|
border: 0;
|
|
755
|
-
padding: 0;
|
|
756
1402
|
border-radius: var(--leftbar-row-radius);
|
|
1403
|
+
appearance: none;
|
|
757
1404
|
}
|
|
758
1405
|
.dt-leftbar-row__primary[data-v-094eaef1]:active {
|
|
759
1406
|
--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active);
|
|
@@ -762,20 +1409,20 @@
|
|
|
762
1409
|
box-shadow: var(--dt-shadow-focus-inset);
|
|
763
1410
|
}
|
|
764
1411
|
.dt-leftbar-row__action-button[data-v-094eaef1] {
|
|
765
|
-
opacity: 0;
|
|
766
1412
|
width: var(--leftbar-row-action-width);
|
|
767
1413
|
height: var(--leftbar-row-action-height);
|
|
1414
|
+
opacity: 0;
|
|
768
1415
|
}
|
|
769
1416
|
.dt-leftbar-row__alpha[data-v-094eaef1] {
|
|
770
|
-
color: var(--leftbar-row-alpha-color-foreground);
|
|
771
1417
|
display: flex;
|
|
772
|
-
box-sizing: border-box;
|
|
773
|
-
justify-content: center;
|
|
774
1418
|
align-items: center;
|
|
775
|
-
|
|
776
|
-
|
|
1419
|
+
justify-content: center;
|
|
1420
|
+
box-sizing: border-box;
|
|
777
1421
|
width: var(--leftbar-row-alpha-width);
|
|
778
1422
|
height: var(--leftbar-row-alpha-height);
|
|
1423
|
+
padding-right: var(--dt-space-400);
|
|
1424
|
+
padding-left: var(--dt-space-400);
|
|
1425
|
+
color: var(--leftbar-row-alpha-color-foreground);
|
|
779
1426
|
border-radius: var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius);
|
|
780
1427
|
}
|
|
781
1428
|
.dt-leftbar-row__label[data-v-094eaef1] {
|
|
@@ -784,47 +1431,47 @@
|
|
|
784
1431
|
}
|
|
785
1432
|
.dt-leftbar-row__omega[data-v-094eaef1] {
|
|
786
1433
|
position: absolute;
|
|
787
|
-
display: flex;
|
|
788
|
-
right: var(--leftbar-row-action-position-right);
|
|
789
1434
|
top: var(--leftbar-row-action-position-bottom);
|
|
790
|
-
|
|
1435
|
+
right: var(--leftbar-row-action-position-right);
|
|
1436
|
+
display: flex;
|
|
791
1437
|
gap: var(--dt-space-300);
|
|
792
|
-
justify-content: flex-end;
|
|
793
1438
|
align-items: center;
|
|
1439
|
+
justify-content: flex-end;
|
|
794
1440
|
box-sizing: border-box;
|
|
795
1441
|
border-radius: var(--leftbar-row-radius);
|
|
1442
|
+
transform: translateY(calc(var(--leftbar-row-action-position-bottom) * -1));
|
|
796
1443
|
}
|
|
797
1444
|
.dt-leftbar-row__unread-badge[data-v-094eaef1] {
|
|
798
1445
|
display: var(--leftbar-row-unread-badge-display);
|
|
799
1446
|
}
|
|
800
1447
|
.dt-leftbar-row__active-voice[data-v-094eaef1] {
|
|
801
|
-
color: var(--dt-color-purple-400);
|
|
802
1448
|
display: inline-flex;
|
|
1449
|
+
color: var(--dt-color-purple-400);
|
|
803
1450
|
-webkit-animation-name: opacity-pulsate-094eaef1;
|
|
804
|
-
-webkit-animation-duration: 1s;
|
|
805
|
-
-webkit-animation-iteration-count: infinite;
|
|
806
|
-
-webkit-animation-fill-mode: both;
|
|
807
1451
|
-moz-animation-name: opacity-pulsate-094eaef1;
|
|
808
|
-
-moz-animation-duration: 1s;
|
|
809
|
-
-moz-animation-iteration-count: infinite;
|
|
810
|
-
-moz-animation-fill-mode: both;
|
|
811
1452
|
animation-name: opacity-pulsate-094eaef1;
|
|
1453
|
+
-webkit-animation-duration: 1s;
|
|
1454
|
+
-moz-animation-duration: 1s;
|
|
812
1455
|
animation-duration: 1s;
|
|
1456
|
+
-webkit-animation-iteration-count: infinite;
|
|
1457
|
+
-moz-animation-iteration-count: infinite;
|
|
813
1458
|
animation-iteration-count: infinite;
|
|
1459
|
+
-webkit-animation-fill-mode: both;
|
|
1460
|
+
-moz-animation-fill-mode: both;
|
|
814
1461
|
animation-fill-mode: both;
|
|
815
1462
|
}
|
|
816
1463
|
.dt-leftbar-row__dnd[data-v-094eaef1] {
|
|
817
1464
|
padding-top: var(--dt-space-200);
|
|
818
1465
|
padding-right: var(--dt-space-300);
|
|
819
1466
|
color: var(--dt-color-foreground-tertiary);
|
|
1467
|
+
font-weight: var(--dt-font-weight-medium);
|
|
820
1468
|
font-size: var(--dt-font-size-100);
|
|
821
1469
|
line-height: var(--dt-font-line-height-400);
|
|
822
|
-
font-weight: var(--dt-font-weight-medium);
|
|
823
1470
|
}
|
|
824
1471
|
.dt-leftbar-row__container--off-duty[data-v-094eaef1] {
|
|
825
|
-
border-radius: var(--dt-size-radius-500);
|
|
826
1472
|
background-color: var(--dt-badge-color-background-critical);
|
|
827
1473
|
border: var(--dt-size-100) solid var(--dt-color-border-subtle);
|
|
1474
|
+
border-radius: var(--dt-size-radius-500);
|
|
828
1475
|
}
|
|
829
1476
|
.dt-leftbar-row__container--off-duty[data-v-094eaef1] .dt-leftbar-row__primary {
|
|
830
1477
|
margin: calc(var(--dt-size-100) * -1);
|
|
@@ -842,48 +1489,48 @@
|
|
|
842
1489
|
}
|
|
843
1490
|
.dt-leftbar-row[data-v-094eaef1] .dt-leftbar-row__description {
|
|
844
1491
|
display: block;
|
|
1492
|
+
overflow: hidden;
|
|
1493
|
+
color: var(--leftbar-row-description-color-foreground);
|
|
845
1494
|
font-weight: var(--leftbar-row-description-font-weight);
|
|
846
1495
|
font-size: var(--leftbar-row-description-font-size);
|
|
847
1496
|
line-height: var(--leftbar-row-description-line-height);
|
|
848
|
-
color: var(--leftbar-row-description-color-foreground);
|
|
849
|
-
overflow: hidden;
|
|
850
|
-
text-overflow: ellipsis;
|
|
851
1497
|
white-space: nowrap;
|
|
1498
|
+
text-overflow: ellipsis;
|
|
852
1499
|
}
|
|
853
1500
|
.dt-leftbar-row[data-v-094eaef1] .dt-leftbar-row__status {
|
|
854
1501
|
display: block;
|
|
1502
|
+
padding-bottom: var(--dt-space-100);
|
|
1503
|
+
overflow: hidden;
|
|
855
1504
|
color: var(--leftbar-row-status-color-foreground);
|
|
856
1505
|
font-size: var(--leftbar-row-status-font-size);
|
|
857
1506
|
line-height: var(--leftbar-row-status-line-height);
|
|
858
|
-
padding-bottom: var(--dt-space-100);
|
|
859
|
-
overflow: hidden;
|
|
860
|
-
text-overflow: ellipsis;
|
|
861
1507
|
white-space: nowrap;
|
|
1508
|
+
text-overflow: ellipsis;
|
|
862
1509
|
}
|
|
863
|
-
.dt-leftbar-row[data-v-094eaef1] .dt-leftbar-row__meta-context ~ .dt-leftbar-row__meta-custom:not(:empty)
|
|
864
|
-
content: ' • ';
|
|
1510
|
+
.dt-leftbar-row[data-v-094eaef1] .dt-leftbar-row__meta-context ~ .dt-leftbar-row__meta-custom:not(:empty)::before {
|
|
865
1511
|
color: var(--dt-theme-sidebar-status-color-foreground);
|
|
1512
|
+
content: ' • ';
|
|
866
1513
|
}
|
|
867
1514
|
.dt-leftbar-row__icon-cc[data-v-094eaef1] {
|
|
868
|
-
border-radius: var(--dt-size-200);
|
|
869
1515
|
width: calc(var(--dt-size-300) * 3.5);
|
|
870
1516
|
height: calc(var(--dt-size-300) * 3.5);
|
|
1517
|
+
border-radius: var(--dt-size-200);
|
|
871
1518
|
}
|
|
872
1519
|
.opacity-pulsate[data-v-094eaef1] {
|
|
873
1520
|
-webkit-animation-name: opacity-pulsate-094eaef1;
|
|
874
|
-
-webkit-animation-duration: 1s;
|
|
875
|
-
-webkit-animation-iteration-count: infinite;
|
|
876
|
-
-webkit-animation-fill-mode: both;
|
|
877
1521
|
-moz-animation-name: opacity-pulsate-094eaef1;
|
|
878
|
-
-moz-animation-duration: 1s;
|
|
879
|
-
-moz-animation-iteration-count: infinite;
|
|
880
|
-
-moz-animation-fill-mode: both;
|
|
881
1522
|
animation-name: opacity-pulsate-094eaef1;
|
|
1523
|
+
-webkit-animation-duration: 1s;
|
|
1524
|
+
-moz-animation-duration: 1s;
|
|
882
1525
|
animation-duration: 1s;
|
|
1526
|
+
-webkit-animation-iteration-count: infinite;
|
|
1527
|
+
-moz-animation-iteration-count: infinite;
|
|
883
1528
|
animation-iteration-count: infinite;
|
|
1529
|
+
-webkit-animation-fill-mode: both;
|
|
1530
|
+
-moz-animation-fill-mode: both;
|
|
884
1531
|
animation-fill-mode: both;
|
|
885
1532
|
}
|
|
886
|
-
|
|
1533
|
+
@keyframes opacity-pulsate-094eaef1 {
|
|
887
1534
|
0%,
|
|
888
1535
|
100% {
|
|
889
1536
|
opacity: 0.2;
|
|
@@ -892,7 +1539,7 @@
|
|
|
892
1539
|
opacity: 1;
|
|
893
1540
|
}
|
|
894
1541
|
}
|
|
895
|
-
|
|
1542
|
+
@keyframes opacity-pulsate-094eaef1 {
|
|
896
1543
|
0%,
|
|
897
1544
|
100% {
|
|
898
1545
|
opacity: 0.2;
|
|
@@ -917,8 +1564,8 @@
|
|
|
917
1564
|
transform: translate(0, 0);
|
|
918
1565
|
}
|
|
919
1566
|
10% {
|
|
920
|
-
transform: translate(0, -
|
|
921
|
-
opacity:
|
|
1567
|
+
transform: translate(0, -0.5rem);
|
|
1568
|
+
opacity: 0.9;
|
|
922
1569
|
}
|
|
923
1570
|
}
|
|
924
1571
|
.dt-recipe-callbox[data-v-ef08f46e] {
|
|
@@ -1129,12 +1776,11 @@
|
|
|
1129
1776
|
border-color: var(--dt-color-border-default);
|
|
1130
1777
|
cursor: text;
|
|
1131
1778
|
}
|
|
1132
|
-
.dt-message-input
|
|
1779
|
+
.dt-message-input:focus-within {
|
|
1133
1780
|
border-color: var(--dt-color-border-bold);
|
|
1134
1781
|
box-shadow: var(--dt-shadow-small);
|
|
1135
1782
|
}
|
|
1136
1783
|
.dt-message-input__editor-wrapper {
|
|
1137
|
-
overflow: auto;
|
|
1138
1784
|
padding: var(--dt-space-400) var(--dt-space-500) var(--dt-space-300);
|
|
1139
1785
|
}
|
|
1140
1786
|
.dt-message-input__remaining-char-tooltip {
|