@37signals/lexxy 0.7.6-beta → 0.8.0-beta

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.
@@ -6,7 +6,6 @@
6
6
  @supports (min-block-size: attr(rows lh)) {
7
7
  --lexxy-editor-rows: attr(rows lh, 8lh);
8
8
  }
9
-
10
9
  --lexxy-toolbar-gap: 2px;
11
10
  --lexxy-toolbar-spacing: 0.5ch;
12
11
 
@@ -35,7 +34,7 @@
35
34
  outline-offset: var(--lexxy-focus-ring-offset);
36
35
  }
37
36
  }
38
-
37
+
39
38
  summary {
40
39
  list-style: none;
41
40
 
@@ -65,13 +64,13 @@
65
64
  }
66
65
 
67
66
  .node--selected {
68
- &:has(img) img,
69
- &:not(:has(img)) {
70
- outline: var(--lexxy-focus-ring-size) solid var(--lexxy-focus-ring-color);
71
- outline-offset: var(--lexxy-focus-ring-offset);
72
- }
67
+ outline: var(--lexxy-focus-ring-size) solid var(--lexxy-focus-ring-color);
68
+ outline-offset: var(--lexxy-focus-ring-offset);
73
69
  }
74
70
 
71
+ /* Tables */
72
+ /* ------------------------------------------------------------------------ */
73
+
75
74
  table {
76
75
  th, td {
77
76
  position: relative;
@@ -145,7 +144,7 @@
145
144
  }
146
145
  &[data-action="toggle"] {
147
146
  background-color: var(--lexxy-color-table-cell-toggle);
148
-
147
+
149
148
  &:after { box-shadow: 0 0 0 0 transparent; }
150
149
  }
151
150
  }
@@ -173,9 +172,106 @@
173
172
  }
174
173
  }
175
174
 
175
+ [data-lexical-linebreak] {
176
+ block-size: 0;
177
+ display: contents;
178
+ inline-size: 0;
179
+ }
180
+
181
+ /* Attachments */
182
+ /* ------------------------------------------------------------------------ */
183
+
176
184
  action-text-attachment {
177
185
  cursor: pointer;
178
186
  }
187
+
188
+ .attachment:hover:not(.node--selected) {
189
+ outline: var(--lexxy-focus-ring-size) solid color-mix(in oklch, var(--lexxy-focus-ring-color) 30%, transparent);
190
+ outline-offset: var(--lexxy-focus-ring-offset);
191
+ }
192
+
193
+ /* Image galleries */
194
+ /* ------------------------------------------------------------------------ */
195
+
196
+ .attachment-gallery {
197
+ --lexxy-attachment-gallery-columns: 3;
198
+ --lexxy-attachment-gallery-gap: 0.4ch;
199
+ --lexxy-focus-ring-offset: -6px;
200
+
201
+ display: block;
202
+ padding: 0;
203
+
204
+ .attachment {
205
+ box-sizing: border-box;
206
+ display: inline-flex;
207
+ flex-direction: column;
208
+ gap: 0;
209
+ inline-size: calc(100% / var(--lexxy-attachment-gallery-columns) - var(--lexxy-attachment-gallery-gap) * 2);
210
+ margin: var(--lexxy-attachment-gallery-gap);
211
+ padding: 0;
212
+ padding-block-end: var(--lexxy-attachment-gap);
213
+ vertical-align: top;
214
+
215
+ .attachment__container {
216
+ display: block;
217
+ margin: 0;
218
+ padding: 1ch;
219
+ padding-block-end: 0;
220
+ }
221
+
222
+ img {
223
+ block-size: auto;
224
+ box-sizing: border-box;
225
+ inline-size: auto;
226
+ margin: auto;
227
+ max-block-size: 50rem;
228
+ max-inline-size: 100%;
229
+ object-fit: contain;
230
+ }
231
+ }
232
+
233
+ &:has(> .attachment:nth-child(2):last-of-type),
234
+ &:has(> .attachment:nth-child(4):last-of-type) {
235
+ --lexxy-attachment-gallery-columns: 2;
236
+ }
237
+ }
238
+
239
+ .attachment__caption {
240
+ padding: 0 1ch;
241
+
242
+ textarea {
243
+ background: transparent;
244
+ block-size: fit-content;
245
+ border: 0;
246
+ border-radius: var(--lexxy-radius);
247
+ box-sizing: border-box;
248
+ color: inherit;
249
+ display: block;
250
+ font-size: inherit;
251
+ font-family: inherit;
252
+ inline-size: 100%;
253
+ max-inline-size: 100%;
254
+ resize: none;
255
+ text-align: center;
256
+ padding: 1ch 0;
257
+
258
+ &:focus {
259
+ background: var(--lexxy-color-canvas);
260
+ outline: 0;
261
+ }
262
+
263
+ &:placeholder-shown {
264
+ overflow: hidden;
265
+ text-overflow: ellipsis;
266
+ white-space: nowrap;
267
+ }
268
+
269
+ @supports (field-sizing: content) {
270
+ field-sizing: content;
271
+ inline-size: 100%;
272
+ }
273
+ }
274
+ }
179
275
  }
