opus-react 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +904 -561
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +649 -26
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +84 -4
- package/dist/index.d.ts +84 -4
- package/dist/index.js +1030 -691
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2179,7 +2179,7 @@
|
|
|
2179
2179
|
color: var(--opus-text);
|
|
2180
2180
|
font-size: var(--opus-control-font-size);
|
|
2181
2181
|
cursor: text;
|
|
2182
|
-
grid-template-columns: auto minmax(0, 1fr);
|
|
2182
|
+
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
2183
2183
|
transition: border-color .16s, box-shadow .16s;
|
|
2184
2184
|
display: grid;
|
|
2185
2185
|
box-shadow: inset 0 1px #ffffff0d, 0 14px 30px #0000000f;
|
|
@@ -2195,6 +2195,15 @@
|
|
|
2195
2195
|
border-color: color-mix(in srgb, var(--opus-error) 75%, transparent);
|
|
2196
2196
|
}
|
|
2197
2197
|
|
|
2198
|
+
.opus_1Q5xBh_endAdornment {
|
|
2199
|
+
min-width: 0;
|
|
2200
|
+
color: var(--opus-muted);
|
|
2201
|
+
justify-content: center;
|
|
2202
|
+
align-items: center;
|
|
2203
|
+
line-height: 1;
|
|
2204
|
+
display: inline-flex;
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2198
2207
|
.opus_1Q5xBh_prefixIcon {
|
|
2199
2208
|
width: var(--opus-control-prefix-size, 14px);
|
|
2200
2209
|
height: var(--opus-control-prefix-size, 14px);
|
|
@@ -2426,6 +2435,9 @@
|
|
|
2426
2435
|
min-height: var(--opus-control-height);
|
|
2427
2436
|
border: 1px solid var(--opus-border-strong);
|
|
2428
2437
|
background: color-mix(in srgb, var(--opus-input-bg) 88%, transparent);
|
|
2438
|
+
color: inherit;
|
|
2439
|
+
cursor: pointer;
|
|
2440
|
+
font: inherit;
|
|
2429
2441
|
border-radius: 999px;
|
|
2430
2442
|
padding: 2px;
|
|
2431
2443
|
transition: background .22s, border-color .22s, box-shadow .22s;
|
|
@@ -2434,6 +2446,11 @@
|
|
|
2434
2446
|
box-shadow: inset 0 1px #ffffff0d, 0 8px 20px #0000000f;
|
|
2435
2447
|
}
|
|
2436
2448
|
|
|
2449
|
+
.opus_SwerMA_toggle:focus-visible {
|
|
2450
|
+
outline: 2px solid var(--opus-accent);
|
|
2451
|
+
outline-offset: 2px;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2437
2454
|
.opus_SwerMA_indicator {
|
|
2438
2455
|
z-index: 0;
|
|
2439
2456
|
width: var(--theme-option-size);
|
|
@@ -2459,7 +2476,6 @@
|
|
|
2459
2476
|
width: var(--theme-option-size);
|
|
2460
2477
|
height: calc(var(--opus-control-height) - 4px);
|
|
2461
2478
|
color: var(--opus-muted);
|
|
2462
|
-
cursor: pointer;
|
|
2463
2479
|
background: none;
|
|
2464
2480
|
border: 0;
|
|
2465
2481
|
border-radius: 999px;
|
|
@@ -9452,7 +9468,7 @@
|
|
|
9452
9468
|
/* components/ResizeHandle/ResizeHandle.module.css */
|
|
9453
9469
|
.opus_PaKREB_handle {
|
|
9454
9470
|
z-index: 1;
|
|
9455
|
-
background: color-mix(in srgb, var(--opus-
|
|
9471
|
+
background: color-mix(in srgb, var(--opus-accent) 8%, transparent);
|
|
9456
9472
|
touch-action: none;
|
|
9457
9473
|
border: 0;
|
|
9458
9474
|
flex: 0 0 8px;
|
|
@@ -9477,7 +9493,7 @@
|
|
|
9477
9493
|
}
|
|
9478
9494
|
|
|
9479
9495
|
.opus_PaKREB_handle[data-background="accent"] {
|
|
9480
|
-
background: color-mix(in srgb, var(--opus-accent)
|
|
9496
|
+
background: color-mix(in srgb, var(--opus-accent) 8%, transparent);
|
|
9481
9497
|
}
|
|
9482
9498
|
|
|
9483
9499
|
.opus_PaKREB_handle[data-background="contrast"] {
|
|
@@ -9485,7 +9501,7 @@
|
|
|
9485
9501
|
}
|
|
9486
9502
|
|
|
9487
9503
|
.opus_PaKREB_handle:hover, .opus_PaKREB_handle:focus-visible {
|
|
9488
|
-
background: color-mix(in srgb, var(--opus-
|
|
9504
|
+
background: color-mix(in srgb, var(--opus-accent) 22%, transparent);
|
|
9489
9505
|
}
|
|
9490
9506
|
|
|
9491
9507
|
.opus_PaKREB_handle[data-background="none"]:hover, .opus_PaKREB_handle[data-background="none"]:focus-visible {
|
|
@@ -9494,7 +9510,7 @@
|
|
|
9494
9510
|
|
|
9495
9511
|
.opus_PaKREB_handle:after {
|
|
9496
9512
|
content: "";
|
|
9497
|
-
background: color-mix(in srgb, var(--opus-
|
|
9513
|
+
background: color-mix(in srgb, var(--opus-accent) 32%, transparent);
|
|
9498
9514
|
border-radius: 999px;
|
|
9499
9515
|
transition: background .16s, inset .16s;
|
|
9500
9516
|
position: absolute;
|
|
@@ -9549,8 +9565,10 @@
|
|
|
9549
9565
|
|
|
9550
9566
|
.opus_PaKREB_grip {
|
|
9551
9567
|
z-index: 1;
|
|
9552
|
-
border: 1px solid color-mix(in srgb, var(--opus-
|
|
9553
|
-
background-color: color-mix(in srgb, var(--opus-
|
|
9568
|
+
border: 1px solid color-mix(in srgb, var(--opus-accent) 52%, #070912);
|
|
9569
|
+
background-color: color-mix(in srgb, var(--opus-accent) 52%, #070912);
|
|
9570
|
+
box-shadow: 0 1px 3px #00000047,
|
|
9571
|
+
0 0 4px color-mix(in srgb, var(--opus-accent) 7%, transparent);
|
|
9554
9572
|
pointer-events: none;
|
|
9555
9573
|
border-radius: 999px;
|
|
9556
9574
|
justify-content: center;
|
|
@@ -9562,23 +9580,22 @@
|
|
|
9562
9580
|
top: 50%;
|
|
9563
9581
|
left: 50%;
|
|
9564
9582
|
transform: translate(-50%, -50%);
|
|
9565
|
-
box-shadow: 0 1px 3px #00000047, inset 0 1px #ffffff1f;
|
|
9566
9583
|
}
|
|
9567
9584
|
|
|
9568
9585
|
.opus_PaKREB_handle[data-orientation="vertical"] .opus_PaKREB_grip {
|
|
9569
9586
|
flex-direction: column;
|
|
9570
|
-
width:
|
|
9571
|
-
height:
|
|
9587
|
+
width: 10px;
|
|
9588
|
+
height: 26px;
|
|
9572
9589
|
}
|
|
9573
9590
|
|
|
9574
9591
|
.opus_PaKREB_handle[data-orientation="horizontal"] .opus_PaKREB_grip {
|
|
9575
9592
|
flex-direction: row;
|
|
9576
|
-
width:
|
|
9577
|
-
height:
|
|
9593
|
+
width: 26px;
|
|
9594
|
+
height: 10px;
|
|
9578
9595
|
}
|
|
9579
9596
|
|
|
9580
9597
|
.opus_PaKREB_dot {
|
|
9581
|
-
background:
|
|
9598
|
+
background: #070912;
|
|
9582
9599
|
border-radius: 50%;
|
|
9583
9600
|
flex: 0 0 4px;
|
|
9584
9601
|
width: 4px;
|
|
@@ -9586,8 +9603,8 @@
|
|
|
9586
9603
|
}
|
|
9587
9604
|
|
|
9588
9605
|
.opus_PaKREB_handle:hover .opus_PaKREB_grip, .opus_PaKREB_handle:focus-visible .opus_PaKREB_grip {
|
|
9589
|
-
border-color:
|
|
9590
|
-
background-color:
|
|
9606
|
+
border-color: var(--opus-accent);
|
|
9607
|
+
background-color: var(--opus-accent);
|
|
9591
9608
|
box-shadow: 0 1px 4px #00000052,
|
|
9592
9609
|
0 0 5px color-mix(in srgb, var(--opus-accent) 14%, transparent);
|
|
9593
9610
|
}
|
|
@@ -10756,7 +10773,7 @@
|
|
|
10756
10773
|
word-break: normal;
|
|
10757
10774
|
flex: auto;
|
|
10758
10775
|
justify-content: center;
|
|
10759
|
-
align-items:
|
|
10776
|
+
align-items: center;
|
|
10760
10777
|
margin: 0;
|
|
10761
10778
|
padding: 0 2px;
|
|
10762
10779
|
font-size: .8rem;
|
|
@@ -10766,10 +10783,19 @@
|
|
|
10766
10783
|
}
|
|
10767
10784
|
|
|
10768
10785
|
/* components/Tiles/Tiles.module.css */
|
|
10786
|
+
.opus_zD82gC_viewport {
|
|
10787
|
+
width: 100%;
|
|
10788
|
+
min-width: 0;
|
|
10789
|
+
position: relative;
|
|
10790
|
+
}
|
|
10791
|
+
|
|
10769
10792
|
.opus_zD82gC_row {
|
|
10770
|
-
--tile-
|
|
10793
|
+
--tile-width: 106px;
|
|
10794
|
+
--tile-height: 101px;
|
|
10771
10795
|
grid-auto-flow: column;
|
|
10772
|
-
grid-auto-columns: var(--tile-
|
|
10796
|
+
grid-auto-columns: var(--tile-width);
|
|
10797
|
+
scroll-behavior: smooth;
|
|
10798
|
+
scroll-snap-type: x mandatory;
|
|
10773
10799
|
background: none;
|
|
10774
10800
|
border: 0;
|
|
10775
10801
|
justify-content: start;
|
|
@@ -10783,28 +10809,81 @@
|
|
|
10783
10809
|
overflow-x: auto;
|
|
10784
10810
|
}
|
|
10785
10811
|
|
|
10812
|
+
.opus_zD82gC_moreButton {
|
|
10813
|
+
z-index: 2;
|
|
10814
|
+
width: 24px;
|
|
10815
|
+
height: 76px;
|
|
10816
|
+
color: color-mix(in srgb, var(--accent-color, #9b72ff) 72%, white);
|
|
10817
|
+
cursor: pointer;
|
|
10818
|
+
background: color-mix(in srgb, var(--surface-raised, #11182a) 84%, var(--accent-color, #9b72ff) 16%);
|
|
10819
|
+
border: 1px solid color-mix(in srgb, var(--accent-color, #9b72ff) 42%, transparent);
|
|
10820
|
+
backdrop-filter: blur(8px);
|
|
10821
|
+
place-items: center;
|
|
10822
|
+
padding: 0;
|
|
10823
|
+
font-size: 14px;
|
|
10824
|
+
transition: color .16s, background-color .16s, border-color .16s, box-shadow .16s;
|
|
10825
|
+
display: grid;
|
|
10826
|
+
position: absolute;
|
|
10827
|
+
top: 50%;
|
|
10828
|
+
transform: translateY(-50%);
|
|
10829
|
+
}
|
|
10830
|
+
|
|
10831
|
+
.opus_zD82gC_moreButton svg {
|
|
10832
|
+
width: 9px;
|
|
10833
|
+
height: 14px;
|
|
10834
|
+
filter: drop-shadow(0 0 3px color-mix(in srgb, var(--accent-color, #9b72ff) 72%, transparent));
|
|
10835
|
+
transition: filter .16s;
|
|
10836
|
+
}
|
|
10837
|
+
|
|
10838
|
+
.opus_zD82gC_previousButton {
|
|
10839
|
+
box-shadow: 10px 0 24px color-mix(in srgb, var(--surface-base, #080b18) 80%, transparent);
|
|
10840
|
+
border-left: 0;
|
|
10841
|
+
border-radius: 0 18px 18px 0;
|
|
10842
|
+
left: 0;
|
|
10843
|
+
}
|
|
10844
|
+
|
|
10845
|
+
.opus_zD82gC_nextButton {
|
|
10846
|
+
box-shadow: -10px 0 24px color-mix(in srgb, var(--surface-base, #080b18) 80%, transparent);
|
|
10847
|
+
border-right: 0;
|
|
10848
|
+
border-radius: 18px 0 0 18px;
|
|
10849
|
+
right: 0;
|
|
10850
|
+
}
|
|
10851
|
+
|
|
10852
|
+
.opus_zD82gC_moreButton:hover, .opus_zD82gC_moreButton:focus-visible {
|
|
10853
|
+
color: var(--surface-base, #080b18);
|
|
10854
|
+
background: var(--accent-color, #9b72ff);
|
|
10855
|
+
outline: none;
|
|
10856
|
+
}
|
|
10857
|
+
|
|
10858
|
+
.opus_zD82gC_moreButton:focus-visible {
|
|
10859
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color, #9b72ff) 35%, transparent);
|
|
10860
|
+
}
|
|
10861
|
+
|
|
10786
10862
|
.opus_zD82gC_row[data-layout="fill"] {
|
|
10787
10863
|
grid-auto-columns: unset;
|
|
10788
10864
|
justify-content: stretch;
|
|
10789
10865
|
}
|
|
10790
10866
|
|
|
10791
10867
|
.opus_zD82gC_tile {
|
|
10792
|
-
width: var(--tile-
|
|
10793
|
-
height: var(--tile-
|
|
10868
|
+
width: var(--tile-width);
|
|
10869
|
+
height: var(--tile-height);
|
|
10794
10870
|
}
|
|
10795
10871
|
|
|
10796
10872
|
.opus_zD82gC_tileItem {
|
|
10873
|
+
scroll-snap-align: start;
|
|
10874
|
+
scroll-snap-stop: normal;
|
|
10797
10875
|
min-width: 0;
|
|
10798
10876
|
}
|
|
10799
10877
|
|
|
10800
10878
|
.opus_zD82gC_row[data-layout="fill"] .opus_zD82gC_tile {
|
|
10801
10879
|
width: 100%;
|
|
10802
|
-
height: var(--tile-
|
|
10880
|
+
height: var(--tile-height);
|
|
10803
10881
|
}
|
|
10804
10882
|
|
|
10805
10883
|
@media (width <= 900px) {
|
|
10806
10884
|
.opus_zD82gC_row {
|
|
10807
|
-
--tile-
|
|
10885
|
+
--tile-width: 102px;
|
|
10886
|
+
--tile-height: 97px;
|
|
10808
10887
|
}
|
|
10809
10888
|
}
|
|
10810
10889
|
|
|
@@ -10943,6 +11022,18 @@
|
|
|
10943
11022
|
color: #ef4444;
|
|
10944
11023
|
}
|
|
10945
11024
|
|
|
11025
|
+
.opus_8DpwUV_trend[data-trend-tone="positive"] {
|
|
11026
|
+
color: #22c55e;
|
|
11027
|
+
}
|
|
11028
|
+
|
|
11029
|
+
.opus_8DpwUV_trend[data-trend-tone="negative"] {
|
|
11030
|
+
color: #ef4444;
|
|
11031
|
+
}
|
|
11032
|
+
|
|
11033
|
+
.opus_8DpwUV_trend[data-trend-tone="warning"] {
|
|
11034
|
+
color: #f59e0b;
|
|
11035
|
+
}
|
|
11036
|
+
|
|
10946
11037
|
.opus_8DpwUV_comparison {
|
|
10947
11038
|
color: var(--tile-muted);
|
|
10948
11039
|
margin: 0;
|
|
@@ -10992,24 +11083,86 @@
|
|
|
10992
11083
|
}
|
|
10993
11084
|
|
|
10994
11085
|
/* components/StatTiles/StatTiles.module.css */
|
|
11086
|
+
.opus_uhJd8v_viewport {
|
|
11087
|
+
width: calc(100% + var(--stat-tiles-edge-offset, 0px) + var(--stat-tiles-edge-offset, 0px));
|
|
11088
|
+
min-width: 0;
|
|
11089
|
+
margin-inline-start: calc(0px - var(--stat-tiles-edge-offset, 0px));
|
|
11090
|
+
position: relative;
|
|
11091
|
+
}
|
|
11092
|
+
|
|
10995
11093
|
.opus_uhJd8v_row {
|
|
10996
11094
|
--stat-tile-size: 12.75rem;
|
|
11095
|
+
--stat-tile-min: 9rem;
|
|
10997
11096
|
--stat-tile-height: 6.75rem;
|
|
10998
11097
|
grid-auto-flow: column;
|
|
10999
11098
|
grid-auto-columns: var(--stat-tile-size);
|
|
11099
|
+
scroll-behavior: smooth;
|
|
11100
|
+
width: 100%;
|
|
11101
|
+
min-width: 0;
|
|
11102
|
+
scroll-padding-inline: var(--stat-tiles-edge-offset, 0px);
|
|
11103
|
+
scroll-snap-type: x mandatory;
|
|
11104
|
+
padding: 0 var(--stat-tiles-edge-offset, 0px);
|
|
11105
|
+
box-sizing: border-box;
|
|
11000
11106
|
background: none;
|
|
11001
11107
|
border: 0;
|
|
11002
11108
|
justify-content: start;
|
|
11003
11109
|
align-items: start;
|
|
11004
11110
|
gap: 12px;
|
|
11005
|
-
width: 100%;
|
|
11006
|
-
min-width: 0;
|
|
11007
|
-
padding: 0;
|
|
11008
11111
|
display: grid;
|
|
11009
11112
|
position: relative;
|
|
11010
11113
|
overflow-x: auto;
|
|
11011
11114
|
}
|
|
11012
11115
|
|
|
11116
|
+
.opus_uhJd8v_moreButton {
|
|
11117
|
+
z-index: 2;
|
|
11118
|
+
width: 24px;
|
|
11119
|
+
height: 76px;
|
|
11120
|
+
color: color-mix(in srgb, var(--accent-color, #9b72ff) 72%, white);
|
|
11121
|
+
cursor: pointer;
|
|
11122
|
+
background: color-mix(in srgb, var(--surface-raised, #11182a) 84%, var(--accent-color, #9b72ff) 16%);
|
|
11123
|
+
border: 1px solid color-mix(in srgb, var(--accent-color, #9b72ff) 42%, transparent);
|
|
11124
|
+
backdrop-filter: blur(8px);
|
|
11125
|
+
place-items: center;
|
|
11126
|
+
padding: 0;
|
|
11127
|
+
font-size: 14px;
|
|
11128
|
+
transition: color .16s, background-color .16s, border-color .16s, box-shadow .16s;
|
|
11129
|
+
display: grid;
|
|
11130
|
+
position: absolute;
|
|
11131
|
+
top: 50%;
|
|
11132
|
+
transform: translateY(-50%);
|
|
11133
|
+
}
|
|
11134
|
+
|
|
11135
|
+
.opus_uhJd8v_moreButton svg {
|
|
11136
|
+
width: 9px;
|
|
11137
|
+
height: 14px;
|
|
11138
|
+
filter: drop-shadow(0 0 3px color-mix(in srgb, var(--accent-color, #9b72ff) 72%, transparent));
|
|
11139
|
+
transition: filter .16s;
|
|
11140
|
+
}
|
|
11141
|
+
|
|
11142
|
+
.opus_uhJd8v_moreButton:hover, .opus_uhJd8v_moreButton:focus-visible {
|
|
11143
|
+
color: var(--surface-base, #080b18);
|
|
11144
|
+
background: var(--accent-color, #9b72ff);
|
|
11145
|
+
outline: none;
|
|
11146
|
+
}
|
|
11147
|
+
|
|
11148
|
+
.opus_uhJd8v_moreButton:focus-visible {
|
|
11149
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color, #9b72ff) 35%, transparent);
|
|
11150
|
+
}
|
|
11151
|
+
|
|
11152
|
+
.opus_uhJd8v_previousButton {
|
|
11153
|
+
box-shadow: 10px 0 24px color-mix(in srgb, var(--surface-base, #080b18) 80%, transparent);
|
|
11154
|
+
border-left: 0;
|
|
11155
|
+
border-radius: 0 18px 18px 0;
|
|
11156
|
+
left: 0;
|
|
11157
|
+
}
|
|
11158
|
+
|
|
11159
|
+
.opus_uhJd8v_nextButton {
|
|
11160
|
+
box-shadow: -10px 0 24px color-mix(in srgb, var(--surface-base, #080b18) 80%, transparent);
|
|
11161
|
+
border-right: 0;
|
|
11162
|
+
border-radius: 18px 0 0 18px;
|
|
11163
|
+
right: 0;
|
|
11164
|
+
}
|
|
11165
|
+
|
|
11013
11166
|
.opus_uhJd8v_row[data-layout="fill"] {
|
|
11014
11167
|
grid-auto-columns: unset;
|
|
11015
11168
|
justify-content: stretch;
|
|
@@ -11020,6 +11173,8 @@
|
|
|
11020
11173
|
}
|
|
11021
11174
|
|
|
11022
11175
|
.opus_uhJd8v_statTileItem {
|
|
11176
|
+
scroll-snap-align: start;
|
|
11177
|
+
scroll-snap-stop: normal;
|
|
11023
11178
|
min-width: 0;
|
|
11024
11179
|
}
|
|
11025
11180
|
|
|
@@ -12434,6 +12589,44 @@
|
|
|
12434
12589
|
grid-area: opus_ThZ-Bi_composer;
|
|
12435
12590
|
}
|
|
12436
12591
|
|
|
12592
|
+
.opus_ThZ-Bi_root[data-active-tab="notes"] .opus_ThZ-Bi_composer, .opus_ThZ-Bi_root[data-active-tab="notes"] .opus_ThZ-Bi_feed, .opus_ThZ-Bi_root[data-active-tab="notes"] .opus_ThZ-Bi_footer {
|
|
12593
|
+
animation: .18s ease-out both opus_ThZ-Bi_notesActivityEnterFromLeft;
|
|
12594
|
+
}
|
|
12595
|
+
|
|
12596
|
+
.opus_ThZ-Bi_root[data-active-tab="activity"] .opus_ThZ-Bi_feed, .opus_ThZ-Bi_root[data-active-tab="activity"] .opus_ThZ-Bi_footer {
|
|
12597
|
+
animation: .18s ease-out both opus_ThZ-Bi_notesActivityEnterFromRight;
|
|
12598
|
+
}
|
|
12599
|
+
|
|
12600
|
+
@keyframes opus_ThZ-Bi_notesActivityEnterFromLeft {
|
|
12601
|
+
from {
|
|
12602
|
+
opacity: 0;
|
|
12603
|
+
transform: translateX(-6px);
|
|
12604
|
+
}
|
|
12605
|
+
|
|
12606
|
+
to {
|
|
12607
|
+
opacity: 1;
|
|
12608
|
+
transform: translateX(0);
|
|
12609
|
+
}
|
|
12610
|
+
}
|
|
12611
|
+
|
|
12612
|
+
@keyframes opus_ThZ-Bi_notesActivityEnterFromRight {
|
|
12613
|
+
from {
|
|
12614
|
+
opacity: 0;
|
|
12615
|
+
transform: translateX(6px);
|
|
12616
|
+
}
|
|
12617
|
+
|
|
12618
|
+
to {
|
|
12619
|
+
opacity: 1;
|
|
12620
|
+
transform: translateX(0);
|
|
12621
|
+
}
|
|
12622
|
+
}
|
|
12623
|
+
|
|
12624
|
+
@media (prefers-reduced-motion: reduce) {
|
|
12625
|
+
.opus_ThZ-Bi_root[data-active-tab] .opus_ThZ-Bi_composer, .opus_ThZ-Bi_root[data-active-tab] .opus_ThZ-Bi_feed, .opus_ThZ-Bi_root[data-active-tab] .opus_ThZ-Bi_footer {
|
|
12626
|
+
animation: none;
|
|
12627
|
+
}
|
|
12628
|
+
}
|
|
12629
|
+
|
|
12437
12630
|
.opus_ThZ-Bi_threadItems {
|
|
12438
12631
|
--thread-child-avatar-size: var(--notes-activity-avatar-size);
|
|
12439
12632
|
--thread-indent: .325rem;
|
|
@@ -15940,6 +16133,436 @@ button.opus_H9TUGj_root:hover, button.opus_H9TUGj_root:focus-visible {
|
|
|
15940
16133
|
font-size: .68rem;
|
|
15941
16134
|
}
|
|
15942
16135
|
|
|
16136
|
+
/* components/ApplicationHeader/ApplicationHeader.module.css */
|
|
16137
|
+
.opus_TjZbi8_root {
|
|
16138
|
+
--application-header-bg: var(--dashboard-section-bg, #070d18);
|
|
16139
|
+
--application-header-border: var(--dashboard-section-border, #60a5fa33);
|
|
16140
|
+
border: 1px solid var(--application-header-border);
|
|
16141
|
+
background: radial-gradient(110% 180% at 0 0, #6d28d97a, #0000 58%), radial-gradient(90% 140% at 22% 20%, #312e8142, #0000 62%), linear-gradient(#070c1a 0%, #06101d 100%);
|
|
16142
|
+
border-radius: 24px 24px 0 0;
|
|
16143
|
+
grid-template-columns: 242px minmax(0, 1fr);
|
|
16144
|
+
align-items: center;
|
|
16145
|
+
gap: 0;
|
|
16146
|
+
width: 100%;
|
|
16147
|
+
min-width: 0;
|
|
16148
|
+
min-height: 72px;
|
|
16149
|
+
padding: 0;
|
|
16150
|
+
display: grid;
|
|
16151
|
+
box-shadow: inset 0 1px #ffffff0f, 0 12px 28px #020617ad;
|
|
16152
|
+
container-type: inline-size;
|
|
16153
|
+
}
|
|
16154
|
+
|
|
16155
|
+
.opus_TjZbi8_root[data-connected="true"] {
|
|
16156
|
+
border-bottom-color: var(--application-header-border);
|
|
16157
|
+
border-radius: 14px;
|
|
16158
|
+
min-height: 82px;
|
|
16159
|
+
}
|
|
16160
|
+
|
|
16161
|
+
.opus_TjZbi8_brand {
|
|
16162
|
+
border-radius: 8px;
|
|
16163
|
+
align-items: center;
|
|
16164
|
+
width: 100%;
|
|
16165
|
+
max-width: none;
|
|
16166
|
+
height: 100%;
|
|
16167
|
+
padding: 6px 18px;
|
|
16168
|
+
display: inline-flex;
|
|
16169
|
+
}
|
|
16170
|
+
|
|
16171
|
+
.opus_TjZbi8_brand:focus-visible {
|
|
16172
|
+
outline: 2px solid var(--opus-accent);
|
|
16173
|
+
outline-offset: 4px;
|
|
16174
|
+
}
|
|
16175
|
+
|
|
16176
|
+
.opus_TjZbi8_logo {
|
|
16177
|
+
object-fit: contain;
|
|
16178
|
+
object-position: center;
|
|
16179
|
+
width: 178px;
|
|
16180
|
+
max-width: 100%;
|
|
16181
|
+
height: 58px;
|
|
16182
|
+
display: block;
|
|
16183
|
+
}
|
|
16184
|
+
|
|
16185
|
+
.opus_TjZbi8_search {
|
|
16186
|
+
--opus-control-height: 40px;
|
|
16187
|
+
--opus-control-font-size: .88rem;
|
|
16188
|
+
min-width: 0;
|
|
16189
|
+
}
|
|
16190
|
+
|
|
16191
|
+
.opus_TjZbi8_actions {
|
|
16192
|
+
justify-content: flex-end;
|
|
16193
|
+
align-items: center;
|
|
16194
|
+
gap: 8px;
|
|
16195
|
+
min-width: 0;
|
|
16196
|
+
display: flex;
|
|
16197
|
+
}
|
|
16198
|
+
|
|
16199
|
+
.opus_TjZbi8_actionGroup {
|
|
16200
|
+
align-items: center;
|
|
16201
|
+
gap: 8px;
|
|
16202
|
+
display: inline-flex;
|
|
16203
|
+
}
|
|
16204
|
+
|
|
16205
|
+
.opus_TjZbi8_actions > [role="separator"] {
|
|
16206
|
+
background: color-mix(in srgb, var(--opus-muted) 38%, transparent);
|
|
16207
|
+
flex: 0 0 1px;
|
|
16208
|
+
align-self: center;
|
|
16209
|
+
min-height: 30px;
|
|
16210
|
+
}
|
|
16211
|
+
|
|
16212
|
+
.opus_TjZbi8_createButton {
|
|
16213
|
+
border: 1px solid color-mix(in srgb, var(--opus-accent) 34%, var(--opus-border));
|
|
16214
|
+
background: color-mix(in srgb, var(--opus-accent) 10%, var(--opus-panel));
|
|
16215
|
+
width: 2.1rem;
|
|
16216
|
+
height: 2.1rem;
|
|
16217
|
+
color: color-mix(in srgb, var(--opus-accent) 78%, white);
|
|
16218
|
+
cursor: pointer;
|
|
16219
|
+
border-radius: 10px;
|
|
16220
|
+
flex: none;
|
|
16221
|
+
place-items: center;
|
|
16222
|
+
padding: 0;
|
|
16223
|
+
font-size: 1rem;
|
|
16224
|
+
transition: background .16s, border-color .16s, transform .16s;
|
|
16225
|
+
display: inline-grid;
|
|
16226
|
+
}
|
|
16227
|
+
|
|
16228
|
+
.opus_TjZbi8_createButton svg {
|
|
16229
|
+
width: .78rem;
|
|
16230
|
+
height: .78rem;
|
|
16231
|
+
}
|
|
16232
|
+
|
|
16233
|
+
.opus_TjZbi8_createButton:hover {
|
|
16234
|
+
border-color: color-mix(in srgb, var(--opus-accent) 72%, var(--opus-border));
|
|
16235
|
+
background: color-mix(in srgb, var(--opus-accent) 18%, var(--opus-panel));
|
|
16236
|
+
}
|
|
16237
|
+
|
|
16238
|
+
.opus_TjZbi8_createButton:active {
|
|
16239
|
+
transform: translateY(1px);
|
|
16240
|
+
}
|
|
16241
|
+
|
|
16242
|
+
.opus_TjZbi8_createButton:focus-visible {
|
|
16243
|
+
outline: 2px solid var(--opus-accent);
|
|
16244
|
+
outline-offset: 2px;
|
|
16245
|
+
}
|
|
16246
|
+
|
|
16247
|
+
.opus_TjZbi8_createMenuIcon {
|
|
16248
|
+
flex: 0 0 1rem;
|
|
16249
|
+
justify-content: center;
|
|
16250
|
+
align-items: center;
|
|
16251
|
+
width: 1rem;
|
|
16252
|
+
height: 1rem;
|
|
16253
|
+
display: inline-flex;
|
|
16254
|
+
}
|
|
16255
|
+
|
|
16256
|
+
.opus_TjZbi8_createMenuIcon svg {
|
|
16257
|
+
width: .875rem;
|
|
16258
|
+
height: .875rem;
|
|
16259
|
+
}
|
|
16260
|
+
|
|
16261
|
+
.opus_TjZbi8_profile {
|
|
16262
|
+
width: min(190px, 18vw);
|
|
16263
|
+
min-width: 150px;
|
|
16264
|
+
}
|
|
16265
|
+
|
|
16266
|
+
@container (width <= 1200px) {
|
|
16267
|
+
.opus_TjZbi8_profile {
|
|
16268
|
+
width: 46px;
|
|
16269
|
+
min-width: 46px;
|
|
16270
|
+
overflow: hidden;
|
|
16271
|
+
}
|
|
16272
|
+
}
|
|
16273
|
+
|
|
16274
|
+
.opus_TjZbi8_content {
|
|
16275
|
+
background: radial-gradient(75% 120% at 0 0, #1d4ed81a, #0000 60%), linear-gradient(#0e182b, #07111f);
|
|
16276
|
+
border: 1px solid #60a5fa2e;
|
|
16277
|
+
border-top-color: #797bf86b;
|
|
16278
|
+
border-radius: 22px 22px 0 0;
|
|
16279
|
+
grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
|
|
16280
|
+
align-items: center;
|
|
16281
|
+
gap: 16px;
|
|
16282
|
+
width: 100%;
|
|
16283
|
+
min-width: 0;
|
|
16284
|
+
height: calc(100% + 2px);
|
|
16285
|
+
min-height: 72px;
|
|
16286
|
+
margin-block: -1px;
|
|
16287
|
+
padding: 0 18px 0 16px;
|
|
16288
|
+
display: grid;
|
|
16289
|
+
box-shadow: inset 0 1px #ffffff0d, -10px 0 28px #02061742;
|
|
16290
|
+
}
|
|
16291
|
+
|
|
16292
|
+
.opus_TjZbi8_root[data-connected="true"] .opus_TjZbi8_content {
|
|
16293
|
+
border-color: #0000;
|
|
16294
|
+
border-left-color: var(--application-header-border);
|
|
16295
|
+
background: radial-gradient(75% 120% at 0 0, #1d4ed81a, #0000 60%), linear-gradient(90deg, #0d172a 0%, #07111f 66%, #0000 100%);
|
|
16296
|
+
border-right: 0;
|
|
16297
|
+
border-radius: 14px 0 0 14px;
|
|
16298
|
+
height: 62px;
|
|
16299
|
+
min-height: 62px;
|
|
16300
|
+
margin-block: 0;
|
|
16301
|
+
position: relative;
|
|
16302
|
+
}
|
|
16303
|
+
|
|
16304
|
+
.opus_TjZbi8_root[data-connected="true"] .opus_TjZbi8_content:before, .opus_TjZbi8_root[data-connected="true"] .opus_TjZbi8_content:after {
|
|
16305
|
+
background: linear-gradient(90deg,
|
|
16306
|
+
var(--application-header-border) 0%,
|
|
16307
|
+
var(--application-header-border) 66%,
|
|
16308
|
+
transparent 100%);
|
|
16309
|
+
content: "";
|
|
16310
|
+
pointer-events: none;
|
|
16311
|
+
height: 1px;
|
|
16312
|
+
position: absolute;
|
|
16313
|
+
left: 10px;
|
|
16314
|
+
right: 0;
|
|
16315
|
+
}
|
|
16316
|
+
|
|
16317
|
+
.opus_TjZbi8_root[data-connected="true"] .opus_TjZbi8_content:before {
|
|
16318
|
+
top: -1px;
|
|
16319
|
+
}
|
|
16320
|
+
|
|
16321
|
+
.opus_TjZbi8_root[data-connected="true"] .opus_TjZbi8_content:after {
|
|
16322
|
+
bottom: -1px;
|
|
16323
|
+
}
|
|
16324
|
+
|
|
16325
|
+
[data-shell-theme="light"] .opus_TjZbi8_root, [data-theme="light"] .opus_TjZbi8_root {
|
|
16326
|
+
--application-header-bg: #f7f8fffa;
|
|
16327
|
+
--application-header-border: #b4b3e8;
|
|
16328
|
+
--dashboard-section-bg: #f7f8fffa;
|
|
16329
|
+
--dashboard-section-panel: #fff;
|
|
16330
|
+
--dashboard-section-text: #17132f;
|
|
16331
|
+
--dashboard-section-muted: #655f83;
|
|
16332
|
+
color: #17132f;
|
|
16333
|
+
background: radial-gradient(110% 180% at 0 0, #7c3aed47, #0000 60%), radial-gradient(90% 140% at 22% 20%, #a78bfa38, #0000 64%), linear-gradient(#f5f3ff 0%, #eef2ff 100%);
|
|
16334
|
+
box-shadow: inset 0 1px #ffffffe6, 0 12px 28px #4338ca24;
|
|
16335
|
+
}
|
|
16336
|
+
|
|
16337
|
+
[data-shell-theme="light"] .opus_TjZbi8_content, [data-theme="light"] .opus_TjZbi8_content {
|
|
16338
|
+
background: radial-gradient(75% 120% at 0 0, #dbeafe8a, #0000 62%), linear-gradient(#fffffffa, #f5f7fffa);
|
|
16339
|
+
border-color: #b5aae4 #babbe6 #babbe6;
|
|
16340
|
+
box-shadow: inset 0 1px #fffffffa, -10px 0 28px #4338ca14;
|
|
16341
|
+
}
|
|
16342
|
+
|
|
16343
|
+
[data-shell-theme="light"] .opus_TjZbi8_root[data-connected="true"] .opus_TjZbi8_content, [data-theme="light"] .opus_TjZbi8_root[data-connected="true"] .opus_TjZbi8_content {
|
|
16344
|
+
border-color: #0000;
|
|
16345
|
+
border-left-color: var(--application-header-border);
|
|
16346
|
+
background: radial-gradient(75% 120% at 0 0, #dbeafe8a, #0000 62%), linear-gradient(90deg, #fffffffa 0%, #f5f7ff 66%, #0000 100%);
|
|
16347
|
+
border-right: 0;
|
|
16348
|
+
}
|
|
16349
|
+
|
|
16350
|
+
@media (width <= 1100px) {
|
|
16351
|
+
.opus_TjZbi8_root {
|
|
16352
|
+
grid-template-columns: 150px minmax(0, 1fr);
|
|
16353
|
+
}
|
|
16354
|
+
|
|
16355
|
+
.opus_TjZbi8_content {
|
|
16356
|
+
grid-template-columns: minmax(220px, 1fr) auto;
|
|
16357
|
+
}
|
|
16358
|
+
|
|
16359
|
+
.opus_TjZbi8_logo {
|
|
16360
|
+
width: 132px;
|
|
16361
|
+
max-width: 132px;
|
|
16362
|
+
height: 48px;
|
|
16363
|
+
}
|
|
16364
|
+
|
|
16365
|
+
.opus_TjZbi8_profile {
|
|
16366
|
+
width: 46px;
|
|
16367
|
+
min-width: 46px;
|
|
16368
|
+
overflow: hidden;
|
|
16369
|
+
}
|
|
16370
|
+
}
|
|
16371
|
+
|
|
16372
|
+
@media (width <= 780px) {
|
|
16373
|
+
.opus_TjZbi8_root {
|
|
16374
|
+
grid-template-columns: 120px minmax(0, 1fr);
|
|
16375
|
+
min-height: 64px;
|
|
16376
|
+
}
|
|
16377
|
+
|
|
16378
|
+
.opus_TjZbi8_content {
|
|
16379
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
16380
|
+
min-height: 62px;
|
|
16381
|
+
}
|
|
16382
|
+
|
|
16383
|
+
.opus_TjZbi8_search {
|
|
16384
|
+
display: none;
|
|
16385
|
+
}
|
|
16386
|
+
|
|
16387
|
+
.opus_TjZbi8_actions {
|
|
16388
|
+
grid-column: 2;
|
|
16389
|
+
}
|
|
16390
|
+
|
|
16391
|
+
.opus_TjZbi8_actions > :nth-of-type(n+5) {
|
|
16392
|
+
display: none;
|
|
16393
|
+
}
|
|
16394
|
+
}
|
|
16395
|
+
|
|
16396
|
+
@media (width <= 520px) {
|
|
16397
|
+
.opus_TjZbi8_root {
|
|
16398
|
+
padding: 10px 12px;
|
|
16399
|
+
}
|
|
16400
|
+
|
|
16401
|
+
.opus_TjZbi8_actions {
|
|
16402
|
+
gap: 6px;
|
|
16403
|
+
}
|
|
16404
|
+
|
|
16405
|
+
.opus_TjZbi8_profile {
|
|
16406
|
+
display: none;
|
|
16407
|
+
}
|
|
16408
|
+
}
|
|
16409
|
+
|
|
16410
|
+
/* components/ApplicationFooter/ApplicationFooter.module.css */
|
|
16411
|
+
.opus_mphyzH_root {
|
|
16412
|
+
--application-footer-border: var(--dashboard-section-border, #60a5fa33);
|
|
16413
|
+
border: 1px solid var(--application-footer-border);
|
|
16414
|
+
width: 100%;
|
|
16415
|
+
min-width: 0;
|
|
16416
|
+
min-height: 58px;
|
|
16417
|
+
color: var(--dashboard-section-text, var(--opus-text));
|
|
16418
|
+
background: radial-gradient(110% 180% at 0 100%, #6d28d957, #0000 58%), radial-gradient(90% 140% at 22% 80%, #312e8138, #0000 62%), linear-gradient(#070c1a 0%, #06101d 100%);
|
|
16419
|
+
border-radius: 14px;
|
|
16420
|
+
grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
|
|
16421
|
+
align-items: center;
|
|
16422
|
+
padding: 8px 18px;
|
|
16423
|
+
display: grid;
|
|
16424
|
+
box-shadow: inset 0 1px #ffffff0f, 0 12px 28px #020617ad;
|
|
16425
|
+
}
|
|
16426
|
+
|
|
16427
|
+
.opus_mphyzH_brand, .opus_mphyzH_actions, .opus_mphyzH_actionSlot {
|
|
16428
|
+
align-items: center;
|
|
16429
|
+
display: flex;
|
|
16430
|
+
}
|
|
16431
|
+
|
|
16432
|
+
.opus_mphyzH_brand {
|
|
16433
|
+
gap: 8px;
|
|
16434
|
+
min-width: 0;
|
|
16435
|
+
}
|
|
16436
|
+
|
|
16437
|
+
.opus_mphyzH_logo {
|
|
16438
|
+
object-fit: contain;
|
|
16439
|
+
width: 86px;
|
|
16440
|
+
height: 34px;
|
|
16441
|
+
}
|
|
16442
|
+
|
|
16443
|
+
.opus_mphyzH_product {
|
|
16444
|
+
color: var(--opus-muted);
|
|
16445
|
+
font-weight: 650;
|
|
16446
|
+
}
|
|
16447
|
+
|
|
16448
|
+
.opus_mphyzH_version {
|
|
16449
|
+
color: var(--opus-muted);
|
|
16450
|
+
margin-left: 10px;
|
|
16451
|
+
font-size: .72rem;
|
|
16452
|
+
}
|
|
16453
|
+
|
|
16454
|
+
.opus_mphyzH_copyright {
|
|
16455
|
+
color: var(--opus-muted);
|
|
16456
|
+
text-align: center;
|
|
16457
|
+
}
|
|
16458
|
+
|
|
16459
|
+
.opus_mphyzH_actions {
|
|
16460
|
+
justify-content: flex-end;
|
|
16461
|
+
gap: 8px;
|
|
16462
|
+
}
|
|
16463
|
+
|
|
16464
|
+
.opus_mphyzH_actionSlot {
|
|
16465
|
+
gap: 8px;
|
|
16466
|
+
}
|
|
16467
|
+
|
|
16468
|
+
.opus_mphyzH_actionSlot [role="separator"] {
|
|
16469
|
+
height: 24px;
|
|
16470
|
+
}
|
|
16471
|
+
|
|
16472
|
+
.opus_mphyzH_action {
|
|
16473
|
+
width: 32px;
|
|
16474
|
+
height: 32px;
|
|
16475
|
+
color: var(--opus-muted);
|
|
16476
|
+
cursor: pointer;
|
|
16477
|
+
background: none;
|
|
16478
|
+
border: 0;
|
|
16479
|
+
border-radius: 8px;
|
|
16480
|
+
place-items: center;
|
|
16481
|
+
padding: 0;
|
|
16482
|
+
display: grid;
|
|
16483
|
+
}
|
|
16484
|
+
|
|
16485
|
+
.opus_mphyzH_action:hover, .opus_mphyzH_action:focus-visible {
|
|
16486
|
+
background: color-mix(in srgb, var(--opus-text) 7%, transparent);
|
|
16487
|
+
color: var(--opus-text);
|
|
16488
|
+
outline: none;
|
|
16489
|
+
}
|
|
16490
|
+
|
|
16491
|
+
.opus_mphyzH_action:focus-visible {
|
|
16492
|
+
outline: 2px solid var(--opus-accent);
|
|
16493
|
+
outline-offset: 2px;
|
|
16494
|
+
}
|
|
16495
|
+
|
|
16496
|
+
.opus_mphyzH_action svg {
|
|
16497
|
+
width: 15px;
|
|
16498
|
+
height: 15px;
|
|
16499
|
+
}
|
|
16500
|
+
|
|
16501
|
+
[data-shell-theme="light"] .opus_mphyzH_root, [data-theme="light"] .opus_mphyzH_root {
|
|
16502
|
+
--application-footer-border: #b4b3e8;
|
|
16503
|
+
color: #17132f;
|
|
16504
|
+
background: radial-gradient(110% 180% at 0 100%, #7c3aed3d, #0000 60%), radial-gradient(90% 140% at 22% 80%, #a78bfa2e, #0000 64%), linear-gradient(#f5f3ff 0%, #eef2ff 100%);
|
|
16505
|
+
box-shadow: inset 0 1px #ffffffe6, 0 12px 28px #4338ca24;
|
|
16506
|
+
}
|
|
16507
|
+
|
|
16508
|
+
@media (width <= 720px) {
|
|
16509
|
+
.opus_mphyzH_root {
|
|
16510
|
+
grid-template-columns: 1fr auto;
|
|
16511
|
+
}
|
|
16512
|
+
|
|
16513
|
+
.opus_mphyzH_copyright, .opus_mphyzH_version {
|
|
16514
|
+
display: none;
|
|
16515
|
+
}
|
|
16516
|
+
}
|
|
16517
|
+
|
|
16518
|
+
/* components/WelcomeMessage/WelcomeMessage.module.css */
|
|
16519
|
+
.opus_cZqjKS_root {
|
|
16520
|
+
min-width: 0;
|
|
16521
|
+
}
|
|
16522
|
+
|
|
16523
|
+
.opus_cZqjKS_heading {
|
|
16524
|
+
color: var(--dashboard-section-text, var(--opus-text));
|
|
16525
|
+
letter-spacing: -.025em;
|
|
16526
|
+
margin: 0;
|
|
16527
|
+
font-size: clamp(1.5rem, 2.4vw, 2rem);
|
|
16528
|
+
font-weight: 650;
|
|
16529
|
+
line-height: 1.15;
|
|
16530
|
+
}
|
|
16531
|
+
|
|
16532
|
+
.opus_cZqjKS_wave {
|
|
16533
|
+
transform-origin: 70% 70%;
|
|
16534
|
+
margin-left: .45em;
|
|
16535
|
+
font-size: .88em;
|
|
16536
|
+
display: inline-block;
|
|
16537
|
+
}
|
|
16538
|
+
|
|
16539
|
+
.opus_cZqjKS_subtitle {
|
|
16540
|
+
color: var(--dashboard-section-muted, var(--opus-muted));
|
|
16541
|
+
margin: 8px 0 0;
|
|
16542
|
+
font-size: .95rem;
|
|
16543
|
+
line-height: 1.5;
|
|
16544
|
+
}
|
|
16545
|
+
|
|
16546
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
16547
|
+
.opus_cZqjKS_root:hover .opus_cZqjKS_wave {
|
|
16548
|
+
animation: .65s ease-in-out opus_cZqjKS_welcome-wave;
|
|
16549
|
+
}
|
|
16550
|
+
}
|
|
16551
|
+
|
|
16552
|
+
@keyframes opus_cZqjKS_welcome-wave {
|
|
16553
|
+
0%, 100% {
|
|
16554
|
+
transform: rotate(0);
|
|
16555
|
+
}
|
|
16556
|
+
|
|
16557
|
+
30% {
|
|
16558
|
+
transform: rotate(15deg);
|
|
16559
|
+
}
|
|
16560
|
+
|
|
16561
|
+
65% {
|
|
16562
|
+
transform: rotate(-8deg);
|
|
16563
|
+
}
|
|
16564
|
+
}
|
|
16565
|
+
|
|
15943
16566
|
/* components/FontPicker/FontPicker.module.css */
|
|
15944
16567
|
.opus_ub1fhz_field {
|
|
15945
16568
|
align-items: center;
|