@opengeni/react 3.7.0-canary.0 → 3.7.0-canary.1
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/artifacts.js +24 -5
- package/dist/artifacts.js.map +1 -1
- package/dist/{browser-viewer-E5DDEFQ4.js → browser-viewer-NTD6UIPR.js} +3 -3
- package/dist/{chunk-W2RGYBCV.js → chunk-24M4YBCL.js} +4 -4
- package/dist/{chunk-DOK4KZF2.js → chunk-5IXTJTK3.js} +1322 -392
- package/dist/chunk-5IXTJTK3.js.map +1 -0
- package/dist/chunk-5PQJOCX5.js +902 -0
- package/dist/chunk-5PQJOCX5.js.map +1 -0
- package/dist/{chunk-R55HFTT3.js → chunk-INGB2N5R.js} +4305 -4019
- package/dist/chunk-INGB2N5R.js.map +1 -0
- package/dist/{chunk-FJBOU2TH.js → chunk-MOWYEBCQ.js} +1728 -12
- package/dist/chunk-MOWYEBCQ.js.map +1 -0
- package/dist/chunk-PAJU5KKL.js +331 -0
- package/dist/chunk-PAJU5KKL.js.map +1 -0
- package/dist/{chunk-VTOREEXF.js → chunk-PLYRL5ER.js} +24 -2
- package/dist/{chunk-VTOREEXF.js.map → chunk-PLYRL5ER.js.map} +1 -1
- package/dist/{chunk-YVCHAQZY.js → chunk-ZFOFY5ST.js} +27 -349
- package/dist/chunk-ZFOFY5ST.js.map +1 -0
- package/dist/components/artifacts/published-html-artifact-frame.d.ts +3 -2
- package/dist/components/session-chrome.d.ts +37 -4
- package/dist/components/session-commands-panel.d.ts +6 -0
- package/dist/components/session-conversation.d.ts +14 -0
- package/dist/components/timeline-anchor.d.ts +21 -0
- package/dist/composer.js +2 -3
- package/dist/conversation-timeline.d.ts +5 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +716 -914
- package/dist/index.js.map +1 -1
- package/dist/interaction.js +2 -2
- package/dist/lib/format.d.ts +5 -0
- package/dist/machines.js +3 -2
- package/dist/session-ui.d.ts +3 -0
- package/dist/session-ui.js +14 -4
- package/dist/session.js +19 -19
- package/dist/timeline/types.d.ts +3 -1
- package/package.json +2 -2
- package/src/components/artifacts/published-html-artifact-frame.tsx +27 -4
- package/src/components/machine-input-display.ts +6 -0
- package/src/components/message-timeline.tsx +320 -197
- package/src/components/session-chrome.tsx +498 -125
- package/src/components/session-commands-panel.tsx +113 -0
- package/src/components/session-conversation.tsx +141 -0
- package/src/components/timeline-anchor.tsx +91 -0
- package/src/conversation-timeline.ts +83 -0
- package/src/hooks/use-session-background-commands.ts +21 -10
- package/src/hooks/use-session-events.ts +36 -14
- package/src/hooks/use-session.ts +23 -2
- package/src/index.ts +4 -0
- package/src/lib/format.ts +32 -0
- package/src/session-ui.ts +3 -0
- package/src/timeline/projection.ts +6 -12
- package/src/timeline/types.ts +4 -0
- package/styles/compiled.css +495 -411
- package/styles/index.css +23 -0
- package/dist/chunk-7EAFGICR.js +0 -302
- package/dist/chunk-7EAFGICR.js.map +0 -1
- package/dist/chunk-C6WDLHBA.js +0 -2590
- package/dist/chunk-C6WDLHBA.js.map +0 -1
- package/dist/chunk-DOK4KZF2.js.map +0 -1
- package/dist/chunk-FJBOU2TH.js.map +0 -1
- package/dist/chunk-R55HFTT3.js.map +0 -1
- package/dist/chunk-YVCHAQZY.js.map +0 -1
- /package/dist/{browser-viewer-E5DDEFQ4.js.map → browser-viewer-NTD6UIPR.js.map} +0 -0
- /package/dist/{chunk-W2RGYBCV.js.map → chunk-24M4YBCL.js.map} +0 -0
package/styles/compiled.css
CHANGED
|
@@ -485,99 +485,466 @@
|
|
|
485
485
|
--animate-og-markdown-settle: og-markdown-settle var(--_og-duration-markdown-crystallize)
|
|
486
486
|
var(--og-ease-stream) both;
|
|
487
487
|
}
|
|
488
|
-
:where(.og-root)
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
:
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
:
|
|
495
|
-
|
|
488
|
+
:where(.og-root) {
|
|
489
|
+
color-scheme: var(--_og-color-scheme, dark);
|
|
490
|
+
}
|
|
491
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
492
|
+
:where(.og-root) {
|
|
493
|
+
--_og-color-accent-soft: var(--og-color-accent-soft, color-mix(in oklch, var(--og-color-accent) 16%, transparent));
|
|
494
|
+
--_og-color-diff-add-bg: var(--og-color-diff-add-bg, color-mix(in oklch, var(--og-color-status-idle) 14%, transparent));
|
|
495
|
+
--_og-color-diff-del-bg: var(--og-color-diff-del-bg, color-mix(in oklch, var(--og-color-status-failed) 14%, transparent));
|
|
496
|
+
--_og-shadow-glow: var(--og-shadow-glow, 0 0 24px color-mix(in oklch, var(--og-color-accent) 18%, transparent));
|
|
497
|
+
--_og-session-chrome-surface: var(--og-session-chrome-surface, color-mix(in oklch, var(--og-color-surface-2) 82%, transparent));
|
|
498
|
+
--_og-session-chrome-surface-open: var(--og-session-chrome-surface-open, color-mix(in oklch, var(--og-color-surface-2) 92%, transparent));
|
|
499
|
+
--_og-session-chrome-border: var(--og-session-chrome-border, color-mix(in oklch, var(--og-color-border) 85%, transparent));
|
|
500
|
+
--_og-session-chrome-highlight-ring: var(--og-session-chrome-highlight-ring, color-mix(in oklch, var(--og-color-fg) 16%, transparent));
|
|
501
|
+
--_og-session-chrome-row-hover: var(--og-session-chrome-row-hover, color-mix(in oklch, var(--og-color-surface-3) 55%, transparent));
|
|
496
502
|
}
|
|
497
|
-
|
|
498
|
-
|
|
503
|
+
}
|
|
504
|
+
:where([data-og-density="compact"]):where(.og-root),:where([data-og-density="compact"]):has(:where(.og-root)),:where(.og-root) :where([data-og-density="compact"]),:where( .og-density-compact):where(.og-root),:where( .og-density-compact):has(:where(.og-root)),:where(.og-root) :where( .og-density-compact) {
|
|
505
|
+
--og-font-size-xs: 10px;
|
|
506
|
+
--og-line-height-xs: 1.5;
|
|
507
|
+
--og-font-size-sm: 11px;
|
|
508
|
+
--og-line-height-sm: 1.5;
|
|
509
|
+
--og-font-size-base: 12px;
|
|
510
|
+
--og-line-height-base: 1.55;
|
|
511
|
+
--og-font-size-md: 13px;
|
|
512
|
+
--og-line-height-md: 1.6;
|
|
513
|
+
--og-font-size-control: 11px;
|
|
514
|
+
--og-line-height-control: 16px;
|
|
515
|
+
--og-font-size-menu: 12px;
|
|
516
|
+
--og-line-height-menu: 18px;
|
|
517
|
+
--og-font-size-composer: 13px;
|
|
518
|
+
--og-line-height-composer: 20px;
|
|
519
|
+
--og-font-size-composer-wide: 13px;
|
|
520
|
+
--og-line-height-composer-wide: 20px;
|
|
521
|
+
--og-model-picker-trigger-height: 1.75rem;
|
|
522
|
+
--og-model-picker-trigger-height-mobile: 1.75rem;
|
|
523
|
+
--og-model-picker-menu-width: 15rem;
|
|
524
|
+
--og-model-picker-menu-padding: 0.25rem;
|
|
525
|
+
--og-model-picker-row-padding-x: 0.5rem;
|
|
526
|
+
--og-model-picker-row-padding-y: 0.375rem;
|
|
527
|
+
--og-model-picker-effort-height: 1.75rem;
|
|
528
|
+
--og-realtime-menu-width: 15rem;
|
|
529
|
+
}
|
|
530
|
+
:where([data-og-theme="light"]):where(.og-root),:where([data-og-theme="light"]):has(:where(.og-root)),:where(.og-root) :where([data-og-theme="light"]),:where( .og-light):where(.og-root),:where( .og-light):has(:where(.og-root)),:where(.og-root) :where( .og-light) {
|
|
531
|
+
--og-color-bg: oklch(0.978 0.003 260);
|
|
532
|
+
--og-color-surface-1: oklch(1 0 0);
|
|
533
|
+
--og-color-surface-2: oklch(0.962 0.004 260);
|
|
534
|
+
--og-color-surface-3: oklch(0.935 0.006 260);
|
|
535
|
+
--og-color-border: oklch(0.9 0.006 260);
|
|
536
|
+
--og-color-border-strong: oklch(0.8 0.01 260);
|
|
537
|
+
--og-color-fg: oklch(0.21 0.015 260);
|
|
538
|
+
--og-color-fg-muted: oklch(0.46 0.014 260);
|
|
539
|
+
--og-color-fg-subtle: oklch(0.5 0.012 260);
|
|
540
|
+
--og-color-accent: oklch(0.55 0.18 255);
|
|
541
|
+
--og-color-accent-strong: oklch(0.48 0.19 255);
|
|
542
|
+
--og-color-accent-deep: oklch(0.44 0.19 255);
|
|
543
|
+
--og-color-accent-fg: oklch(0.985 0.005 260);
|
|
544
|
+
--og-color-accent-soft: var(--og-color-accent);
|
|
545
|
+
--og-color-status-queued: oklch(0.55 0.03 260);
|
|
546
|
+
--og-color-status-running: oklch(0.48 0.13 80);
|
|
547
|
+
--og-color-status-idle: oklch(0.49 0.13 155);
|
|
548
|
+
--og-color-status-waiting: oklch(0.54 0.15 305);
|
|
549
|
+
--og-color-status-failed: oklch(0.5 0.19 22);
|
|
550
|
+
--og-color-status-cancelled: oklch(0.55 0.025 260);
|
|
551
|
+
--og-color-danger: oklch(0.54 0.2 22);
|
|
552
|
+
--og-color-diff-add-bg: var(--og-color-status-idle);
|
|
553
|
+
--og-color-diff-del-bg: var(--og-color-status-failed);
|
|
554
|
+
--og-shadow-sm: 0 1px 2px oklch(0.2 0.02 260 / 0.07);
|
|
555
|
+
--og-shadow-md: 0 2px 8px oklch(0.2 0.02 260 / 0.09), 0 1px 2px oklch(0.2 0.02 260 / 0.06);
|
|
556
|
+
--og-shadow-lg: 0 8px 28px oklch(0.2 0.02 260 / 0.13), 0 2px 8px oklch(0.2 0.02 260 / 0.07);
|
|
557
|
+
--og-shadow-glow: 0 0 20px var(--og-color-accent);
|
|
558
|
+
--og-session-chrome-surface: var(--og-color-surface-2);
|
|
559
|
+
--og-session-chrome-surface-open: var(--og-color-surface-2);
|
|
560
|
+
--og-session-chrome-border: var(--og-color-border);
|
|
561
|
+
--og-session-chrome-border-open: var(--og-color-border);
|
|
562
|
+
--og-session-chrome-highlight: var(--og-color-surface-3);
|
|
563
|
+
--og-session-chrome-highlight-ring: var(--og-color-fg);
|
|
564
|
+
--og-session-chrome-shadow: 0 4px 16px -10px oklch(0.2 0.02 260 / 0.14);
|
|
565
|
+
--og-session-chrome-shadow-open: 0 8px 22px -12px oklch(0.2 0.02 260 / 0.18);
|
|
566
|
+
--og-session-chrome-row-hover: var(--og-color-surface-3);
|
|
567
|
+
color-scheme: light;
|
|
568
|
+
--_og-color-scheme: light;
|
|
569
|
+
}
|
|
570
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
571
|
+
:where([data-og-theme="light"]):where(.og-root),:where([data-og-theme="light"]):has(:where(.og-root)),:where(.og-root) :where([data-og-theme="light"]),:where( .og-light):where(.og-root),:where( .og-light):has(:where(.og-root)),:where(.og-root) :where( .og-light) {
|
|
572
|
+
--og-color-accent-soft: color-mix(in oklch, var(--og-color-accent) 11%, transparent);
|
|
573
|
+
--og-color-diff-add-bg: color-mix(in oklch, var(--og-color-status-idle) 12%, transparent);
|
|
574
|
+
--og-color-diff-del-bg: color-mix(in oklch, var(--og-color-status-failed) 12%, transparent);
|
|
575
|
+
--og-shadow-glow: 0 0 20px color-mix(in oklch, var(--og-color-accent) 14%, transparent);
|
|
576
|
+
--og-session-chrome-surface: color-mix(in oklch, var(--og-color-surface-2) 88%, transparent);
|
|
577
|
+
--og-session-chrome-border: color-mix(in oklch, var(--og-color-border) 90%, transparent);
|
|
578
|
+
--og-session-chrome-highlight-ring: color-mix(in oklch, var(--og-color-fg) 12%, transparent);
|
|
579
|
+
--og-session-chrome-row-hover: color-mix(in oklch, var(--og-color-surface-3) 70%, transparent);
|
|
499
580
|
}
|
|
500
|
-
|
|
501
|
-
|
|
581
|
+
}
|
|
582
|
+
:where(.og-root),:where( [data-og-density="compact"]):where(.og-root),:where( [data-og-density="compact"]):has(:where(.og-root)),:where(.og-root) :where( [data-og-density="compact"]),:where( .og-density-compact):where(.og-root),:where( .og-density-compact):has(:where(.og-root)),:where(.og-root) :where( .og-density-compact),:where( [data-og-theme="light"]):where(.og-root),:where( [data-og-theme="light"]):has(:where(.og-root)),:where(.og-root) :where( [data-og-theme="light"]),:where( .og-light):where(.og-root),:where( .og-light):has(:where(.og-root)),:where(.og-root) :where( .og-light) {
|
|
583
|
+
--_og-duration-fast: var(--og-duration-fast, calc(120ms * var(--og-motion-inspect-scale)));
|
|
584
|
+
--_og-duration-base: var(--og-duration-base, calc(180ms * var(--og-motion-inspect-scale)));
|
|
585
|
+
--_og-duration-slow: var(--og-duration-slow, calc(320ms * var(--og-motion-inspect-scale)));
|
|
586
|
+
--_og-duration-disclose: var(--og-duration-disclose, calc(120ms * var(--og-motion-inspect-scale)));
|
|
587
|
+
--_og-duration-disclose-settle: var(--og-duration-disclose-settle, calc(820ms * var(--og-motion-inspect-scale)));
|
|
588
|
+
--_og-duration-stream: var(--og-duration-stream, calc(420ms * var(--og-motion-inspect-scale)));
|
|
589
|
+
--_og-duration-markdown-crystallize: var(--og-duration-markdown-crystallize, calc(480ms * var(--og-motion-inspect-scale)));
|
|
590
|
+
--_og-color-accent-soft: var(--og-color-accent-soft, var(--og-color-accent));
|
|
591
|
+
--_og-color-diff-add-bg: var(--og-color-diff-add-bg, var(--og-color-status-idle));
|
|
592
|
+
--_og-color-diff-del-bg: var(--og-color-diff-del-bg, var(--og-color-status-failed));
|
|
593
|
+
--_og-shadow-glow: var(--og-shadow-glow, 0 0 24px var(--og-color-accent));
|
|
594
|
+
--_og-session-chrome-surface: var(--og-session-chrome-surface, var(--og-color-surface-2));
|
|
595
|
+
--_og-session-chrome-surface-open: var(--og-session-chrome-surface-open, var(--og-color-surface-2));
|
|
596
|
+
--_og-session-chrome-border: var(--og-session-chrome-border, var(--og-color-border));
|
|
597
|
+
--_og-session-chrome-border-open: var(--og-session-chrome-border-open, var(--og-color-border));
|
|
598
|
+
--_og-session-chrome-highlight: var(--og-session-chrome-highlight, var(--og-color-surface-3));
|
|
599
|
+
--_og-session-chrome-highlight-ring: var(--og-session-chrome-highlight-ring, var(--og-color-fg));
|
|
600
|
+
--_og-session-chrome-radius: var(--og-session-chrome-radius, var(--og-radius-lg));
|
|
601
|
+
--_og-session-chrome-ease: var(--og-session-chrome-ease, var(--og-ease-out));
|
|
602
|
+
--_og-session-chrome-row-hover: var(--og-session-chrome-row-hover, var(--og-color-surface-3));
|
|
603
|
+
}
|
|
604
|
+
.og-root :where([hidden]:not([hidden="until-found"])) {
|
|
605
|
+
display: none !important;
|
|
502
606
|
}
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
height: 1px;
|
|
607
|
+
.og-root :where(button, input, textarea, select) {
|
|
608
|
+
box-sizing: border-box;
|
|
609
|
+
margin: 0;
|
|
507
610
|
padding: 0;
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
611
|
+
border: 0 solid;
|
|
612
|
+
border-radius: 0;
|
|
613
|
+
background-color: transparent;
|
|
614
|
+
color: inherit;
|
|
615
|
+
font: inherit;
|
|
616
|
+
letter-spacing: inherit;
|
|
513
617
|
}
|
|
514
|
-
|
|
515
|
-
|
|
618
|
+
.og-root :where(button, input[type="button"], input[type="submit"], input[type="reset"]) {
|
|
619
|
+
appearance: button;
|
|
516
620
|
}
|
|
517
|
-
|
|
518
|
-
|
|
621
|
+
@keyframes og-expand {
|
|
622
|
+
from {
|
|
623
|
+
height: 0;
|
|
624
|
+
opacity: 0;
|
|
519
625
|
}
|
|
520
|
-
|
|
521
|
-
|
|
626
|
+
40% {
|
|
627
|
+
opacity: 0.25;
|
|
522
628
|
}
|
|
523
|
-
|
|
524
|
-
|
|
629
|
+
85% {
|
|
630
|
+
opacity: 1;
|
|
525
631
|
}
|
|
526
|
-
|
|
527
|
-
|
|
632
|
+
to {
|
|
633
|
+
height: var(--radix-collapsible-content-height);
|
|
634
|
+
opacity: 1;
|
|
528
635
|
}
|
|
529
|
-
|
|
530
|
-
|
|
636
|
+
}
|
|
637
|
+
@keyframes og-collapse {
|
|
638
|
+
from {
|
|
639
|
+
height: var(--radix-collapsible-content-height);
|
|
640
|
+
opacity: 1;
|
|
531
641
|
}
|
|
532
|
-
|
|
533
|
-
|
|
642
|
+
35% {
|
|
643
|
+
opacity: 0.7;
|
|
534
644
|
}
|
|
535
|
-
|
|
536
|
-
|
|
645
|
+
70% {
|
|
646
|
+
opacity: 0;
|
|
537
647
|
}
|
|
538
|
-
|
|
539
|
-
|
|
648
|
+
to {
|
|
649
|
+
height: 0;
|
|
650
|
+
opacity: 0;
|
|
540
651
|
}
|
|
541
|
-
|
|
542
|
-
|
|
652
|
+
}
|
|
653
|
+
@keyframes og-settle-chip {
|
|
654
|
+
from {
|
|
655
|
+
background-color: color-mix(in oklch, var(--color-og-surface-1, transparent) 55%, transparent);
|
|
543
656
|
}
|
|
544
|
-
|
|
545
|
-
|
|
657
|
+
to {
|
|
658
|
+
background-color: transparent;
|
|
546
659
|
}
|
|
547
|
-
|
|
548
|
-
|
|
660
|
+
}
|
|
661
|
+
@keyframes og-stream-ink {
|
|
662
|
+
from {
|
|
663
|
+
opacity: 0.3;
|
|
549
664
|
}
|
|
550
|
-
|
|
551
|
-
|
|
665
|
+
to {
|
|
666
|
+
opacity: 1;
|
|
552
667
|
}
|
|
553
|
-
|
|
554
|
-
|
|
668
|
+
}
|
|
669
|
+
:where(.og-root).og-stream-ink,:where(.og-root) .og-stream-ink {
|
|
670
|
+
display: inline;
|
|
671
|
+
animation: og-stream-ink var(--_og-duration-stream) var(--og-ease-out) both;
|
|
672
|
+
}
|
|
673
|
+
@keyframes og-markdown-settle {
|
|
674
|
+
from {
|
|
675
|
+
opacity: 0.92;
|
|
555
676
|
}
|
|
556
|
-
|
|
557
|
-
|
|
677
|
+
to {
|
|
678
|
+
opacity: 1;
|
|
558
679
|
}
|
|
559
|
-
|
|
560
|
-
|
|
680
|
+
}
|
|
681
|
+
:where(.og-root).og-markdown-settle,:where(.og-root) .og-markdown-settle {
|
|
682
|
+
animation: var(--animate-og-markdown-settle);
|
|
683
|
+
}
|
|
684
|
+
@keyframes og-enter {
|
|
685
|
+
from {
|
|
686
|
+
opacity: 0;
|
|
561
687
|
}
|
|
562
|
-
|
|
563
|
-
|
|
688
|
+
to {
|
|
689
|
+
opacity: 1;
|
|
564
690
|
}
|
|
565
|
-
|
|
566
|
-
|
|
691
|
+
}
|
|
692
|
+
@keyframes og-row-enter {
|
|
693
|
+
from {
|
|
694
|
+
opacity: 0;
|
|
567
695
|
}
|
|
568
|
-
|
|
569
|
-
|
|
696
|
+
to {
|
|
697
|
+
opacity: 1;
|
|
570
698
|
}
|
|
571
|
-
|
|
572
|
-
|
|
699
|
+
}
|
|
700
|
+
:where(.og-root).animate-og-row-enter,:where(.og-root) .animate-og-row-enter {
|
|
701
|
+
animation: var(--animate-og-row-enter);
|
|
702
|
+
}
|
|
703
|
+
@keyframes og-pulse {
|
|
704
|
+
0%, 100% {
|
|
705
|
+
opacity: 1;
|
|
573
706
|
}
|
|
574
|
-
|
|
575
|
-
|
|
707
|
+
50% {
|
|
708
|
+
opacity: 0.35;
|
|
576
709
|
}
|
|
577
|
-
|
|
578
|
-
|
|
710
|
+
}
|
|
711
|
+
@keyframes og-blink {
|
|
712
|
+
0%, 100% {
|
|
713
|
+
opacity: 1;
|
|
579
714
|
}
|
|
580
|
-
|
|
715
|
+
50% {
|
|
716
|
+
opacity: 0;
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
@keyframes og-shimmer {
|
|
720
|
+
from {
|
|
721
|
+
background-position: 200% center;
|
|
722
|
+
}
|
|
723
|
+
to {
|
|
724
|
+
background-position: -200% center;
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
@keyframes og-spin {
|
|
728
|
+
to {
|
|
729
|
+
transform: rotate(360deg);
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
@keyframes og-waveform {
|
|
733
|
+
0%, 100% {
|
|
734
|
+
transform: scaleY(0.28);
|
|
735
|
+
opacity: 0.45;
|
|
736
|
+
}
|
|
737
|
+
50% {
|
|
738
|
+
transform: scaleY(1);
|
|
739
|
+
opacity: 0.95;
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
@keyframes og-mh-draw {
|
|
743
|
+
from {
|
|
744
|
+
stroke-dashoffset: 1;
|
|
745
|
+
}
|
|
746
|
+
to {
|
|
747
|
+
stroke-dashoffset: 0;
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
:where(.og-root).og-mh-draw,:where(.og-root) .og-mh-draw {
|
|
751
|
+
stroke-dasharray: 1;
|
|
752
|
+
animation: og-mh-draw 900ms var(--og-ease-out) forwards;
|
|
753
|
+
}
|
|
754
|
+
@media (prefers-reduced-motion: reduce) {
|
|
755
|
+
:where(.og-root).og-mh-draw,:where(.og-root) .og-mh-draw {
|
|
756
|
+
animation: none;
|
|
757
|
+
stroke-dasharray: none;
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
:where(.og-root).og-shimmer-text,:where(.og-root) .og-shimmer-text {
|
|
761
|
+
background: linear-gradient( 90deg, var(--og-color-fg-subtle) 0%, var(--og-color-fg) 50%, var(--og-color-fg-subtle) 100% );
|
|
762
|
+
background-size: 200% auto;
|
|
763
|
+
background-clip: text;
|
|
764
|
+
-webkit-background-clip: text;
|
|
765
|
+
color: transparent;
|
|
766
|
+
animation: og-shimmer 2.2s linear infinite;
|
|
767
|
+
}
|
|
768
|
+
:where(.og-root) {
|
|
769
|
+
font-family: var(--og-font-sans);
|
|
770
|
+
font-feature-settings: var(--og-font-features);
|
|
771
|
+
-webkit-font-smoothing: antialiased;
|
|
772
|
+
text-rendering: optimizeLegibility;
|
|
773
|
+
color: var(--og-color-fg);
|
|
774
|
+
}
|
|
775
|
+
:is(.og-root.og-root, .og-root .og-root) :where( .text-og-xs, .text-og-sm, .text-og-base, .text-og-md, .text-og-control, .text-og-menu, .text-og-composer, .text-og-composer-wide ), :is( .og-root.text-og-xs, .og-root.text-og-sm, .og-root.text-og-base, .og-root.text-og-md, .og-root.text-og-control, .og-root.text-og-menu, .og-root.text-og-composer, .og-root.text-og-composer-wide ) {
|
|
776
|
+
font-size: var(--og-component-font-size);
|
|
777
|
+
line-height: var(--tw-leading, var(--og-component-line-height));
|
|
778
|
+
}
|
|
779
|
+
:where(.og-root) :where(*) {
|
|
780
|
+
scrollbar-width: thin;
|
|
781
|
+
scrollbar-color: var(--og-color-border-strong) transparent;
|
|
782
|
+
}
|
|
783
|
+
:where(.og-root)[data-radix-popper-content-wrapper]:has( > [data-machine-state-popover][data-state="closed"] ),:where(.og-root) [data-radix-popper-content-wrapper]:has( > [data-machine-state-popover][data-state="closed"] ) {
|
|
784
|
+
visibility: hidden;
|
|
785
|
+
pointer-events: none;
|
|
786
|
+
}
|
|
787
|
+
@media (prefers-reduced-motion: reduce) {
|
|
788
|
+
:where(.og-root) *,:where(.og-root) *::before,:where(.og-root) *::after,:where(.og-root) .og-shimmer-text,:where(.og-root) .og-shimmer-text {
|
|
789
|
+
animation-duration: 0.001ms !important;
|
|
790
|
+
animation-iteration-count: 1 !important;
|
|
791
|
+
transition-duration: 0.001ms !important;
|
|
792
|
+
scroll-behavior: auto !important;
|
|
793
|
+
}
|
|
794
|
+
:where(.og-root) .og-stream-ink {
|
|
795
|
+
animation-delay: 0ms !important;
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
@media (max-width: 39.999rem) {
|
|
799
|
+
:where(.og-root).og-composer-footer:has([data-transcription-capturing]) .og-composer-controls > :not([data-transcription-capturing]),:where(.og-root) .og-composer-footer:has([data-transcription-capturing]) .og-composer-controls > :not([data-transcription-capturing]) {
|
|
800
|
+
display: none;
|
|
801
|
+
}
|
|
802
|
+
:where(.og-root).og-composer-footer:has([data-transcription-capturing]) .og-composer-actions,:where(.og-root) .og-composer-footer:has([data-transcription-capturing]) .og-composer-actions {
|
|
803
|
+
display: none;
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
@media (forced-colors: active) {
|
|
807
|
+
:where(.og-root) {
|
|
808
|
+
--og-color-bg: Canvas;
|
|
809
|
+
--og-color-surface-1: Canvas;
|
|
810
|
+
--og-color-surface-2: Canvas;
|
|
811
|
+
--og-color-surface-3: Canvas;
|
|
812
|
+
--og-color-border: CanvasText;
|
|
813
|
+
--og-color-border-strong: CanvasText;
|
|
814
|
+
--og-color-fg: CanvasText;
|
|
815
|
+
--og-color-fg-muted: CanvasText;
|
|
816
|
+
--og-color-fg-subtle: CanvasText;
|
|
817
|
+
--og-color-accent: CanvasText;
|
|
818
|
+
--og-color-accent-strong: CanvasText;
|
|
819
|
+
--og-color-accent-deep: CanvasText;
|
|
820
|
+
--og-color-accent-fg: CanvasText;
|
|
821
|
+
--og-color-accent-soft: Canvas;
|
|
822
|
+
--og-color-status-queued: CanvasText;
|
|
823
|
+
--og-color-status-running: CanvasText;
|
|
824
|
+
--og-color-status-idle: CanvasText;
|
|
825
|
+
--og-color-status-waiting: CanvasText;
|
|
826
|
+
--og-color-status-failed: CanvasText;
|
|
827
|
+
--og-color-status-cancelled: CanvasText;
|
|
828
|
+
--og-color-danger: CanvasText;
|
|
829
|
+
--og-color-diff-add-bg: Canvas;
|
|
830
|
+
--og-color-diff-del-bg: Canvas;
|
|
831
|
+
--og-shadow-sm: none;
|
|
832
|
+
--og-shadow-md: none;
|
|
833
|
+
--og-shadow-lg: none;
|
|
834
|
+
--og-shadow-glow: none;
|
|
835
|
+
}
|
|
836
|
+
:where(.og-root) [role="tab"][aria-selected="true"] {
|
|
837
|
+
outline: 2px solid Highlight;
|
|
838
|
+
outline-offset: -2px;
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
:where(.og-root).xterm .xterm-width-cache-measure-container,:where(.og-root) .xterm .xterm-width-cache-measure-container,:where(.og-root) .xterm-width-cache-measure-container,:where(.og-root) .xterm-width-cache-measure-container,:where(.og-root) .xterm .xterm-char-measure-element,:where(.og-root) .xterm .xterm-char-measure-element {
|
|
842
|
+
position: absolute !important;
|
|
843
|
+
top: 0;
|
|
844
|
+
left: 0;
|
|
845
|
+
visibility: hidden !important;
|
|
846
|
+
pointer-events: none !important;
|
|
847
|
+
z-index: -1 !important;
|
|
848
|
+
}
|
|
849
|
+
:where(.og-root).pointer-events-auto,:where(.og-root) .pointer-events-auto {
|
|
850
|
+
pointer-events: auto;
|
|
851
|
+
}
|
|
852
|
+
:where(.og-root).pointer-events-none,:where(.og-root) .pointer-events-none {
|
|
853
|
+
pointer-events: none;
|
|
854
|
+
}
|
|
855
|
+
:where(.og-root).collapse,:where(.og-root) .collapse {
|
|
856
|
+
visibility: collapse;
|
|
857
|
+
}
|
|
858
|
+
:where(.og-root).invisible,:where(.og-root) .invisible {
|
|
859
|
+
visibility: hidden;
|
|
860
|
+
}
|
|
861
|
+
:where(.og-root).visible,:where(.og-root) .visible {
|
|
862
|
+
visibility: visible;
|
|
863
|
+
}
|
|
864
|
+
:where(.og-root).sr-only,:where(.og-root) .sr-only {
|
|
865
|
+
position: absolute;
|
|
866
|
+
width: 1px;
|
|
867
|
+
height: 1px;
|
|
868
|
+
padding: 0;
|
|
869
|
+
margin: -1px;
|
|
870
|
+
overflow: hidden;
|
|
871
|
+
clip-path: inset(50%);
|
|
872
|
+
white-space: nowrap;
|
|
873
|
+
border-width: 0;
|
|
874
|
+
}
|
|
875
|
+
:where(.og-root).absolute,:where(.og-root) .absolute {
|
|
876
|
+
position: absolute;
|
|
877
|
+
}
|
|
878
|
+
:where(.og-root).fixed,:where(.og-root) .fixed {
|
|
879
|
+
position: fixed;
|
|
880
|
+
}
|
|
881
|
+
:where(.og-root).relative,:where(.og-root) .relative {
|
|
882
|
+
position: relative;
|
|
883
|
+
}
|
|
884
|
+
:where(.og-root).static,:where(.og-root) .static {
|
|
885
|
+
position: static;
|
|
886
|
+
}
|
|
887
|
+
:where(.og-root).sticky,:where(.og-root) .sticky {
|
|
888
|
+
position: sticky;
|
|
889
|
+
}
|
|
890
|
+
:where(.og-root).-inset-px,:where(.og-root) .-inset-px {
|
|
891
|
+
inset: -1px;
|
|
892
|
+
}
|
|
893
|
+
:where(.og-root).inset-0,:where(.og-root) .inset-0 {
|
|
894
|
+
inset: calc(var(--spacing) * 0);
|
|
895
|
+
}
|
|
896
|
+
:where(.og-root).inset-x-0,:where(.og-root) .inset-x-0 {
|
|
897
|
+
inset-inline: calc(var(--spacing) * 0);
|
|
898
|
+
}
|
|
899
|
+
:where(.og-root).inset-y-0,:where(.og-root) .inset-y-0 {
|
|
900
|
+
inset-block: calc(var(--spacing) * 0);
|
|
901
|
+
}
|
|
902
|
+
:where(.og-root).start,:where(.og-root) .start {
|
|
903
|
+
inset-inline-start: var(--spacing);
|
|
904
|
+
}
|
|
905
|
+
:where(.og-root).end,:where(.og-root) .end {
|
|
906
|
+
inset-inline-end: var(--spacing);
|
|
907
|
+
}
|
|
908
|
+
:where(.og-root).-top-0\.5,:where(.og-root) .-top-0\.5 {
|
|
909
|
+
top: calc(var(--spacing) * -0.5);
|
|
910
|
+
}
|
|
911
|
+
:where(.og-root).-top-3,:where(.og-root) .-top-3 {
|
|
912
|
+
top: calc(var(--spacing) * -3);
|
|
913
|
+
}
|
|
914
|
+
:where(.og-root).-top-11,:where(.og-root) .-top-11 {
|
|
915
|
+
top: calc(var(--spacing) * -11);
|
|
916
|
+
}
|
|
917
|
+
:where(.og-root).-top-16,:where(.og-root) .-top-16 {
|
|
918
|
+
top: calc(var(--spacing) * -16);
|
|
919
|
+
}
|
|
920
|
+
:where(.og-root).top-0,:where(.og-root) .top-0 {
|
|
921
|
+
top: calc(var(--spacing) * 0);
|
|
922
|
+
}
|
|
923
|
+
:where(.og-root).top-1\.5,:where(.og-root) .top-1\.5 {
|
|
924
|
+
top: calc(var(--spacing) * 1.5);
|
|
925
|
+
}
|
|
926
|
+
:where(.og-root).top-1\/2,:where(.og-root) .top-1\/2 {
|
|
927
|
+
top: calc(1 / 2 * 100%);
|
|
928
|
+
}
|
|
929
|
+
:where(.og-root).top-2,:where(.og-root) .top-2 {
|
|
930
|
+
top: calc(var(--spacing) * 2);
|
|
931
|
+
}
|
|
932
|
+
:where(.og-root).top-3,:where(.og-root) .top-3 {
|
|
933
|
+
top: calc(var(--spacing) * 3);
|
|
934
|
+
}
|
|
935
|
+
:where(.og-root).top-8,:where(.og-root) .top-8 {
|
|
936
|
+
top: calc(var(--spacing) * 8);
|
|
937
|
+
}
|
|
938
|
+
:where(.og-root).top-10,:where(.og-root) .top-10 {
|
|
939
|
+
top: calc(var(--spacing) * 10);
|
|
940
|
+
}
|
|
941
|
+
:where(.og-root).-right-0\.5,:where(.og-root) .-right-0\.5 {
|
|
942
|
+
right: calc(var(--spacing) * -0.5);
|
|
943
|
+
}
|
|
944
|
+
:where(.og-root).-right-3,:where(.og-root) .-right-3 {
|
|
945
|
+
right: calc(var(--spacing) * -3);
|
|
946
|
+
}
|
|
947
|
+
:where(.og-root).right-0,:where(.og-root) .right-0 {
|
|
581
948
|
right: calc(var(--spacing) * 0);
|
|
582
949
|
}
|
|
583
950
|
:where(.og-root).right-1\.5,:where(.og-root) .right-1\.5 {
|
|
@@ -1021,6 +1388,9 @@
|
|
|
1021
1388
|
:where(.og-root).max-h-\[32rem\],:where(.og-root) .max-h-\[32rem\] {
|
|
1022
1389
|
max-height: 32rem;
|
|
1023
1390
|
}
|
|
1391
|
+
:where(.og-root).max-h-\[40\%\],:where(.og-root) .max-h-\[40\%\] {
|
|
1392
|
+
max-height: 40%;
|
|
1393
|
+
}
|
|
1024
1394
|
:where(.og-root).max-h-\[82vh\],:where(.og-root) .max-h-\[82vh\] {
|
|
1025
1395
|
max-height: 82vh;
|
|
1026
1396
|
}
|
|
@@ -1293,6 +1663,10 @@
|
|
|
1293
1663
|
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1294
1664
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1295
1665
|
}
|
|
1666
|
+
:where(.og-root).-translate-y-full,:where(.og-root) .-translate-y-full {
|
|
1667
|
+
--tw-translate-y: -100%;
|
|
1668
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1669
|
+
}
|
|
1296
1670
|
:where(.og-root).translate-y-\[2px\],:where(.og-root) .translate-y-\[2px\] {
|
|
1297
1671
|
--tw-translate-y: 2px;
|
|
1298
1672
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1415,6 +1789,9 @@
|
|
|
1415
1789
|
:where(.og-root).flex-row,:where(.og-root) .flex-row {
|
|
1416
1790
|
flex-direction: row;
|
|
1417
1791
|
}
|
|
1792
|
+
:where(.og-root).flex-nowrap,:where(.og-root) .flex-nowrap {
|
|
1793
|
+
flex-wrap: nowrap;
|
|
1794
|
+
}
|
|
1418
1795
|
:where(.og-root).flex-wrap,:where(.og-root) .flex-wrap {
|
|
1419
1796
|
flex-wrap: wrap;
|
|
1420
1797
|
}
|
|
@@ -1564,6 +1941,14 @@
|
|
|
1564
1941
|
border-color: var(--og-color-border);
|
|
1565
1942
|
}
|
|
1566
1943
|
}
|
|
1944
|
+
:where(.og-root).divide-og-border\/40,:where(.og-root) .divide-og-border\/40 {
|
|
1945
|
+
:where(& > :not(:last-child)) {
|
|
1946
|
+
border-color: var(--og-color-border);
|
|
1947
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1948
|
+
border-color: color-mix(in oklab, var(--og-color-border) 40%, transparent);
|
|
1949
|
+
}
|
|
1950
|
+
}
|
|
1951
|
+
}
|
|
1567
1952
|
:where(.og-root).self-center,:where(.og-root) .self-center {
|
|
1568
1953
|
align-self: center;
|
|
1569
1954
|
}
|
|
@@ -1635,6 +2020,10 @@
|
|
|
1635
2020
|
:where(.og-root).rounded-xl,:where(.og-root) .rounded-xl {
|
|
1636
2021
|
border-radius: var(--og-radius-xl);
|
|
1637
2022
|
}
|
|
2023
|
+
:where(.og-root).rounded-t-og-lg,:where(.og-root) .rounded-t-og-lg {
|
|
2024
|
+
border-top-left-radius: var(--og-radius-lg);
|
|
2025
|
+
border-top-right-radius: var(--og-radius-lg);
|
|
2026
|
+
}
|
|
1638
2027
|
:where(.og-root).rounded-t-og-sm,:where(.og-root) .rounded-t-og-sm {
|
|
1639
2028
|
border-top-left-radius: var(--og-radius-sm);
|
|
1640
2029
|
border-top-right-radius: var(--og-radius-sm);
|
|
@@ -1651,6 +2040,10 @@
|
|
|
1651
2040
|
border-top-right-radius: var(--og-radius-md);
|
|
1652
2041
|
border-bottom-right-radius: var(--og-radius-md);
|
|
1653
2042
|
}
|
|
2043
|
+
:where(.og-root).rounded-b-og-lg,:where(.og-root) .rounded-b-og-lg {
|
|
2044
|
+
border-bottom-right-radius: var(--og-radius-lg);
|
|
2045
|
+
border-bottom-left-radius: var(--og-radius-lg);
|
|
2046
|
+
}
|
|
1654
2047
|
:where(.og-root).rounded-br-og-xs,:where(.og-root) .rounded-br-og-xs {
|
|
1655
2048
|
border-bottom-right-radius: var(--og-radius-xs);
|
|
1656
2049
|
}
|
|
@@ -2193,6 +2586,12 @@
|
|
|
2193
2586
|
background-color: color-mix(in oklab, var(--og-color-surface-2) 40%, transparent);
|
|
2194
2587
|
}
|
|
2195
2588
|
}
|
|
2589
|
+
:where(.og-root).bg-og-surface-2\/50,:where(.og-root) .bg-og-surface-2\/50 {
|
|
2590
|
+
background-color: var(--og-color-surface-2);
|
|
2591
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2592
|
+
background-color: color-mix(in oklab, var(--og-color-surface-2) 50%, transparent);
|
|
2593
|
+
}
|
|
2594
|
+
}
|
|
2196
2595
|
:where(.og-root).bg-og-surface-2\/60,:where(.og-root) .bg-og-surface-2\/60 {
|
|
2197
2596
|
background-color: var(--og-color-surface-2);
|
|
2198
2597
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2468,6 +2867,9 @@
|
|
|
2468
2867
|
:where(.og-root).pt-3,:where(.og-root) .pt-3 {
|
|
2469
2868
|
padding-top: calc(var(--spacing) * 3);
|
|
2470
2869
|
}
|
|
2870
|
+
:where(.og-root).pt-16,:where(.og-root) .pt-16 {
|
|
2871
|
+
padding-top: calc(var(--spacing) * 16);
|
|
2872
|
+
}
|
|
2471
2873
|
:where(.og-root).pr-1,:where(.og-root) .pr-1 {
|
|
2472
2874
|
padding-right: calc(var(--spacing) * 1);
|
|
2473
2875
|
}
|
|
@@ -2498,9 +2900,15 @@
|
|
|
2498
2900
|
:where(.og-root).pb-3,:where(.og-root) .pb-3 {
|
|
2499
2901
|
padding-bottom: calc(var(--spacing) * 3);
|
|
2500
2902
|
}
|
|
2903
|
+
:where(.og-root).pb-6,:where(.og-root) .pb-6 {
|
|
2904
|
+
padding-bottom: calc(var(--spacing) * 6);
|
|
2905
|
+
}
|
|
2501
2906
|
:where(.og-root).pb-\[8\%\],:where(.og-root) .pb-\[8\%\] {
|
|
2502
2907
|
padding-bottom: 8%;
|
|
2503
2908
|
}
|
|
2909
|
+
:where(.og-root).pl-0\.5,:where(.og-root) .pl-0\.5 {
|
|
2910
|
+
padding-left: calc(var(--spacing) * 0.5);
|
|
2911
|
+
}
|
|
2504
2912
|
:where(.og-root).pl-1,:where(.og-root) .pl-1 {
|
|
2505
2913
|
padding-left: calc(var(--spacing) * 1);
|
|
2506
2914
|
}
|
|
@@ -3207,6 +3615,11 @@
|
|
|
3207
3615
|
rotate: 90deg;
|
|
3208
3616
|
}
|
|
3209
3617
|
}
|
|
3618
|
+
:where(.og-root).group-open\/command\:rotate-90,:where(.og-root) .group-open\/command\:rotate-90 {
|
|
3619
|
+
&:is(:where(.group\/command):is([open], :popover-open, :open) *) {
|
|
3620
|
+
rotate: 90deg;
|
|
3621
|
+
}
|
|
3622
|
+
}
|
|
3210
3623
|
:where(.og-root).group-focus-within\/copy\:opacity-100,:where(.og-root) .group-focus-within\/copy\:opacity-100 {
|
|
3211
3624
|
&:is(:where(.group\/copy):focus-within *) {
|
|
3212
3625
|
opacity: 100%;
|
|
@@ -3495,6 +3908,11 @@
|
|
|
3495
3908
|
margin-top: calc(var(--spacing) * 0);
|
|
3496
3909
|
}
|
|
3497
3910
|
}
|
|
3911
|
+
:where(.og-root).first\:pt-0,:where(.og-root) .first\:pt-0 {
|
|
3912
|
+
&:first-child {
|
|
3913
|
+
padding-top: calc(var(--spacing) * 0);
|
|
3914
|
+
}
|
|
3915
|
+
}
|
|
3498
3916
|
:where(.og-root).first\:pl-0,:where(.og-root) .first\:pl-0 {
|
|
3499
3917
|
&:first-child {
|
|
3500
3918
|
padding-left: calc(var(--spacing) * 0);
|
|
@@ -3505,7 +3923,12 @@
|
|
|
3505
3923
|
margin-bottom: calc(var(--spacing) * 0);
|
|
3506
3924
|
}
|
|
3507
3925
|
}
|
|
3508
|
-
:where(.og-root).
|
|
3926
|
+
:where(.og-root).last\:pb-0,:where(.og-root) .last\:pb-0 {
|
|
3927
|
+
&:last-child {
|
|
3928
|
+
padding-bottom: calc(var(--spacing) * 0);
|
|
3929
|
+
}
|
|
3930
|
+
}
|
|
3931
|
+
:where(.og-root).focus-within\:border-og-accent\/50,:where(.og-root) .focus-within\:border-og-accent\/50 {
|
|
3509
3932
|
&:focus-within {
|
|
3510
3933
|
border-color: var(--og-color-accent);
|
|
3511
3934
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4739,6 +5162,11 @@
|
|
|
4739
5162
|
width: calc(var(--spacing) * 11);
|
|
4740
5163
|
}
|
|
4741
5164
|
}
|
|
5165
|
+
:where(.og-root).pointer-coarse\:w-auto,:where(.og-root) .pointer-coarse\:w-auto {
|
|
5166
|
+
@media (pointer: coarse) {
|
|
5167
|
+
width: auto;
|
|
5168
|
+
}
|
|
5169
|
+
}
|
|
4742
5170
|
:where(.og-root).pointer-coarse\:min-w-11,:where(.og-root) .pointer-coarse\:min-w-11 {
|
|
4743
5171
|
@media (pointer: coarse) {
|
|
4744
5172
|
min-width: calc(var(--spacing) * 11);
|
|
@@ -4889,350 +5317,6 @@
|
|
|
4889
5317
|
border-bottom-width: 0px;
|
|
4890
5318
|
}
|
|
4891
5319
|
}
|
|
4892
|
-
:where(.og-root) {
|
|
4893
|
-
color-scheme: var(--_og-color-scheme, dark);
|
|
4894
|
-
}
|
|
4895
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4896
|
-
:where(.og-root) {
|
|
4897
|
-
--_og-color-accent-soft: var(--og-color-accent-soft, color-mix(in oklch, var(--og-color-accent) 16%, transparent));
|
|
4898
|
-
--_og-color-diff-add-bg: var(--og-color-diff-add-bg, color-mix(in oklch, var(--og-color-status-idle) 14%, transparent));
|
|
4899
|
-
--_og-color-diff-del-bg: var(--og-color-diff-del-bg, color-mix(in oklch, var(--og-color-status-failed) 14%, transparent));
|
|
4900
|
-
--_og-shadow-glow: var(--og-shadow-glow, 0 0 24px color-mix(in oklch, var(--og-color-accent) 18%, transparent));
|
|
4901
|
-
--_og-session-chrome-surface: var(--og-session-chrome-surface, color-mix(in oklch, var(--og-color-surface-2) 82%, transparent));
|
|
4902
|
-
--_og-session-chrome-surface-open: var(--og-session-chrome-surface-open, color-mix(in oklch, var(--og-color-surface-2) 92%, transparent));
|
|
4903
|
-
--_og-session-chrome-border: var(--og-session-chrome-border, color-mix(in oklch, var(--og-color-border) 85%, transparent));
|
|
4904
|
-
--_og-session-chrome-highlight-ring: var(--og-session-chrome-highlight-ring, color-mix(in oklch, var(--og-color-fg) 16%, transparent));
|
|
4905
|
-
--_og-session-chrome-row-hover: var(--og-session-chrome-row-hover, color-mix(in oklch, var(--og-color-surface-3) 55%, transparent));
|
|
4906
|
-
}
|
|
4907
|
-
}
|
|
4908
|
-
:where([data-og-density="compact"]):where(.og-root),:where([data-og-density="compact"]):has(:where(.og-root)),:where(.og-root) :where([data-og-density="compact"]),:where( .og-density-compact):where(.og-root),:where( .og-density-compact):has(:where(.og-root)),:where(.og-root) :where( .og-density-compact) {
|
|
4909
|
-
--og-font-size-xs: 10px;
|
|
4910
|
-
--og-line-height-xs: 1.5;
|
|
4911
|
-
--og-font-size-sm: 11px;
|
|
4912
|
-
--og-line-height-sm: 1.5;
|
|
4913
|
-
--og-font-size-base: 12px;
|
|
4914
|
-
--og-line-height-base: 1.55;
|
|
4915
|
-
--og-font-size-md: 13px;
|
|
4916
|
-
--og-line-height-md: 1.6;
|
|
4917
|
-
--og-font-size-control: 11px;
|
|
4918
|
-
--og-line-height-control: 16px;
|
|
4919
|
-
--og-font-size-menu: 12px;
|
|
4920
|
-
--og-line-height-menu: 18px;
|
|
4921
|
-
--og-font-size-composer: 13px;
|
|
4922
|
-
--og-line-height-composer: 20px;
|
|
4923
|
-
--og-font-size-composer-wide: 13px;
|
|
4924
|
-
--og-line-height-composer-wide: 20px;
|
|
4925
|
-
--og-model-picker-trigger-height: 1.75rem;
|
|
4926
|
-
--og-model-picker-trigger-height-mobile: 1.75rem;
|
|
4927
|
-
--og-model-picker-menu-width: 15rem;
|
|
4928
|
-
--og-model-picker-menu-padding: 0.25rem;
|
|
4929
|
-
--og-model-picker-row-padding-x: 0.5rem;
|
|
4930
|
-
--og-model-picker-row-padding-y: 0.375rem;
|
|
4931
|
-
--og-model-picker-effort-height: 1.75rem;
|
|
4932
|
-
--og-realtime-menu-width: 15rem;
|
|
4933
|
-
}
|
|
4934
|
-
:where([data-og-theme="light"]):where(.og-root),:where([data-og-theme="light"]):has(:where(.og-root)),:where(.og-root) :where([data-og-theme="light"]),:where( .og-light):where(.og-root),:where( .og-light):has(:where(.og-root)),:where(.og-root) :where( .og-light) {
|
|
4935
|
-
--og-color-bg: oklch(0.978 0.003 260);
|
|
4936
|
-
--og-color-surface-1: oklch(1 0 0);
|
|
4937
|
-
--og-color-surface-2: oklch(0.962 0.004 260);
|
|
4938
|
-
--og-color-surface-3: oklch(0.935 0.006 260);
|
|
4939
|
-
--og-color-border: oklch(0.9 0.006 260);
|
|
4940
|
-
--og-color-border-strong: oklch(0.8 0.01 260);
|
|
4941
|
-
--og-color-fg: oklch(0.21 0.015 260);
|
|
4942
|
-
--og-color-fg-muted: oklch(0.46 0.014 260);
|
|
4943
|
-
--og-color-fg-subtle: oklch(0.5 0.012 260);
|
|
4944
|
-
--og-color-accent: oklch(0.55 0.18 255);
|
|
4945
|
-
--og-color-accent-strong: oklch(0.48 0.19 255);
|
|
4946
|
-
--og-color-accent-deep: oklch(0.44 0.19 255);
|
|
4947
|
-
--og-color-accent-fg: oklch(0.985 0.005 260);
|
|
4948
|
-
--og-color-accent-soft: var(--og-color-accent);
|
|
4949
|
-
--og-color-status-queued: oklch(0.55 0.03 260);
|
|
4950
|
-
--og-color-status-running: oklch(0.48 0.13 80);
|
|
4951
|
-
--og-color-status-idle: oklch(0.49 0.13 155);
|
|
4952
|
-
--og-color-status-waiting: oklch(0.54 0.15 305);
|
|
4953
|
-
--og-color-status-failed: oklch(0.5 0.19 22);
|
|
4954
|
-
--og-color-status-cancelled: oklch(0.55 0.025 260);
|
|
4955
|
-
--og-color-danger: oklch(0.54 0.2 22);
|
|
4956
|
-
--og-color-diff-add-bg: var(--og-color-status-idle);
|
|
4957
|
-
--og-color-diff-del-bg: var(--og-color-status-failed);
|
|
4958
|
-
--og-shadow-sm: 0 1px 2px oklch(0.2 0.02 260 / 0.07);
|
|
4959
|
-
--og-shadow-md: 0 2px 8px oklch(0.2 0.02 260 / 0.09), 0 1px 2px oklch(0.2 0.02 260 / 0.06);
|
|
4960
|
-
--og-shadow-lg: 0 8px 28px oklch(0.2 0.02 260 / 0.13), 0 2px 8px oklch(0.2 0.02 260 / 0.07);
|
|
4961
|
-
--og-shadow-glow: 0 0 20px var(--og-color-accent);
|
|
4962
|
-
--og-session-chrome-surface: var(--og-color-surface-2);
|
|
4963
|
-
--og-session-chrome-surface-open: var(--og-color-surface-2);
|
|
4964
|
-
--og-session-chrome-border: var(--og-color-border);
|
|
4965
|
-
--og-session-chrome-border-open: var(--og-color-border);
|
|
4966
|
-
--og-session-chrome-highlight: var(--og-color-surface-3);
|
|
4967
|
-
--og-session-chrome-highlight-ring: var(--og-color-fg);
|
|
4968
|
-
--og-session-chrome-shadow: 0 4px 16px -10px oklch(0.2 0.02 260 / 0.14);
|
|
4969
|
-
--og-session-chrome-shadow-open: 0 8px 22px -12px oklch(0.2 0.02 260 / 0.18);
|
|
4970
|
-
--og-session-chrome-row-hover: var(--og-color-surface-3);
|
|
4971
|
-
color-scheme: light;
|
|
4972
|
-
--_og-color-scheme: light;
|
|
4973
|
-
}
|
|
4974
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4975
|
-
:where([data-og-theme="light"]):where(.og-root),:where([data-og-theme="light"]):has(:where(.og-root)),:where(.og-root) :where([data-og-theme="light"]),:where( .og-light):where(.og-root),:where( .og-light):has(:where(.og-root)),:where(.og-root) :where( .og-light) {
|
|
4976
|
-
--og-color-accent-soft: color-mix(in oklch, var(--og-color-accent) 11%, transparent);
|
|
4977
|
-
--og-color-diff-add-bg: color-mix(in oklch, var(--og-color-status-idle) 12%, transparent);
|
|
4978
|
-
--og-color-diff-del-bg: color-mix(in oklch, var(--og-color-status-failed) 12%, transparent);
|
|
4979
|
-
--og-shadow-glow: 0 0 20px color-mix(in oklch, var(--og-color-accent) 14%, transparent);
|
|
4980
|
-
--og-session-chrome-surface: color-mix(in oklch, var(--og-color-surface-2) 88%, transparent);
|
|
4981
|
-
--og-session-chrome-border: color-mix(in oklch, var(--og-color-border) 90%, transparent);
|
|
4982
|
-
--og-session-chrome-highlight-ring: color-mix(in oklch, var(--og-color-fg) 12%, transparent);
|
|
4983
|
-
--og-session-chrome-row-hover: color-mix(in oklch, var(--og-color-surface-3) 70%, transparent);
|
|
4984
|
-
}
|
|
4985
|
-
}
|
|
4986
|
-
:where(.og-root),:where( [data-og-density="compact"]):where(.og-root),:where( [data-og-density="compact"]):has(:where(.og-root)),:where(.og-root) :where( [data-og-density="compact"]),:where( .og-density-compact):where(.og-root),:where( .og-density-compact):has(:where(.og-root)),:where(.og-root) :where( .og-density-compact),:where( [data-og-theme="light"]):where(.og-root),:where( [data-og-theme="light"]):has(:where(.og-root)),:where(.og-root) :where( [data-og-theme="light"]),:where( .og-light):where(.og-root),:where( .og-light):has(:where(.og-root)),:where(.og-root) :where( .og-light) {
|
|
4987
|
-
--_og-duration-fast: var(--og-duration-fast, calc(120ms * var(--og-motion-inspect-scale)));
|
|
4988
|
-
--_og-duration-base: var(--og-duration-base, calc(180ms * var(--og-motion-inspect-scale)));
|
|
4989
|
-
--_og-duration-slow: var(--og-duration-slow, calc(320ms * var(--og-motion-inspect-scale)));
|
|
4990
|
-
--_og-duration-disclose: var(--og-duration-disclose, calc(120ms * var(--og-motion-inspect-scale)));
|
|
4991
|
-
--_og-duration-disclose-settle: var(--og-duration-disclose-settle, calc(820ms * var(--og-motion-inspect-scale)));
|
|
4992
|
-
--_og-duration-stream: var(--og-duration-stream, calc(420ms * var(--og-motion-inspect-scale)));
|
|
4993
|
-
--_og-duration-markdown-crystallize: var(--og-duration-markdown-crystallize, calc(480ms * var(--og-motion-inspect-scale)));
|
|
4994
|
-
--_og-color-accent-soft: var(--og-color-accent-soft, var(--og-color-accent));
|
|
4995
|
-
--_og-color-diff-add-bg: var(--og-color-diff-add-bg, var(--og-color-status-idle));
|
|
4996
|
-
--_og-color-diff-del-bg: var(--og-color-diff-del-bg, var(--og-color-status-failed));
|
|
4997
|
-
--_og-shadow-glow: var(--og-shadow-glow, 0 0 24px var(--og-color-accent));
|
|
4998
|
-
--_og-session-chrome-surface: var(--og-session-chrome-surface, var(--og-color-surface-2));
|
|
4999
|
-
--_og-session-chrome-surface-open: var(--og-session-chrome-surface-open, var(--og-color-surface-2));
|
|
5000
|
-
--_og-session-chrome-border: var(--og-session-chrome-border, var(--og-color-border));
|
|
5001
|
-
--_og-session-chrome-border-open: var(--og-session-chrome-border-open, var(--og-color-border));
|
|
5002
|
-
--_og-session-chrome-highlight: var(--og-session-chrome-highlight, var(--og-color-surface-3));
|
|
5003
|
-
--_og-session-chrome-highlight-ring: var(--og-session-chrome-highlight-ring, var(--og-color-fg));
|
|
5004
|
-
--_og-session-chrome-radius: var(--og-session-chrome-radius, var(--og-radius-lg));
|
|
5005
|
-
--_og-session-chrome-ease: var(--og-session-chrome-ease, var(--og-ease-out));
|
|
5006
|
-
--_og-session-chrome-row-hover: var(--og-session-chrome-row-hover, var(--og-color-surface-3));
|
|
5007
|
-
}
|
|
5008
|
-
@keyframes og-expand {
|
|
5009
|
-
from {
|
|
5010
|
-
height: 0;
|
|
5011
|
-
opacity: 0;
|
|
5012
|
-
}
|
|
5013
|
-
40% {
|
|
5014
|
-
opacity: 0.25;
|
|
5015
|
-
}
|
|
5016
|
-
85% {
|
|
5017
|
-
opacity: 1;
|
|
5018
|
-
}
|
|
5019
|
-
to {
|
|
5020
|
-
height: var(--radix-collapsible-content-height);
|
|
5021
|
-
opacity: 1;
|
|
5022
|
-
}
|
|
5023
|
-
}
|
|
5024
|
-
@keyframes og-collapse {
|
|
5025
|
-
from {
|
|
5026
|
-
height: var(--radix-collapsible-content-height);
|
|
5027
|
-
opacity: 1;
|
|
5028
|
-
}
|
|
5029
|
-
35% {
|
|
5030
|
-
opacity: 0.7;
|
|
5031
|
-
}
|
|
5032
|
-
70% {
|
|
5033
|
-
opacity: 0;
|
|
5034
|
-
}
|
|
5035
|
-
to {
|
|
5036
|
-
height: 0;
|
|
5037
|
-
opacity: 0;
|
|
5038
|
-
}
|
|
5039
|
-
}
|
|
5040
|
-
@keyframes og-settle-chip {
|
|
5041
|
-
from {
|
|
5042
|
-
background-color: color-mix(in oklch, var(--color-og-surface-1, transparent) 55%, transparent);
|
|
5043
|
-
}
|
|
5044
|
-
to {
|
|
5045
|
-
background-color: transparent;
|
|
5046
|
-
}
|
|
5047
|
-
}
|
|
5048
|
-
@keyframes og-stream-ink {
|
|
5049
|
-
from {
|
|
5050
|
-
opacity: 0.3;
|
|
5051
|
-
}
|
|
5052
|
-
to {
|
|
5053
|
-
opacity: 1;
|
|
5054
|
-
}
|
|
5055
|
-
}
|
|
5056
|
-
:where(.og-root).og-stream-ink,:where(.og-root) .og-stream-ink {
|
|
5057
|
-
display: inline;
|
|
5058
|
-
animation: og-stream-ink var(--_og-duration-stream) var(--og-ease-out) both;
|
|
5059
|
-
}
|
|
5060
|
-
@keyframes og-markdown-settle {
|
|
5061
|
-
from {
|
|
5062
|
-
opacity: 0.92;
|
|
5063
|
-
}
|
|
5064
|
-
to {
|
|
5065
|
-
opacity: 1;
|
|
5066
|
-
}
|
|
5067
|
-
}
|
|
5068
|
-
:where(.og-root).og-markdown-settle,:where(.og-root) .og-markdown-settle {
|
|
5069
|
-
animation: var(--animate-og-markdown-settle);
|
|
5070
|
-
}
|
|
5071
|
-
@keyframes og-enter {
|
|
5072
|
-
from {
|
|
5073
|
-
opacity: 0;
|
|
5074
|
-
}
|
|
5075
|
-
to {
|
|
5076
|
-
opacity: 1;
|
|
5077
|
-
}
|
|
5078
|
-
}
|
|
5079
|
-
@keyframes og-row-enter {
|
|
5080
|
-
from {
|
|
5081
|
-
opacity: 0;
|
|
5082
|
-
}
|
|
5083
|
-
to {
|
|
5084
|
-
opacity: 1;
|
|
5085
|
-
}
|
|
5086
|
-
}
|
|
5087
|
-
:where(.og-root).animate-og-row-enter,:where(.og-root) .animate-og-row-enter {
|
|
5088
|
-
animation: var(--animate-og-row-enter);
|
|
5089
|
-
}
|
|
5090
|
-
@keyframes og-pulse {
|
|
5091
|
-
0%, 100% {
|
|
5092
|
-
opacity: 1;
|
|
5093
|
-
}
|
|
5094
|
-
50% {
|
|
5095
|
-
opacity: 0.35;
|
|
5096
|
-
}
|
|
5097
|
-
}
|
|
5098
|
-
@keyframes og-blink {
|
|
5099
|
-
0%, 100% {
|
|
5100
|
-
opacity: 1;
|
|
5101
|
-
}
|
|
5102
|
-
50% {
|
|
5103
|
-
opacity: 0;
|
|
5104
|
-
}
|
|
5105
|
-
}
|
|
5106
|
-
@keyframes og-shimmer {
|
|
5107
|
-
from {
|
|
5108
|
-
background-position: 200% center;
|
|
5109
|
-
}
|
|
5110
|
-
to {
|
|
5111
|
-
background-position: -200% center;
|
|
5112
|
-
}
|
|
5113
|
-
}
|
|
5114
|
-
@keyframes og-spin {
|
|
5115
|
-
to {
|
|
5116
|
-
transform: rotate(360deg);
|
|
5117
|
-
}
|
|
5118
|
-
}
|
|
5119
|
-
@keyframes og-waveform {
|
|
5120
|
-
0%, 100% {
|
|
5121
|
-
transform: scaleY(0.28);
|
|
5122
|
-
opacity: 0.45;
|
|
5123
|
-
}
|
|
5124
|
-
50% {
|
|
5125
|
-
transform: scaleY(1);
|
|
5126
|
-
opacity: 0.95;
|
|
5127
|
-
}
|
|
5128
|
-
}
|
|
5129
|
-
@keyframes og-mh-draw {
|
|
5130
|
-
from {
|
|
5131
|
-
stroke-dashoffset: 1;
|
|
5132
|
-
}
|
|
5133
|
-
to {
|
|
5134
|
-
stroke-dashoffset: 0;
|
|
5135
|
-
}
|
|
5136
|
-
}
|
|
5137
|
-
:where(.og-root).og-mh-draw,:where(.og-root) .og-mh-draw {
|
|
5138
|
-
stroke-dasharray: 1;
|
|
5139
|
-
animation: og-mh-draw 900ms var(--og-ease-out) forwards;
|
|
5140
|
-
}
|
|
5141
|
-
@media (prefers-reduced-motion: reduce) {
|
|
5142
|
-
:where(.og-root).og-mh-draw,:where(.og-root) .og-mh-draw {
|
|
5143
|
-
animation: none;
|
|
5144
|
-
stroke-dasharray: none;
|
|
5145
|
-
}
|
|
5146
|
-
}
|
|
5147
|
-
:where(.og-root).og-shimmer-text,:where(.og-root) .og-shimmer-text {
|
|
5148
|
-
background: linear-gradient( 90deg, var(--og-color-fg-subtle) 0%, var(--og-color-fg) 50%, var(--og-color-fg-subtle) 100% );
|
|
5149
|
-
background-size: 200% auto;
|
|
5150
|
-
background-clip: text;
|
|
5151
|
-
-webkit-background-clip: text;
|
|
5152
|
-
color: transparent;
|
|
5153
|
-
animation: og-shimmer 2.2s linear infinite;
|
|
5154
|
-
}
|
|
5155
|
-
:where(.og-root) {
|
|
5156
|
-
font-family: var(--og-font-sans);
|
|
5157
|
-
font-feature-settings: var(--og-font-features);
|
|
5158
|
-
-webkit-font-smoothing: antialiased;
|
|
5159
|
-
text-rendering: optimizeLegibility;
|
|
5160
|
-
color: var(--og-color-fg);
|
|
5161
|
-
}
|
|
5162
|
-
:is(.og-root.og-root, .og-root .og-root) :where( .text-og-xs, .text-og-sm, .text-og-base, .text-og-md, .text-og-control, .text-og-menu, .text-og-composer, .text-og-composer-wide ), :is( .og-root.text-og-xs, .og-root.text-og-sm, .og-root.text-og-base, .og-root.text-og-md, .og-root.text-og-control, .og-root.text-og-menu, .og-root.text-og-composer, .og-root.text-og-composer-wide ) {
|
|
5163
|
-
font-size: var(--og-component-font-size);
|
|
5164
|
-
line-height: var(--tw-leading, var(--og-component-line-height));
|
|
5165
|
-
}
|
|
5166
|
-
:where(.og-root) :where(*) {
|
|
5167
|
-
scrollbar-width: thin;
|
|
5168
|
-
scrollbar-color: var(--og-color-border-strong) transparent;
|
|
5169
|
-
}
|
|
5170
|
-
:where(.og-root)[data-radix-popper-content-wrapper]:has( > [data-machine-state-popover][data-state="closed"] ),:where(.og-root) [data-radix-popper-content-wrapper]:has( > [data-machine-state-popover][data-state="closed"] ) {
|
|
5171
|
-
visibility: hidden;
|
|
5172
|
-
pointer-events: none;
|
|
5173
|
-
}
|
|
5174
|
-
@media (prefers-reduced-motion: reduce) {
|
|
5175
|
-
:where(.og-root) *,:where(.og-root) *::before,:where(.og-root) *::after,:where(.og-root) .og-shimmer-text,:where(.og-root) .og-shimmer-text {
|
|
5176
|
-
animation-duration: 0.001ms !important;
|
|
5177
|
-
animation-iteration-count: 1 !important;
|
|
5178
|
-
transition-duration: 0.001ms !important;
|
|
5179
|
-
scroll-behavior: auto !important;
|
|
5180
|
-
}
|
|
5181
|
-
:where(.og-root) .og-stream-ink {
|
|
5182
|
-
animation-delay: 0ms !important;
|
|
5183
|
-
}
|
|
5184
|
-
}
|
|
5185
|
-
@media (max-width: 39.999rem) {
|
|
5186
|
-
:where(.og-root).og-composer-footer:has([data-transcription-capturing]) .og-composer-controls > :not([data-transcription-capturing]),:where(.og-root) .og-composer-footer:has([data-transcription-capturing]) .og-composer-controls > :not([data-transcription-capturing]) {
|
|
5187
|
-
display: none;
|
|
5188
|
-
}
|
|
5189
|
-
:where(.og-root).og-composer-footer:has([data-transcription-capturing]) .og-composer-actions,:where(.og-root) .og-composer-footer:has([data-transcription-capturing]) .og-composer-actions {
|
|
5190
|
-
display: none;
|
|
5191
|
-
}
|
|
5192
|
-
}
|
|
5193
|
-
@media (forced-colors: active) {
|
|
5194
|
-
:where(.og-root) {
|
|
5195
|
-
--og-color-bg: Canvas;
|
|
5196
|
-
--og-color-surface-1: Canvas;
|
|
5197
|
-
--og-color-surface-2: Canvas;
|
|
5198
|
-
--og-color-surface-3: Canvas;
|
|
5199
|
-
--og-color-border: CanvasText;
|
|
5200
|
-
--og-color-border-strong: CanvasText;
|
|
5201
|
-
--og-color-fg: CanvasText;
|
|
5202
|
-
--og-color-fg-muted: CanvasText;
|
|
5203
|
-
--og-color-fg-subtle: CanvasText;
|
|
5204
|
-
--og-color-accent: CanvasText;
|
|
5205
|
-
--og-color-accent-strong: CanvasText;
|
|
5206
|
-
--og-color-accent-deep: CanvasText;
|
|
5207
|
-
--og-color-accent-fg: CanvasText;
|
|
5208
|
-
--og-color-accent-soft: Canvas;
|
|
5209
|
-
--og-color-status-queued: CanvasText;
|
|
5210
|
-
--og-color-status-running: CanvasText;
|
|
5211
|
-
--og-color-status-idle: CanvasText;
|
|
5212
|
-
--og-color-status-waiting: CanvasText;
|
|
5213
|
-
--og-color-status-failed: CanvasText;
|
|
5214
|
-
--og-color-status-cancelled: CanvasText;
|
|
5215
|
-
--og-color-danger: CanvasText;
|
|
5216
|
-
--og-color-diff-add-bg: Canvas;
|
|
5217
|
-
--og-color-diff-del-bg: Canvas;
|
|
5218
|
-
--og-shadow-sm: none;
|
|
5219
|
-
--og-shadow-md: none;
|
|
5220
|
-
--og-shadow-lg: none;
|
|
5221
|
-
--og-shadow-glow: none;
|
|
5222
|
-
}
|
|
5223
|
-
:where(.og-root) [role="tab"][aria-selected="true"] {
|
|
5224
|
-
outline: 2px solid Highlight;
|
|
5225
|
-
outline-offset: -2px;
|
|
5226
|
-
}
|
|
5227
|
-
}
|
|
5228
|
-
:where(.og-root).xterm .xterm-width-cache-measure-container,:where(.og-root) .xterm .xterm-width-cache-measure-container,:where(.og-root) .xterm-width-cache-measure-container,:where(.og-root) .xterm-width-cache-measure-container,:where(.og-root) .xterm .xterm-char-measure-element,:where(.og-root) .xterm .xterm-char-measure-element {
|
|
5229
|
-
position: absolute !important;
|
|
5230
|
-
top: 0;
|
|
5231
|
-
left: 0;
|
|
5232
|
-
visibility: hidden !important;
|
|
5233
|
-
pointer-events: none !important;
|
|
5234
|
-
z-index: -1 !important;
|
|
5235
|
-
}
|
|
5236
5320
|
:where(.og-root).og-composer[data-og-responsive-basis="container"],:where(.og-root) .og-composer[data-og-responsive-basis="container"] {
|
|
5237
5321
|
container: og-composer / inline-size;
|
|
5238
5322
|
--_og-c-input-x: 1rem;
|