180
276
 
181
277
  /* Placeholder */
@@ -221,7 +317,7 @@
221
317
  /* Toolbar */
222
318
 
223
319
  :where(lexxy-toolbar) {
224
- --lexxy-toolbar-icon-size: 1em;
320
+ --lexxy-toolbar-icon-size: 1.125em;
225
321
 
226
322
  border-block-end: 1px solid var(--lexxy-color-ink-lighter);
227
323
  color: currentColor;
@@ -235,41 +331,61 @@
235
331
  &[data-attachments="false"] button[name="upload"]{
236
332
  display: none;
237
333
  }
238
- }
334
+
335
+ .lexxy-editor__toolbar-button {
336
+ aspect-ratio: 1;
337
+ block-size: var(--lexxy-toolbar-button-size);
338
+ border: 0;
339
+ border-radius: var(--lexxy-radius);
340
+ color: currentColor;
341
+ display: grid;
342
+ line-height: inherit;
343
+ place-items: center;
239
344
 
240
- :where(.lexxy-editor__toolbar-button) {
241
- aspect-ratio: 1;
242
- block-size: var(--lexxy-toolbar-button-size);
243
- color: currentColor;
244
- display: grid;
245
- place-items: center;
345
+ &:is(:active):not([aria-disabled="true"]),
346
+ &[aria-pressed="true"] {
347
+ background-color: var(--lexxy-color-selected);
246
348
 
247
- &:is(:active):not([aria-disabled="true"]),
248
- &[aria-pressed="true"] {
249
- background-color: var(--lexxy-color-selected);
349
+ &:hover {
350
+ background-color: var(--lexxy-color-selected-hover);
351
+ }
352
+ }
250
353
 
251
- &:hover {
252
- background-color: var(--lexxy-color-selected-hover);
354
+ &[aria-disabled="true"] {
355
+ cursor: default;
356
+ opacity: 0.3;
253
357
  }
254
- }
255
358
 
256
- &[aria-disabled="true"] {
257
- cursor: default;
258
- opacity: 0.3;
259
- }
359
+ svg {
360
+ -webkit-touch-callout: none;
361
+ block-size: var(--lexxy-toolbar-icon-size);
362
+ fill: currentColor;
363
+ grid-area: 1/1;
364
+ inline-size: var(--lexxy-toolbar-icon-size);
365
+ user-select: none;
366
+ }
260
367
 
261
- svg {
262
- -webkit-touch-callout: none;
263
- block-size: var(--lexxy-toolbar-icon-size);
264
- fill: currentColor;
265
- grid-area: 1/1;
266
- inline-size: var(--lexxy-toolbar-icon-size);
267
- user-select: none;
368
+ &.lexxy-editor__toolbar-group-end {
369
+ position: relative;
370
+ margin-inline-end: calc(var(--lexxy-toolbar-spacing) + 1px);
371
+
372
+ &:after {
373
+ background-color: var(--lexxy-color-ink-lighter);
374
+ content: "";
375
+ display: block;
376
+ width: 1px;
377
+ height: 60%;
378
+ inset-inline-end: calc(-1 * var(--lexxy-toolbar-spacing));
379
+ inset-block-start: 20%;
380
+ position: absolute;
381
+ pointer-events: none;
382
+ }
383
+ }
268
384
  }
269
- }
270
385
 
271
- :where(.lexxy-editor__toolbar-spacer) {
272
- flex: 1;
386
+ .lexxy-editor__toolbar-spacer {
387
+ flex: 1;
388
+ }
273
389
  }
274
390
 
275
391
  /* --------------------------------------------------------------------------
@@ -303,7 +419,7 @@
303
419
  background-color: var(--lexxy-color-selected-hover);
304
420
  }
305
421
  }
306
-
422
+
307
423
  [overflowing] &:not(.lexxy-editor__toolbar-overflow) summary ~ * {
308
424
  inset-inline-end: var(--lexxy-toolbar-spacing);
309
425
  inset-inline-start: var(--lexxy-toolbar-spacing);
@@ -317,6 +433,7 @@
317
433
  }
318
434
  }
319
435
 
436
+
320
437
  /* --------------------------------------------------------------------------
321
438
  /* Overflow menu */
322
439
 
@@ -324,7 +441,7 @@
324
441
  display: none;
325
442
  justify-self: flex-end;
326
443
  z-index: 1;
327
-
444
+
328
445
  summary ~ * {
329
446
  border-start-end-radius: 0;
330
447
  display: grid;
@@ -333,6 +450,7 @@
333
450
  }
334
451
  }
335
452
 
453
+
336
454
  /* --------------------------------------------------------------------------
337
455
  /* Link dropdown */
338
456
 
@@ -392,6 +510,7 @@
392
510
  }
393
511
  }
394
512
 
513
+
395
514
  /* --------------------------------------------------------------------------
396
515
  /* Color dropdown */
397
516
 
@@ -442,7 +561,7 @@
442
561
  &[aria-pressed="true"] {
443
562
  background-color: transparent;
444
563
  box-shadow: 0 0 0 2px currentColor inset;
445
-
564
+
446
565
  &:after {
447
566
  content: "✓";
448
567
  }
@@ -457,211 +576,237 @@
457
576
  display: none;
458
577
  }
459
578
  }
460
-
461
- [overflowing] & {
462
- .lexxy-highlight-colors {
463
- button {
464
- }
465
- }
466
- }
467
579
  }
468
580
  }
469
581
 
470
- /* Table Tools
471
- /* -------------------------------------------------------------------------- */
472
-
473
- :where(lexxy-table-tools) {
582
+ /* --------------------------------------------------------------------------
583
+ /* Floating controls */
584
+ :where(.lexxy-floating-controls) {
474
585
  --button-size: 2.3lh;
475
586
  --table-tools-radius: calc(var(--lexxy-radius) * 1.5);
476
587
 
477
588
  color: var(--lexxy-color-ink-inverted);
478
- display: none;
479
- flex-direction: row;
480
589
  font-size: var(--lexxy-text-small);
481
- gap: 0.25ch;
482
- inset-inline-start: var(--lexxy-editor-padding);
483
590
  line-height: 1;
484
591
  position: absolute;
485
- transform: translate(-50%, -120%);
486
592
  z-index: 2;
487
593
 
488
- .lexxy-table-control {
489
- align-items: stretch;
490
- background-color: var(--lexxy-color-ink);
491
- border-radius: var(--table-tools-radius);
594
+ button,
595
+ summary {
596
+ align-items: center;
597
+ background: transparent;
598
+ block-size: var(--button-size);
599
+ color: var(--lexxy-color-ink-inverted);
492
600
  display: flex;
493
- flex-direction: row;
494
- gap: 0.25ch;
495
- padding: 0.25ch;
496
- white-space: nowrap;
497
-
498
- button,
499
- summary {
500
- align-items: center;
501
- background-color: transparent;
502
- border: 0;
503
- border-radius: var(--lexxy-radius);
504
- color: var(--lexxy-color-ink-inverted);
505
- cursor: pointer;
506
- display: flex;
507
- justify-content: center;
508
- line-height: 1;
509
- min-block-size: var(--button-size);
510
- min-inline-size: var(--button-size);
511
- user-select: none;
512
- -webkit-user-select: none;
601
+ justify-content: center;
602
+ line-height: 1;
603
+ min-block-size: var(--button-size);
604
+ min-inline-size: var(--button-size);
605
+ user-select: none;
606
+ -webkit-user-select: none;
513
607
 
514
- &:hover,
608
+ @media(any-hover: hover) {
609
+ &:hover:not([aria-disabled="true"]),
515
610
  [open] &:is(summary) {
516
- background-color: var(--lexxy-color-ink-medium);
611
+ background: var(--lexxy-color-ink-medium);
612
+
613
+ svg {
614
+ opacity: 1;
615
+ }
517
616
  }
518
617
 
519
618
  &:focus-visible {
520
619
  outline-color: var(--lexxy-focus-ring-color);
521
620
  }
522
621
  }
622
+ }
523
623
 
524
- button {
525
- aspect-ratio: 1 / 1;
526
- font-weight: bold;
527
-
528
- svg {
529
- block-size: 1em;
530
- inline-size: 1em;
531
- fill: currentColor;
532
- opacity: 0.8;
533
- padding: 1px; /* Fixes weird Safari SVG clipping issue */
534
- }
624
+ button {
625
+ aspect-ratio: 1 / 1;
626
+ font-weight: bold;
535
627
 
536
- span {
537
- display: none;
538
- }
628
+ svg {
629
+ block-size: 1.125em;
630
+ inline-size: 1.125em;
631
+ fill: currentColor;
632
+ opacity: 0.8;
633
+ padding: 1px; /* Fixes weird Safari SVG clipping issue */
539
634
  }
540
635
 
541
- summary {
542
- border: 1px solid var(--lexxy-color-ink-medium);
543
- padding: 0 1.25ch;
636
+ span {
637
+ display: none;
544
638
  }
639
+ }
545
640
 
546
- .lexxy-table-control__more-menu {
547
- gap: 0;
548
- position: relative;
549
-
550
- .lexxy-table-control__more-menu-details {
551
- background: var(--lexxy-color-ink);
552
- border-radius: var(--table-tools-radius);
553
- display: flex;
554
- flex-direction: column;
555
- gap: 0.25ch;
556
- inset-block-start: 110%;
557
- inset-inline-start: 50%;
558
- padding: 0.25ch;
559
- position: absolute;
560
- transform: translateX(-50%);
561
-
562
- button {
563
- aspect-ratio: unset;
564
- flex-direction: row;
565
- font-weight: normal;
566
- gap: 1ch;
567
- justify-content: flex-start;
568
- padding: 0.75ch;
569
- padding-inline-end: 1.5ch;
570
- white-space: nowrap;
571
-
572
- span {
573
- display: inline-block;
574
- }
575
-
576
- svg {
577
- block-size: 1.3lh;
578
- inline-size: 1.3lh;
579
- fill: currentColor;
641
+ summary {
642
+ box-shadow: 0 0 0 1px inset rgba(128, 128, 128, 0.3);
643
+ padding: 0 1.25ch;
644
+ }
645
+
646
+ .lexxy-floating-controls__group {
647
+ background-color: var(--lexxy-color-ink);
648
+ border-radius: var(--table-tools-radius);
649
+ padding: 0.25ch;
650
+ }
651
+
652
+
653
+ /* --------------------------------------------------------------------------
654
+ /* Table Tools */
655
+
656
+ &:is(lexxy-table-tools) {
657
+ flex-direction: row;
658
+ gap: 0.25ch;
659
+ inset-inline-start: var(--lexxy-editor-padding);
660
+ transform: translate(-50%, -120%);
661
+
662
+ .lexxy-table-control {
663
+ align-items: stretch;
664
+ display: flex;
665
+ flex-direction: row;
666
+ gap: 0.25ch;
667
+ white-space: nowrap;
668
+
669
+ .lexxy-table-control__more-menu {
670
+ gap: 0;
671
+ position: relative;
672
+
673
+ .lexxy-table-control__more-menu-details {
674
+ background: var(--lexxy-color-ink);
675
+ border-radius: var(--table-tools-radius);
676
+ display: flex;
677
+ flex-direction: column;
678
+ gap: 0.25ch;
679
+ inset-block-start: 110%;
680
+ inset-inline-start: 50%;
681
+ padding: 0.25ch;
682
+ position: absolute;
683
+ transform: translateX(-50%);
684
+
685
+ button {
686
+ aspect-ratio: unset;
687
+ flex-direction: row;
688
+ font-weight: normal;
689
+ gap: 1ch;
690
+ justify-content: flex-start;
691
+ padding: 0.75ch;
692
+ padding-inline-end: 1.5ch;
693
+ white-space: nowrap;
694
+
695
+ span {
696
+ display: inline-block;
697
+ }
698
+
699
+ svg {
700
+ block-size: 1.3lh;
701
+ inline-size: 1.3lh;
702
+ fill: currentColor;
703
+ }
580
704
  }
581
705
  }
582
706
  }
583
- }
584
-
585
- .lexxy-table-control__button--delete-table {
586
- align-items: center;
587
- aspect-ratio: unset;
588
- block-size: auto;
589
- font-weight: normal;
590
- justify-content: center;
591
- padding: 0 1ch;
592
-
593
- svg {
594
- min-block-size: 1em;
595
- min-inline-size: 1em;
596
- }
597
707
 
598
- span {
708
+ .lexxy-table-control__button--delete-table {
599
709
  align-items: center;
600
- background: var(--lexxy-color-ink);
601
- border-radius: var(--table-tools-radius);
602
- color: color-mix(in srgb, var(--lexxy-color-ink-inverted) 80%, transparent);
603
- display: flex;
604
- inset-inline-end: calc(var(--button-size) + 1ch);
605
- inset-block-start: 0;
606
- inset-block-end: 0;
607
- inset-inline-start: 0;
710
+ block-size: auto;
711
+ font-weight: normal;
608
712
  justify-content: center;
609
- padding: 0.5ch 1ch;
610
- position: absolute;
611
- transition: all 0.2s ease-out;
612
- opacity: 0;
613
- pointer-events: none;
614
- white-space: nowrap;
615
- }
616
713
 
617
- &:hover {
618
- background-color: var(--lexxy-color-red);
619
-
620
- svg { color: var(--lexxy-color-ink-inverted); }
714
+ svg {
715
+ block-size: 1.125em;
716
+ inline-size: 1.125em;
717
+ min-block-size: 1.125em;
718
+ min-inline-size: 1.125em;
719
+ }
621
720
 
622
721
  span {
623
- opacity: 1;
722
+ align-items: center;
723
+ background: var(--lexxy-color-ink);
724
+ border-radius: var(--table-tools-radius);
725
+ color: color-mix(in srgb, var(--lexxy-color-ink-inverted) 80%, transparent);
726
+ display: flex;
727
+ inset-inline-end: calc(var(--button-size) + 1ch);
728
+ inset-block-start: 0;
729
+ inset-block-end: 0;
730
+ inset-inline-start: 0;
731
+ justify-content: center;
732
+ padding: 0.5ch 1ch;
733
+ position: absolute;
734
+ transition: all 0.2s ease-out;
735
+ opacity: 0;
736
+ pointer-events: none;
737
+ white-space: nowrap;
738
+ }
739
+
740
+ &:hover {
741
+ background-color: var(--lexxy-color-red);
742
+
743
+ svg { color: var(--lexxy-color-ink-inverted); }
744
+
745
+ span {
746
+ opacity: 1;
747
+ }
624
748
  }
625
749
  }
626
750
  }
627
751
  }
628
- }
629
752
 
630
753
 
631
- /* Language picker
632
- /* -------------------------------------------------------------------------- */
754
+ /* --------------------------------------------------------------------------
755
+ /* Attachment delete button */
633
756
 
634
- :where(lexxy-code-language-picker) {
635
- inset-inline-end: var(--lexxy-editor-padding);
636
- position: absolute;
757
+ &:is(lexxy-node-delete-button) {
758
+ inset-block-start: 0.5ch;
759
+ inset-inline-end: 0.5ch;
760
+ opacity: 0;
761
+ pointer-events: none;
762
+ transition: opacity 0.1s ease-in-out;
763
+
764
+ .node--selected & {
765
+ opacity: 1;
766
+ pointer-events: auto;
767
+ }
768
+
769
+ .lexxy-node-delete:hover {
770
+ background-color: var(--lexxy-color-red);
771
+ }
772
+ }
637
773
 
638
- select {
639
- -webkit-appearance: none;
640
- appearance: none;
641
- background-color: var(--lexxy-color-canvas);
642
- background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 19.5c-.7 0-1.3-.3-1.7-.8l-9.8-11.1c-.7-.8-.6-1.9.2-2.6.8-.6 1.9-.6 2.5.2l8.6 9.8c0 .1.2.1.4 0l8.6-9.8c.7-.8 1.8-.9 2.6-.2s.9 1.8.2 2.6l-9.8 11.1c-.4.5-1.1.8-1.7.8z' fill='%23000'/%3E%3C/svg%3E");
643
- background-position: center right 1ch;
644
- background-repeat: no-repeat;
645
- background-size: 1ch;
646
- block-size: 1.5lh;
647
- border: 1px solid var(--lexxy-color-ink-lighter);
648
- border-radius: var(--lexxy-radius);
649
- color: var(--lexxy-color-ink);
650
- font-family: var(--lexxy-font-base);
651
- font-size: var(--lexxy-text-small);
652
- font-weight: normal;
653
- margin: 0.5ch 0.5ch 0 -0.5ch;
654
- padding: 0 2ch 0 1ch;
655
- text-align: start;
656
774
 
657
- @media (prefers-color-scheme: dark) {
658
- background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 19.5c-.7 0-1.3-.3-1.7-.8l-9.8-11.1c-.7-.8-.6-1.9.2-2.6.8-.6 1.9-.6 2.5.2l8.6 9.8c0 .1.2.1.4 0l8.6-9.8c.7-.8 1.8-.9 2.6-.2s.9 1.8.2 2.6l-9.8 11.1c-.4.5-1.1.8-1.7.8z' fill='%23fff'/%3E%3C/svg%3E");
775
+ /* --------------------------------------------------------------------------
776
+ /* Language picker */
777
+
778
+ &:is(lexxy-code-language-picker) {
779
+ inset-inline-end: var(--lexxy-editor-padding);
780
+
781
+ select {
782
+ -webkit-appearance: none;
783
+ appearance: none;
784
+ background-color: var(--lexxy-color-canvas);
785
+ background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 19.5c-.7 0-1.3-.3-1.7-.8l-9.8-11.1c-.7-.8-.6-1.9.2-2.6.8-.6 1.9-.6 2.5.2l8.6 9.8c0 .1.2.1.4 0l8.6-9.8c.7-.8 1.8-.9 2.6-.2s.9 1.8.2 2.6l-9.8 11.1c-.4.5-1.1.8-1.7.8z' fill='%23000'/%3E%3C/svg%3E");
786
+ background-position: center right 1ch;
787
+ background-repeat: no-repeat;
788
+ background-size: 1ch;
789
+ block-size: 1.5lh;
790
+ border: 1px solid var(--lexxy-color-ink-lighter);
791
+ border-radius: var(--lexxy-radius);
792
+ color: var(--lexxy-color-ink);
793
+ font-family: var(--lexxy-font-base);
794
+ font-size: var(--lexxy-text-small);
795
+ font-weight: normal;
796
+ margin: 0.5ch 0.5ch 0 -0.5ch;
797
+ padding: 0 2ch 0 1ch;
798
+ text-align: start;
799
+
800
+ @media (prefers-color-scheme: dark) {
801
+ background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 19.5c-.7 0-1.3-.3-1.7-.8l-9.8-11.1c-.7-.8-.6-1.9.2-2.6.8-.6 1.9-.6 2.5.2l8.6 9.8c0 .1.2.1.4 0l8.6-9.8c.7-.8 1.8-.9 2.6-.2s.9 1.8.2 2.6l-9.8 11.1c-.4.5-1.1.8-1.7.8z' fill='%23fff'/%3E%3C/svg%3E");
802
+ }
659
803
  }
660
804
  }
661
805
  }
662
806
 
663
- /* Prompt
664
- /* ------------------------------------------------------------------------ */
807
+
808
+ /* --------------------------------------------------------------------------
809
+ /* Prompt */
665
810
 
666
811
  :where(.lexxy-prompt-menu) {
667
812
  --lexxy-prompt-avatar-size: 24px;