opus-react 0.2.29 → 0.2.31
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 +3264 -2454
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +640 -84
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +151 -26
- package/dist/index.d.ts +151 -26
- package/dist/index.js +3162 -2350
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,13 +1,71 @@
|
|
|
1
|
+
/* components/fields/shared/inputControlSizes.module.css */
|
|
2
|
+
.opus_8ChDQJ_sizeSm {
|
|
3
|
+
--opus-control-height: 24px;
|
|
4
|
+
--opus-control-padding-x: 8px;
|
|
5
|
+
--opus-control-padding-y: 6px;
|
|
6
|
+
--opus-control-font-size: .78rem;
|
|
7
|
+
--opus-control-prefix-gap: 6px;
|
|
8
|
+
--opus-control-prefix-size: 12px;
|
|
9
|
+
--opus-control-suffix-inset: 30px;
|
|
10
|
+
--opus-button-padding-x: 10px;
|
|
11
|
+
--opus-switch-width: 42px;
|
|
12
|
+
--opus-switch-thumb: 16px;
|
|
13
|
+
--opus-switch-travel: 18px;
|
|
14
|
+
--opus-range-thumb: 18px;
|
|
15
|
+
--opus-range-track: 6px;
|
|
16
|
+
--opus-file-min-height: 80px;
|
|
17
|
+
--opus-file-padding-y: 12px;
|
|
18
|
+
--opus-file-padding-x: 16px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.opus_8ChDQJ_sizeMd {
|
|
22
|
+
--opus-control-height: 28px;
|
|
23
|
+
--opus-control-padding-x: 10px;
|
|
24
|
+
--opus-control-padding-y: 8px;
|
|
25
|
+
--opus-control-font-size: .86rem;
|
|
26
|
+
--opus-control-prefix-gap: 8px;
|
|
27
|
+
--opus-control-prefix-size: 14px;
|
|
28
|
+
--opus-control-suffix-inset: 38px;
|
|
29
|
+
--opus-button-padding-x: 12px;
|
|
30
|
+
--opus-switch-width: 50px;
|
|
31
|
+
--opus-switch-thumb: 20px;
|
|
32
|
+
--opus-switch-travel: 22px;
|
|
33
|
+
--opus-range-thumb: 22px;
|
|
34
|
+
--opus-range-track: 8px;
|
|
35
|
+
--opus-file-min-height: 96px;
|
|
36
|
+
--opus-file-padding-y: 16px;
|
|
37
|
+
--opus-file-padding-x: 20px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.opus_8ChDQJ_sizeLg {
|
|
41
|
+
--opus-control-height: 36px;
|
|
42
|
+
--opus-control-padding-x: 14px;
|
|
43
|
+
--opus-control-padding-y: 10px;
|
|
44
|
+
--opus-control-font-size: .95rem;
|
|
45
|
+
--opus-control-prefix-gap: 10px;
|
|
46
|
+
--opus-control-prefix-size: 16px;
|
|
47
|
+
--opus-control-suffix-inset: 44px;
|
|
48
|
+
--opus-button-padding-x: 16px;
|
|
49
|
+
--opus-switch-width: 58px;
|
|
50
|
+
--opus-switch-thumb: 24px;
|
|
51
|
+
--opus-switch-travel: 26px;
|
|
52
|
+
--opus-range-thumb: 26px;
|
|
53
|
+
--opus-range-track: 10px;
|
|
54
|
+
--opus-file-min-height: 112px;
|
|
55
|
+
--opus-file-padding-y: 20px;
|
|
56
|
+
--opus-file-padding-x: 24px;
|
|
57
|
+
}
|
|
58
|
+
|
|
1
59
|
/* components/fields/Button/Button.module.css */
|
|
2
60
|
.opus_lZkc26_button {
|
|
3
61
|
min-height: var(--opus-control-height);
|
|
62
|
+
padding: 0 var(--opus-button-padding-x, 12px);
|
|
4
63
|
border-radius: var(--opus-input-radius);
|
|
5
64
|
cursor: pointer;
|
|
6
65
|
font-size: var(--opus-control-font-size);
|
|
7
66
|
border: 1px solid #0000;
|
|
8
67
|
justify-content: center;
|
|
9
68
|
align-items: center;
|
|
10
|
-
padding: 0 12px;
|
|
11
69
|
font-weight: 700;
|
|
12
70
|
line-height: 1;
|
|
13
71
|
transition: border-color .16s, background .16s, box-shadow .16s, color .16s;
|
|
@@ -227,13 +285,21 @@
|
|
|
227
285
|
}
|
|
228
286
|
|
|
229
287
|
.opus_zNi12Z_compactControl.opus_zNi12Z_labelLeft {
|
|
288
|
+
grid-template-areas: "opus_zNi12Z_label opus_zNi12Z_control"
|
|
289
|
+
"opus_zNi12Z_error .";
|
|
230
290
|
grid-template-columns: minmax(0, 1fr) var(--opus-control-height) !important;
|
|
231
291
|
}
|
|
232
292
|
|
|
233
293
|
.opus_zNi12Z_compactControl.opus_zNi12Z_labelRight {
|
|
294
|
+
grid-template-areas: "opus_zNi12Z_control opus_zNi12Z_label"
|
|
295
|
+
". opus_zNi12Z_error";
|
|
234
296
|
grid-template-columns: var(--opus-control-height) minmax(0, 1fr) !important;
|
|
235
297
|
}
|
|
236
298
|
|
|
299
|
+
.opus_zNi12Z_compactControl.opus_zNi12Z_labelRight .opus_zNi12Z_errorFlagged {
|
|
300
|
+
text-align: right;
|
|
301
|
+
}
|
|
302
|
+
|
|
237
303
|
.opus_zNi12Z_compactControl .opus_zNi12Z_controlFlagged {
|
|
238
304
|
justify-self: end;
|
|
239
305
|
width: auto;
|
|
@@ -253,6 +319,20 @@
|
|
|
253
319
|
align-items: center;
|
|
254
320
|
}
|
|
255
321
|
|
|
322
|
+
.opus_zNi12Z_fitContent.opus_zNi12Z_labelLeft {
|
|
323
|
+
grid-template-areas: "opus_zNi12Z_label opus_zNi12Z_control"
|
|
324
|
+
"opus_zNi12Z_error .";
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.opus_zNi12Z_fitContent.opus_zNi12Z_labelRight {
|
|
328
|
+
grid-template-areas: "opus_zNi12Z_control opus_zNi12Z_label"
|
|
329
|
+
". opus_zNi12Z_error";
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.opus_zNi12Z_fitContent.opus_zNi12Z_labelRight .opus_zNi12Z_errorFlagged {
|
|
333
|
+
text-align: right;
|
|
334
|
+
}
|
|
335
|
+
|
|
256
336
|
.opus_zNi12Z_fitContent .opus_zNi12Z_label, .opus_zNi12Z_fitContent .opus_zNi12Z_labelFlagged {
|
|
257
337
|
white-space: nowrap;
|
|
258
338
|
width: auto;
|
|
@@ -442,6 +522,7 @@
|
|
|
442
522
|
.opus_Z7jeX4_picker {
|
|
443
523
|
width: 100%;
|
|
444
524
|
min-height: var(--opus-control-height);
|
|
525
|
+
padding: 0 var(--opus-control-padding-x, 10px);
|
|
445
526
|
border: 1px solid var(--opus-border-strong);
|
|
446
527
|
border-radius: var(--opus-input-radius);
|
|
447
528
|
background: var(--opus-input-fill);
|
|
@@ -451,7 +532,6 @@
|
|
|
451
532
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
452
533
|
align-items: center;
|
|
453
534
|
gap: 10px;
|
|
454
|
-
padding: 0 10px;
|
|
455
535
|
display: grid;
|
|
456
536
|
position: relative;
|
|
457
537
|
box-shadow: inset 0 1px #ffffff0d, 0 14px 30px #0000000f;
|
|
@@ -534,12 +614,12 @@
|
|
|
534
614
|
.opus_G3y11z_input {
|
|
535
615
|
width: 100%;
|
|
536
616
|
min-height: var(--opus-control-height);
|
|
617
|
+
padding: 0 var(--opus-control-padding-x, 10px);
|
|
537
618
|
border: 1px solid var(--opus-border-strong);
|
|
538
619
|
border-radius: var(--opus-input-radius);
|
|
539
620
|
background: var(--opus-input-bg);
|
|
540
621
|
color: var(--opus-text);
|
|
541
622
|
font-size: var(--opus-control-font-size);
|
|
542
|
-
padding: 0 10px;
|
|
543
623
|
box-shadow: inset 0 1px #ffffff0d, 0 14px 30px #0000000f;
|
|
544
624
|
}
|
|
545
625
|
|
|
@@ -560,25 +640,25 @@
|
|
|
560
640
|
|
|
561
641
|
/* components/fields/HiddenField/HiddenField.module.css */
|
|
562
642
|
.opus_kL1YXS_preview {
|
|
643
|
+
padding: var(--opus-control-padding-y, 8px) var(--opus-control-padding-x, 10px);
|
|
563
644
|
border: 1px dashed var(--opus-border);
|
|
564
645
|
border-radius: var(--opus-input-radius);
|
|
565
646
|
background: color-mix(in srgb, var(--opus-input-bg) 70%, transparent);
|
|
566
647
|
gap: 6px;
|
|
567
|
-
padding: 10px 12px;
|
|
568
648
|
display: grid;
|
|
569
649
|
}
|
|
570
650
|
|
|
571
651
|
.opus_kL1YXS_note {
|
|
572
652
|
color: var(--opus-muted);
|
|
653
|
+
font-size: calc(var(--opus-control-font-size) - .08rem);
|
|
573
654
|
margin: 0;
|
|
574
|
-
font-size: .78rem;
|
|
575
655
|
}
|
|
576
656
|
|
|
577
657
|
.opus_kL1YXS_meta {
|
|
578
658
|
color: var(--opus-text);
|
|
579
659
|
font-family: var(--font-ibm-plex-mono), monospace;
|
|
660
|
+
font-size: calc(var(--opus-control-font-size) - .14rem);
|
|
580
661
|
word-break: break-all;
|
|
581
|
-
font-size: .72rem;
|
|
582
662
|
}
|
|
583
663
|
|
|
584
664
|
/* components/fields/FileField/FileField.module.css */
|
|
@@ -589,6 +669,8 @@
|
|
|
589
669
|
}
|
|
590
670
|
|
|
591
671
|
.opus_aOsPA7_drop {
|
|
672
|
+
min-height: var(--opus-file-min-height, 96px);
|
|
673
|
+
padding: var(--opus-file-padding-y, 16px) var(--opus-file-padding-x, 20px);
|
|
592
674
|
border-radius: var(--opus-input-radius-large);
|
|
593
675
|
border: 1px dashed var(--opus-border-strong);
|
|
594
676
|
background: var(--opus-input-fill);
|
|
@@ -596,8 +678,6 @@
|
|
|
596
678
|
justify-content: center;
|
|
597
679
|
align-items: center;
|
|
598
680
|
gap: 14px;
|
|
599
|
-
min-height: 96px;
|
|
600
|
-
padding: 16px 20px;
|
|
601
681
|
transition: border-color .16s, background-color .16s;
|
|
602
682
|
display: flex;
|
|
603
683
|
position: relative;
|
|
@@ -633,7 +713,7 @@
|
|
|
633
713
|
|
|
634
714
|
.opus_aOsPA7_title {
|
|
635
715
|
color: var(--opus-text);
|
|
636
|
-
font-size:
|
|
716
|
+
font-size: var(--opus-control-font-size);
|
|
637
717
|
line-height: 1.35;
|
|
638
718
|
}
|
|
639
719
|
|
|
@@ -648,14 +728,15 @@
|
|
|
648
728
|
}
|
|
649
729
|
|
|
650
730
|
.opus_aOsPA7_action {
|
|
731
|
+
min-height: var(--opus-control-height);
|
|
732
|
+
padding: 0 var(--opus-control-padding-x, 14px);
|
|
651
733
|
border-radius: var(--opus-input-radius);
|
|
652
734
|
border: 1px solid var(--opus-border-strong);
|
|
653
735
|
color: var(--opus-accent);
|
|
736
|
+
font-size: var(--opus-control-font-size);
|
|
654
737
|
background: none;
|
|
655
738
|
justify-content: center;
|
|
656
739
|
margin-top: 2px;
|
|
657
|
-
padding: 7px 14px;
|
|
658
|
-
font-size: .82rem;
|
|
659
740
|
font-weight: 600;
|
|
660
741
|
display: inline-flex;
|
|
661
742
|
}
|
|
@@ -679,6 +760,315 @@
|
|
|
679
760
|
overflow: hidden;
|
|
680
761
|
}
|
|
681
762
|
|
|
763
|
+
/* components/fields/ImageCropUploadField/ImageCropUploadField.module.css */
|
|
764
|
+
.opus_itxBv9_root {
|
|
765
|
+
gap: 12px;
|
|
766
|
+
width: 100%;
|
|
767
|
+
display: grid;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.opus_itxBv9_drop {
|
|
771
|
+
min-height: var(--opus-file-min-height, 96px);
|
|
772
|
+
padding: var(--opus-file-padding-y, 16px) var(--opus-file-padding-x, 20px);
|
|
773
|
+
border-radius: var(--opus-input-radius-large);
|
|
774
|
+
border: 1px dashed var(--opus-border-strong);
|
|
775
|
+
background: var(--opus-input-fill);
|
|
776
|
+
cursor: pointer;
|
|
777
|
+
justify-content: center;
|
|
778
|
+
align-items: center;
|
|
779
|
+
gap: 14px;
|
|
780
|
+
transition: border-color .16s, background-color .16s;
|
|
781
|
+
display: flex;
|
|
782
|
+
position: relative;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.opus_itxBv9_drop:hover, .opus_itxBv9_dragging {
|
|
786
|
+
border-color: var(--opus-accent);
|
|
787
|
+
background: color-mix(in srgb, var(--opus-accent-soft) 72%, var(--opus-input-fill));
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.opus_itxBv9_dropError {
|
|
791
|
+
border-color: color-mix(in srgb, var(--opus-error) 55%, var(--opus-border-strong));
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.opus_itxBv9_dropIcon {
|
|
795
|
+
color: var(--opus-accent);
|
|
796
|
+
flex: none;
|
|
797
|
+
place-items: center;
|
|
798
|
+
display: grid;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.opus_itxBv9_dropIconSvg {
|
|
802
|
+
width: 32px;
|
|
803
|
+
height: 32px;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.opus_itxBv9_dropContent {
|
|
807
|
+
text-align: center;
|
|
808
|
+
justify-items: center;
|
|
809
|
+
gap: 4px;
|
|
810
|
+
display: grid;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.opus_itxBv9_dropTitle {
|
|
814
|
+
color: var(--opus-text);
|
|
815
|
+
font-size: var(--opus-control-font-size);
|
|
816
|
+
line-height: 1.35;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.opus_itxBv9_dropTitle strong {
|
|
820
|
+
font-weight: 700;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.opus_itxBv9_dropHint {
|
|
824
|
+
color: var(--opus-muted);
|
|
825
|
+
font-size: .78rem;
|
|
826
|
+
line-height: 1.2;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.opus_itxBv9_dropAction {
|
|
830
|
+
min-height: var(--opus-control-height);
|
|
831
|
+
padding: 0 var(--opus-control-padding-x, 14px);
|
|
832
|
+
border-radius: var(--opus-input-radius);
|
|
833
|
+
border: 1px solid var(--opus-border-strong);
|
|
834
|
+
color: var(--opus-accent);
|
|
835
|
+
font-size: var(--opus-control-font-size);
|
|
836
|
+
background: none;
|
|
837
|
+
justify-content: center;
|
|
838
|
+
margin-top: 2px;
|
|
839
|
+
font-weight: 600;
|
|
840
|
+
display: inline-flex;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.opus_itxBv9_hiddenInput {
|
|
844
|
+
clip: rect(0, 0, 0, 0);
|
|
845
|
+
white-space: nowrap;
|
|
846
|
+
border: 0;
|
|
847
|
+
width: 1px;
|
|
848
|
+
height: 1px;
|
|
849
|
+
margin: -1px;
|
|
850
|
+
padding: 0;
|
|
851
|
+
position: absolute;
|
|
852
|
+
overflow: hidden;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.opus_itxBv9_previewCard, .opus_itxBv9_editor {
|
|
856
|
+
border-radius: var(--opus-input-radius-large);
|
|
857
|
+
border: 1px solid var(--opus-border-strong);
|
|
858
|
+
background: color-mix(in srgb, var(--opus-panel) 88%, transparent);
|
|
859
|
+
gap: 12px;
|
|
860
|
+
padding: 14px;
|
|
861
|
+
display: grid;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.opus_itxBv9_previewRow {
|
|
865
|
+
align-items: center;
|
|
866
|
+
gap: 14px;
|
|
867
|
+
display: flex;
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.opus_itxBv9_previewImage {
|
|
871
|
+
object-fit: cover;
|
|
872
|
+
border: 1px solid color-mix(in srgb, var(--opus-border) 80%, transparent);
|
|
873
|
+
border-radius: 999px;
|
|
874
|
+
width: 72px;
|
|
875
|
+
height: 72px;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.opus_itxBv9_previewCopy {
|
|
879
|
+
gap: 4px;
|
|
880
|
+
min-width: 0;
|
|
881
|
+
display: grid;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.opus_itxBv9_previewTitle {
|
|
885
|
+
color: var(--opus-text);
|
|
886
|
+
font-size: var(--opus-control-font-size);
|
|
887
|
+
font-weight: 600;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.opus_itxBv9_previewHint {
|
|
891
|
+
color: var(--opus-muted);
|
|
892
|
+
font-size: .78rem;
|
|
893
|
+
line-height: 1.35;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.opus_itxBv9_viewport {
|
|
897
|
+
border: 1px solid color-mix(in srgb, var(--opus-border) 80%, transparent);
|
|
898
|
+
background: linear-gradient(45deg, color-mix(in srgb, var(--opus-muted) 16%, transparent) 25%, transparent 25%, transparent 75%, color-mix(in srgb, var(--opus-muted) 16%, transparent) 75%),
|
|
899
|
+
linear-gradient(45deg, color-mix(in srgb, var(--opus-muted) 16%, transparent) 25%, transparent 25%, transparent 75%, color-mix(in srgb, var(--opus-muted) 16%, transparent) 75%);
|
|
900
|
+
touch-action: none;
|
|
901
|
+
cursor: grab;
|
|
902
|
+
background-position: 0 0, 8px 8px;
|
|
903
|
+
background-size: 16px 16px;
|
|
904
|
+
border-radius: 999px;
|
|
905
|
+
margin: 0 auto;
|
|
906
|
+
position: relative;
|
|
907
|
+
overflow: hidden;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.opus_itxBv9_viewportDragging {
|
|
911
|
+
cursor: grabbing;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.opus_itxBv9_viewportImage {
|
|
915
|
+
transform-origin: center;
|
|
916
|
+
user-select: none;
|
|
917
|
+
pointer-events: none;
|
|
918
|
+
max-width: none;
|
|
919
|
+
position: absolute;
|
|
920
|
+
top: 50%;
|
|
921
|
+
left: 50%;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.opus_itxBv9_viewportRing {
|
|
925
|
+
border-radius: inherit;
|
|
926
|
+
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--opus-accent) 45%, transparent);
|
|
927
|
+
pointer-events: none;
|
|
928
|
+
position: absolute;
|
|
929
|
+
inset: 0;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.opus_itxBv9_zoomRow {
|
|
933
|
+
grid-template-columns: auto 1fr auto;
|
|
934
|
+
align-items: center;
|
|
935
|
+
gap: 10px;
|
|
936
|
+
display: grid;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.opus_itxBv9_zoomButton {
|
|
940
|
+
width: var(--opus-control-height);
|
|
941
|
+
min-height: var(--opus-control-height);
|
|
942
|
+
border-radius: var(--opus-input-radius);
|
|
943
|
+
border: 1px solid var(--opus-border-strong);
|
|
944
|
+
background: var(--opus-input-fill);
|
|
945
|
+
color: var(--opus-text);
|
|
946
|
+
justify-content: center;
|
|
947
|
+
align-items: center;
|
|
948
|
+
font-size: 1rem;
|
|
949
|
+
font-weight: 700;
|
|
950
|
+
line-height: 1;
|
|
951
|
+
display: inline-flex;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.opus_itxBv9_zoomButton:disabled {
|
|
955
|
+
opacity: .45;
|
|
956
|
+
cursor: not-allowed;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.opus_itxBv9_zoomSlider {
|
|
960
|
+
width: 100%;
|
|
961
|
+
accent-color: var(--opus-accent);
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.opus_itxBv9_zoomLabel {
|
|
965
|
+
color: var(--opus-muted);
|
|
966
|
+
text-align: center;
|
|
967
|
+
margin: 0;
|
|
968
|
+
font-size: .78rem;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.opus_itxBv9_actions {
|
|
972
|
+
flex-wrap: wrap;
|
|
973
|
+
gap: 8px;
|
|
974
|
+
display: flex;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.opus_itxBv9_instruction {
|
|
978
|
+
color: var(--opus-muted);
|
|
979
|
+
text-align: center;
|
|
980
|
+
margin: 0;
|
|
981
|
+
font-size: .78rem;
|
|
982
|
+
line-height: 1.4;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.opus_itxBv9_root[data-embedded="true"] .opus_itxBv9_editor, .opus_itxBv9_root[data-embedded="true"] .opus_itxBv9_previewCard {
|
|
986
|
+
background: none;
|
|
987
|
+
border: 0;
|
|
988
|
+
gap: 16px;
|
|
989
|
+
padding: 0;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.opus_itxBv9_root[data-embedded="true"] .opus_itxBv9_drop {
|
|
993
|
+
border-color: color-mix(in srgb, var(--opus-border) 55%, transparent);
|
|
994
|
+
background: color-mix(in srgb, var(--opus-input-fill) 72%, transparent);
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.opus_itxBv9_root[data-embedded="true"] .opus_itxBv9_previewRow {
|
|
998
|
+
justify-content: center;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.opus_itxBv9_root[data-embedded="true"] .opus_itxBv9_previewImage {
|
|
1002
|
+
border: 0;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.opus_itxBv9_previewFrame {
|
|
1006
|
+
flex-shrink: 0;
|
|
1007
|
+
display: inline-flex;
|
|
1008
|
+
position: relative;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.opus_itxBv9_previewCameraButton {
|
|
1012
|
+
color: #fff;
|
|
1013
|
+
cursor: pointer;
|
|
1014
|
+
filter: drop-shadow(0 1px 2px #0000008c);
|
|
1015
|
+
background: none;
|
|
1016
|
+
border: 0;
|
|
1017
|
+
justify-content: center;
|
|
1018
|
+
align-items: center;
|
|
1019
|
+
padding: 0;
|
|
1020
|
+
display: inline-flex;
|
|
1021
|
+
position: absolute;
|
|
1022
|
+
bottom: 12px;
|
|
1023
|
+
left: 50%;
|
|
1024
|
+
transform: translateX(-50%);
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.opus_itxBv9_previewCameraButton svg {
|
|
1028
|
+
width: 36px;
|
|
1029
|
+
height: 36px;
|
|
1030
|
+
display: block;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.opus_itxBv9_previewCameraButton:hover {
|
|
1034
|
+
filter: drop-shadow(0 1px 2px #0000008c) brightness(1.08);
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.opus_itxBv9_previewCameraButton:focus-visible {
|
|
1038
|
+
outline-offset: 2px;
|
|
1039
|
+
outline: 2px solid #ffffffd9;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.opus_itxBv9_root[data-embedded="true"] .opus_itxBv9_viewport {
|
|
1043
|
+
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--opus-border) 45%, transparent);
|
|
1044
|
+
border: 0;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.opus_itxBv9_root[data-embedded="true"] .opus_itxBv9_viewportRing {
|
|
1048
|
+
box-shadow: none;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.opus_itxBv9_root[data-embedded="true"] .opus_itxBv9_zoomButton {
|
|
1052
|
+
background: color-mix(in srgb, var(--opus-input-fill) 80%, transparent);
|
|
1053
|
+
border: 0;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.opus_itxBv9_changeLink {
|
|
1057
|
+
color: var(--opus-accent);
|
|
1058
|
+
font-size: var(--opus-control-font-size);
|
|
1059
|
+
cursor: pointer;
|
|
1060
|
+
background: none;
|
|
1061
|
+
border: 0;
|
|
1062
|
+
justify-self: center;
|
|
1063
|
+
margin: 0;
|
|
1064
|
+
padding: 0;
|
|
1065
|
+
font-weight: 600;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
.opus_itxBv9_changeLink:hover {
|
|
1069
|
+
text-decoration: underline;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
682
1072
|
/* components/fields/NumberField/NumberField.module.css */
|
|
683
1073
|
.opus_L272Dk_stepper {
|
|
684
1074
|
width: 100%;
|
|
@@ -837,6 +1227,7 @@
|
|
|
837
1227
|
.opus_IOOYwh_field {
|
|
838
1228
|
width: 100%;
|
|
839
1229
|
min-height: var(--opus-control-height);
|
|
1230
|
+
padding: calc(var(--opus-control-padding-y, 8px) / 2) var(--opus-control-padding-x, 10px);
|
|
840
1231
|
border: 1px solid var(--opus-border-strong);
|
|
841
1232
|
border-radius: var(--opus-input-radius);
|
|
842
1233
|
background: var(--opus-input-bg);
|
|
@@ -846,7 +1237,6 @@
|
|
|
846
1237
|
align-content: flex-start;
|
|
847
1238
|
align-items: center;
|
|
848
1239
|
gap: 6px;
|
|
849
|
-
padding: 4px 8px;
|
|
850
1240
|
transition: border-color .16s, box-shadow .16s;
|
|
851
1241
|
display: flex;
|
|
852
1242
|
box-shadow: inset 0 1px #ffffff0d, 0 14px 30px #0000000f;
|
|
@@ -1012,9 +1402,9 @@
|
|
|
1012
1402
|
|
|
1013
1403
|
.opus_iRHQuG_fieldLabel {
|
|
1014
1404
|
color: var(--opus-text);
|
|
1405
|
+
font-size: var(--opus-control-font-size);
|
|
1015
1406
|
align-items: center;
|
|
1016
1407
|
gap: 6px;
|
|
1017
|
-
font-size: .86rem;
|
|
1018
1408
|
font-weight: 600;
|
|
1019
1409
|
line-height: 1.2;
|
|
1020
1410
|
display: inline-flex;
|
|
@@ -1022,8 +1412,8 @@
|
|
|
1022
1412
|
|
|
1023
1413
|
.opus_iRHQuG_value {
|
|
1024
1414
|
color: var(--opus-text);
|
|
1415
|
+
font-size: calc(var(--opus-control-font-size) + .06rem);
|
|
1025
1416
|
font-variant-numeric: tabular-nums;
|
|
1026
|
-
font-size: .92rem;
|
|
1027
1417
|
font-weight: 700;
|
|
1028
1418
|
}
|
|
1029
1419
|
|
|
@@ -1038,53 +1428,53 @@
|
|
|
1038
1428
|
|
|
1039
1429
|
.opus_iRHQuG_slider {
|
|
1040
1430
|
appearance: none;
|
|
1431
|
+
width: 100%;
|
|
1432
|
+
height: var(--opus-control-height);
|
|
1041
1433
|
cursor: pointer;
|
|
1042
1434
|
background: none;
|
|
1043
|
-
width: 100%;
|
|
1044
|
-
height: 28px;
|
|
1045
1435
|
margin: 0;
|
|
1046
1436
|
}
|
|
1047
1437
|
|
|
1048
1438
|
.opus_iRHQuG_slider::-webkit-slider-runnable-track {
|
|
1439
|
+
height: var(--opus-range-track, 8px);
|
|
1049
1440
|
background: linear-gradient(to right,
|
|
1050
1441
|
var(--opus-accent) 0%,
|
|
1051
1442
|
var(--opus-accent) var(--range-progress),
|
|
1052
1443
|
color-mix(in srgb, var(--opus-muted) 24%, var(--opus-input-bg)) var(--range-progress),
|
|
1053
1444
|
color-mix(in srgb, var(--opus-muted) 24%, var(--opus-input-bg)) 100%);
|
|
1054
1445
|
border-radius: 999px;
|
|
1055
|
-
height: 8px;
|
|
1056
1446
|
}
|
|
1057
1447
|
|
|
1058
1448
|
.opus_iRHQuG_slider::-webkit-slider-thumb {
|
|
1059
1449
|
appearance: none;
|
|
1450
|
+
width: var(--opus-range-thumb, 22px);
|
|
1451
|
+
height: var(--opus-range-thumb, 22px);
|
|
1452
|
+
margin-top: calc((var(--opus-range-track, 8px) - var(--opus-range-thumb, 22px)) / 2);
|
|
1060
1453
|
border: 3px solid var(--opus-accent);
|
|
1061
1454
|
background: #fff;
|
|
1062
1455
|
border-radius: 999px;
|
|
1063
|
-
width: 22px;
|
|
1064
|
-
height: 22px;
|
|
1065
|
-
margin-top: -7px;
|
|
1066
1456
|
box-shadow: 0 4px 14px #0000002e;
|
|
1067
1457
|
}
|
|
1068
1458
|
|
|
1069
1459
|
.opus_iRHQuG_slider::-moz-range-track {
|
|
1460
|
+
height: var(--opus-range-track, 8px);
|
|
1070
1461
|
background: color-mix(in srgb, var(--opus-muted) 24%, var(--opus-input-bg));
|
|
1071
1462
|
border: 0;
|
|
1072
1463
|
border-radius: 999px;
|
|
1073
|
-
height: 8px;
|
|
1074
1464
|
}
|
|
1075
1465
|
|
|
1076
1466
|
.opus_iRHQuG_slider::-moz-range-progress {
|
|
1467
|
+
height: var(--opus-range-track, 8px);
|
|
1077
1468
|
background: var(--opus-accent);
|
|
1078
1469
|
border-radius: 999px;
|
|
1079
|
-
height: 8px;
|
|
1080
1470
|
}
|
|
1081
1471
|
|
|
1082
1472
|
.opus_iRHQuG_slider::-moz-range-thumb {
|
|
1473
|
+
width: var(--opus-range-thumb, 22px);
|
|
1474
|
+
height: var(--opus-range-thumb, 22px);
|
|
1083
1475
|
border: 3px solid var(--opus-accent);
|
|
1084
1476
|
background: #fff;
|
|
1085
1477
|
border-radius: 999px;
|
|
1086
|
-
width: 22px;
|
|
1087
|
-
height: 22px;
|
|
1088
1478
|
box-shadow: 0 4px 14px #0000002e;
|
|
1089
1479
|
}
|
|
1090
1480
|
|
|
@@ -1132,13 +1522,13 @@
|
|
|
1132
1522
|
.opus_m2ObG0_select {
|
|
1133
1523
|
width: 100%;
|
|
1134
1524
|
min-height: var(--opus-control-height);
|
|
1525
|
+
padding: 0 calc(var(--opus-control-padding-x, 10px) + 22px) 0 var(--opus-control-padding-x, 10px);
|
|
1135
1526
|
border: 1px solid var(--opus-border-strong);
|
|
1136
1527
|
border-radius: var(--opus-input-radius);
|
|
1137
1528
|
background: var(--opus-input-bg);
|
|
1138
1529
|
color: var(--opus-text);
|
|
1139
1530
|
font-size: var(--opus-control-font-size);
|
|
1140
1531
|
appearance: none;
|
|
1141
|
-
padding: 0 32px 0 10px;
|
|
1142
1532
|
box-shadow: inset 0 1px #ffffff0d, 0 14px 30px #0000000f;
|
|
1143
1533
|
}
|
|
1144
1534
|
|
|
@@ -1168,7 +1558,7 @@
|
|
|
1168
1558
|
|
|
1169
1559
|
.opus_t9NLEA_track {
|
|
1170
1560
|
appearance: none;
|
|
1171
|
-
width: 50px;
|
|
1561
|
+
width: var(--opus-switch-width, 50px);
|
|
1172
1562
|
height: var(--opus-control-height);
|
|
1173
1563
|
border: 1px solid var(--opus-border-strong);
|
|
1174
1564
|
background: color-mix(in srgb, var(--opus-muted) 24%, transparent);
|
|
@@ -1181,10 +1571,10 @@
|
|
|
1181
1571
|
|
|
1182
1572
|
.opus_t9NLEA_track:before {
|
|
1183
1573
|
content: "";
|
|
1574
|
+
width: var(--opus-switch-thumb, 20px);
|
|
1575
|
+
height: var(--opus-switch-thumb, 20px);
|
|
1184
1576
|
background: linear-gradient(#fff, #d7dff9);
|
|
1185
1577
|
border-radius: 999px;
|
|
1186
|
-
width: 20px;
|
|
1187
|
-
height: 20px;
|
|
1188
1578
|
transition: transform .16s;
|
|
1189
1579
|
position: absolute;
|
|
1190
1580
|
top: 50%;
|
|
@@ -1196,10 +1586,6 @@
|
|
|
1196
1586
|
background: linear-gradient(135deg, var(--opus-accent), color-mix(in srgb, var(--opus-accent) 40%, #00d2ff));
|
|
1197
1587
|
}
|
|
1198
1588
|
|
|
1199
|
-
.opus_t9NLEA_track:checked:before {
|
|
1200
|
-
transform: translate(22px, -50%);
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
1589
|
.opus_t9NLEA_error {
|
|
1204
1590
|
outline: 2px solid color-mix(in srgb, var(--opus-error) 36%, transparent);
|
|
1205
1591
|
outline-offset: 2px;
|
|
@@ -1218,15 +1604,15 @@
|
|
|
1218
1604
|
}
|
|
1219
1605
|
|
|
1220
1606
|
.opus_FjhWmh_textarea {
|
|
1607
|
+
width: 100%;
|
|
1608
|
+
min-height: 96px;
|
|
1609
|
+
padding: var(--opus-control-padding-y, 8px) var(--opus-control-padding-x, 10px);
|
|
1221
1610
|
border: 1px solid var(--opus-border-strong);
|
|
1222
1611
|
border-radius: var(--opus-input-radius);
|
|
1223
1612
|
background: var(--opus-input-bg);
|
|
1224
|
-
width: 100%;
|
|
1225
|
-
min-height: 96px;
|
|
1226
1613
|
color: var(--opus-text);
|
|
1227
1614
|
font-size: var(--opus-control-font-size);
|
|
1228
1615
|
resize: vertical;
|
|
1229
|
-
padding: 8px 10px;
|
|
1230
1616
|
line-height: 1.5;
|
|
1231
1617
|
box-shadow: inset 0 1px #ffffff0d, 0 14px 30px #0000000f;
|
|
1232
1618
|
}
|
|
@@ -1327,14 +1713,14 @@
|
|
|
1327
1713
|
}
|
|
1328
1714
|
|
|
1329
1715
|
.opus_6HFqZH_blockSelect {
|
|
1716
|
+
min-height: calc(var(--opus-control-height) - 2px);
|
|
1717
|
+
padding: 0 var(--opus-control-padding-x, 6px);
|
|
1330
1718
|
border: 1px solid var(--opus-border-strong);
|
|
1331
1719
|
background: var(--opus-input-bg);
|
|
1332
|
-
min-height: 26px;
|
|
1333
1720
|
color: var(--opus-text);
|
|
1721
|
+
font-size: calc(var(--opus-control-font-size) - .14rem);
|
|
1334
1722
|
cursor: pointer;
|
|
1335
1723
|
border-radius: 5px;
|
|
1336
|
-
padding: 0 6px;
|
|
1337
|
-
font-size: .72rem;
|
|
1338
1724
|
font-weight: 600;
|
|
1339
1725
|
}
|
|
1340
1726
|
|
|
@@ -1350,8 +1736,8 @@
|
|
|
1350
1736
|
}
|
|
1351
1737
|
|
|
1352
1738
|
.opus_6HFqZH_toolbarButton {
|
|
1353
|
-
width:
|
|
1354
|
-
height:
|
|
1739
|
+
width: calc(var(--opus-control-height) - 4px);
|
|
1740
|
+
height: calc(var(--opus-control-height) - 4px);
|
|
1355
1741
|
color: var(--opus-text);
|
|
1356
1742
|
cursor: pointer;
|
|
1357
1743
|
background: none;
|
|
@@ -1655,46 +2041,81 @@
|
|
|
1655
2041
|
cursor: not-allowed;
|
|
1656
2042
|
}
|
|
1657
2043
|
|
|
1658
|
-
/* components/fields/
|
|
1659
|
-
.
|
|
2044
|
+
/* components/fields/shared/fieldControl.module.css */
|
|
2045
|
+
.opus_1Q5xBh_input {
|
|
1660
2046
|
width: 100%;
|
|
1661
2047
|
min-height: var(--opus-control-height);
|
|
2048
|
+
padding: 0 var(--opus-control-padding-x, 10px);
|
|
1662
2049
|
border: 1px solid var(--opus-border-strong);
|
|
1663
2050
|
border-radius: var(--opus-input-radius);
|
|
1664
2051
|
background: var(--opus-input-bg);
|
|
1665
2052
|
color: var(--opus-text);
|
|
1666
2053
|
font-size: var(--opus-control-font-size);
|
|
1667
|
-
padding: 0 10px;
|
|
1668
2054
|
transition: border-color .16s, box-shadow .16s;
|
|
1669
2055
|
box-shadow: inset 0 1px #ffffff0d, 0 14px 30px #0000000f;
|
|
1670
2056
|
}
|
|
1671
2057
|
|
|
1672
|
-
.
|
|
2058
|
+
.opus_1Q5xBh_searchWrap {
|
|
2059
|
+
align-items: center;
|
|
2060
|
+
gap: var(--opus-control-prefix-gap, 8px);
|
|
2061
|
+
width: 100%;
|
|
2062
|
+
min-height: var(--opus-control-height);
|
|
2063
|
+
padding: 0 var(--opus-control-padding-x, 10px);
|
|
2064
|
+
border: 1px solid var(--opus-border-strong);
|
|
2065
|
+
border-radius: var(--opus-input-radius);
|
|
2066
|
+
background: var(--opus-input-bg);
|
|
2067
|
+
color: var(--opus-text);
|
|
2068
|
+
font-size: var(--opus-control-font-size);
|
|
2069
|
+
cursor: text;
|
|
2070
|
+
grid-template-columns: auto minmax(0, 1fr);
|
|
2071
|
+
transition: border-color .16s, box-shadow .16s;
|
|
2072
|
+
display: grid;
|
|
2073
|
+
box-shadow: inset 0 1px #ffffff0d, 0 14px 30px #0000000f;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
.opus_1Q5xBh_searchWrap:focus-within {
|
|
1673
2077
|
border-color: var(--opus-accent);
|
|
1674
2078
|
box-shadow: 0 0 0 4px color-mix(in srgb, var(--opus-accent) 22%, transparent),
|
|
1675
2079
|
0 14px 30px #0000000f;
|
|
1676
2080
|
}
|
|
1677
2081
|
|
|
1678
|
-
.
|
|
1679
|
-
color: color-mix(in srgb, var(--opus-
|
|
2082
|
+
.opus_1Q5xBh_searchWrapError {
|
|
2083
|
+
border-color: color-mix(in srgb, var(--opus-error) 75%, transparent);
|
|
1680
2084
|
}
|
|
1681
2085
|
|
|
1682
|
-
.
|
|
1683
|
-
|
|
2086
|
+
.opus_1Q5xBh_prefixIcon {
|
|
2087
|
+
width: var(--opus-control-prefix-size, 14px);
|
|
2088
|
+
height: var(--opus-control-prefix-size, 14px);
|
|
2089
|
+
color: var(--opus-muted);
|
|
2090
|
+
flex-shrink: 0;
|
|
2091
|
+
justify-content: center;
|
|
2092
|
+
align-items: center;
|
|
2093
|
+
line-height: 0;
|
|
2094
|
+
display: inline-flex;
|
|
1684
2095
|
}
|
|
1685
2096
|
|
|
1686
|
-
|
|
1687
|
-
|
|
2097
|
+
.opus_1Q5xBh_prefixIconSvg {
|
|
2098
|
+
width: var(--opus-control-prefix-size, 14px);
|
|
2099
|
+
height: var(--opus-control-prefix-size, 14px);
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
.opus_1Q5xBh_searchInput {
|
|
1688
2103
|
width: 100%;
|
|
1689
|
-
min-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
background:
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
2104
|
+
min-width: 0;
|
|
2105
|
+
color: inherit;
|
|
2106
|
+
font: inherit;
|
|
2107
|
+
background: none;
|
|
2108
|
+
border: 0;
|
|
2109
|
+
padding: 0;
|
|
2110
|
+
font-weight: 500;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.opus_1Q5xBh_searchInput:focus {
|
|
2114
|
+
outline: none;
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
.opus_1Q5xBh_searchInput::placeholder {
|
|
2118
|
+
color: color-mix(in srgb, var(--opus-muted) 80%, transparent);
|
|
1698
2119
|
}
|
|
1699
2120
|
|
|
1700
2121
|
.opus_1Q5xBh_input:focus {
|
|
@@ -1720,7 +2141,7 @@
|
|
|
1720
2141
|
}
|
|
1721
2142
|
|
|
1722
2143
|
.opus_1Q5xBh_passwordInput {
|
|
1723
|
-
padding-right: 38px;
|
|
2144
|
+
padding-right: var(--opus-control-suffix-inset, 38px);
|
|
1724
2145
|
}
|
|
1725
2146
|
|
|
1726
2147
|
.opus_1Q5xBh_passwordToggleSlot {
|
|
@@ -1760,6 +2181,7 @@
|
|
|
1760
2181
|
.opus_1Q5xBh_trigger {
|
|
1761
2182
|
width: 100%;
|
|
1762
2183
|
min-height: var(--opus-control-height);
|
|
2184
|
+
padding: 0 var(--opus-control-padding-x, 10px);
|
|
1763
2185
|
border: 1px solid var(--opus-border-strong);
|
|
1764
2186
|
border-radius: var(--opus-input-radius);
|
|
1765
2187
|
background: var(--opus-input-bg);
|
|
@@ -1770,7 +2192,6 @@
|
|
|
1770
2192
|
justify-content: space-between;
|
|
1771
2193
|
align-items: center;
|
|
1772
2194
|
gap: 8px;
|
|
1773
|
-
padding: 0 10px;
|
|
1774
2195
|
display: flex;
|
|
1775
2196
|
}
|
|
1776
2197
|
|
|
@@ -2002,15 +2423,15 @@
|
|
|
2002
2423
|
}
|
|
2003
2424
|
|
|
2004
2425
|
.opus_NPBFZk_item {
|
|
2005
|
-
border-radius: var(--opus-input-radius);
|
|
2006
2426
|
width: 100%;
|
|
2427
|
+
padding: calc(var(--opus-control-padding-y, 8px) / 2) var(--opus-control-padding-x, 10px);
|
|
2428
|
+
border-radius: var(--opus-input-radius);
|
|
2007
2429
|
color: var(--opus-text);
|
|
2430
|
+
font-size: var(--opus-control-font-size);
|
|
2008
2431
|
text-align: left;
|
|
2009
2432
|
cursor: pointer;
|
|
2010
2433
|
background: none;
|
|
2011
2434
|
border: 1px solid #0000;
|
|
2012
|
-
padding: 8px 10px;
|
|
2013
|
-
font-size: .82rem;
|
|
2014
2435
|
}
|
|
2015
2436
|
|
|
2016
2437
|
.opus_NPBFZk_item:hover {
|
|
@@ -2030,14 +2451,14 @@
|
|
|
2030
2451
|
}
|
|
2031
2452
|
|
|
2032
2453
|
.opus_NPBFZk_controlButton {
|
|
2454
|
+
min-width: var(--opus-control-height);
|
|
2455
|
+
min-height: var(--opus-control-height);
|
|
2033
2456
|
border: 1px solid var(--opus-border-strong);
|
|
2034
2457
|
border-radius: var(--opus-input-radius);
|
|
2035
2458
|
background: var(--opus-input-bg);
|
|
2036
|
-
min-width: 36px;
|
|
2037
|
-
min-height: 32px;
|
|
2038
2459
|
color: var(--opus-text);
|
|
2460
|
+
font-size: var(--opus-control-font-size);
|
|
2039
2461
|
cursor: pointer;
|
|
2040
|
-
font-size: .9rem;
|
|
2041
2462
|
}
|
|
2042
2463
|
|
|
2043
2464
|
.opus_NPBFZk_controlButton:hover {
|
|
@@ -2158,13 +2579,13 @@
|
|
|
2158
2579
|
}
|
|
2159
2580
|
|
|
2160
2581
|
.opus_0tdNUz_symbol {
|
|
2161
|
-
min-width:
|
|
2162
|
-
min-height:
|
|
2582
|
+
min-width: var(--opus-control-height);
|
|
2583
|
+
min-height: var(--opus-control-height);
|
|
2163
2584
|
color: color-mix(in srgb, var(--opus-muted) 70%, transparent);
|
|
2585
|
+
font-size: calc(var(--opus-control-font-size) + .5rem);
|
|
2164
2586
|
cursor: pointer;
|
|
2165
2587
|
background: none;
|
|
2166
2588
|
border: 0;
|
|
2167
|
-
font-size: 1.35rem;
|
|
2168
2589
|
line-height: 1;
|
|
2169
2590
|
}
|
|
2170
2591
|
|
|
@@ -2173,14 +2594,14 @@
|
|
|
2173
2594
|
}
|
|
2174
2595
|
|
|
2175
2596
|
.opus_0tdNUz_numeric {
|
|
2597
|
+
min-width: var(--opus-control-height);
|
|
2598
|
+
min-height: var(--opus-control-height);
|
|
2176
2599
|
border: 1px solid var(--opus-border-strong);
|
|
2177
2600
|
border-radius: var(--opus-input-radius);
|
|
2178
2601
|
background: var(--opus-input-bg);
|
|
2179
|
-
min-width: 34px;
|
|
2180
|
-
min-height: 34px;
|
|
2181
2602
|
color: var(--opus-text);
|
|
2603
|
+
font-size: var(--opus-control-font-size);
|
|
2182
2604
|
cursor: pointer;
|
|
2183
|
-
font-size: .82rem;
|
|
2184
2605
|
font-weight: 600;
|
|
2185
2606
|
}
|
|
2186
2607
|
|
|
@@ -2202,14 +2623,14 @@
|
|
|
2202
2623
|
}
|
|
2203
2624
|
|
|
2204
2625
|
.opus_ZHwfiN_segment {
|
|
2626
|
+
min-height: var(--opus-control-height);
|
|
2627
|
+
padding: 0 var(--opus-control-padding-x, 14px);
|
|
2205
2628
|
border-radius: calc(var(--opus-input-radius-large) - 2px);
|
|
2206
|
-
min-height: 30px;
|
|
2207
2629
|
color: var(--opus-muted);
|
|
2630
|
+
font-size: var(--opus-control-font-size);
|
|
2208
2631
|
cursor: pointer;
|
|
2209
2632
|
background: none;
|
|
2210
2633
|
border: 0;
|
|
2211
|
-
padding: 0 14px;
|
|
2212
|
-
font-size: .8rem;
|
|
2213
2634
|
font-weight: 600;
|
|
2214
2635
|
}
|
|
2215
2636
|
|
|
@@ -2236,22 +2657,22 @@
|
|
|
2236
2657
|
|
|
2237
2658
|
.opus_k3d0sS_value {
|
|
2238
2659
|
color: var(--opus-text);
|
|
2660
|
+
font-size: calc(var(--opus-control-font-size) + .06rem);
|
|
2239
2661
|
font-variant-numeric: tabular-nums;
|
|
2240
|
-
font-size: .92rem;
|
|
2241
2662
|
font-weight: 700;
|
|
2242
2663
|
}
|
|
2243
2664
|
|
|
2244
2665
|
.opus_k3d0sS_trackWrap {
|
|
2245
|
-
height:
|
|
2666
|
+
height: var(--opus-control-height);
|
|
2246
2667
|
position: relative;
|
|
2247
2668
|
}
|
|
2248
2669
|
|
|
2249
2670
|
.opus_k3d0sS_track {
|
|
2671
|
+
inset: calc((var(--opus-control-height) - var(--opus-range-track, 8px)) / 2) 0 auto;
|
|
2672
|
+
height: var(--opus-range-track, 8px);
|
|
2250
2673
|
background: color-mix(in srgb, var(--opus-muted) 24%, var(--opus-input-bg));
|
|
2251
2674
|
border-radius: 999px;
|
|
2252
|
-
height: 8px;
|
|
2253
2675
|
position: absolute;
|
|
2254
|
-
inset: 10px 0 auto;
|
|
2255
2676
|
}
|
|
2256
2677
|
|
|
2257
2678
|
.opus_k3d0sS_track:before {
|
|
@@ -2277,22 +2698,22 @@
|
|
|
2277
2698
|
|
|
2278
2699
|
.opus_k3d0sS_slider::-webkit-slider-thumb {
|
|
2279
2700
|
appearance: none;
|
|
2701
|
+
width: var(--opus-range-thumb, 22px);
|
|
2702
|
+
height: var(--opus-range-thumb, 22px);
|
|
2280
2703
|
border: 3px solid var(--opus-accent);
|
|
2281
2704
|
pointer-events: auto;
|
|
2282
2705
|
background: #fff;
|
|
2283
2706
|
border-radius: 999px;
|
|
2284
|
-
width: 22px;
|
|
2285
|
-
height: 22px;
|
|
2286
2707
|
box-shadow: 0 4px 14px #0000002e;
|
|
2287
2708
|
}
|
|
2288
2709
|
|
|
2289
2710
|
.opus_k3d0sS_slider::-moz-range-thumb {
|
|
2711
|
+
width: var(--opus-range-thumb, 22px);
|
|
2712
|
+
height: var(--opus-range-thumb, 22px);
|
|
2290
2713
|
border: 3px solid var(--opus-accent);
|
|
2291
2714
|
pointer-events: auto;
|
|
2292
2715
|
background: #fff;
|
|
2293
2716
|
border-radius: 999px;
|
|
2294
|
-
width: 22px;
|
|
2295
|
-
height: 22px;
|
|
2296
2717
|
box-shadow: 0 4px 14px #0000002e;
|
|
2297
2718
|
}
|
|
2298
2719
|
|
|
@@ -8943,6 +9364,21 @@
|
|
|
8943
9364
|
overflow: hidden;
|
|
8944
9365
|
}
|
|
8945
9366
|
|
|
9367
|
+
.opus_Khgx9s_root[data-flush] {
|
|
9368
|
+
background: none;
|
|
9369
|
+
border: 0;
|
|
9370
|
+
border-radius: 0;
|
|
9371
|
+
min-height: 0;
|
|
9372
|
+
}
|
|
9373
|
+
|
|
9374
|
+
.opus_Khgx9s_root[data-flush] .opus_Khgx9s_pane {
|
|
9375
|
+
flex-direction: column;
|
|
9376
|
+
min-height: 0;
|
|
9377
|
+
padding: 0;
|
|
9378
|
+
display: flex;
|
|
9379
|
+
overflow: hidden;
|
|
9380
|
+
}
|
|
9381
|
+
|
|
8946
9382
|
.opus_Khgx9s_root[data-orientation="horizontal"] {
|
|
8947
9383
|
flex-direction: row;
|
|
8948
9384
|
}
|
|
@@ -11427,6 +11863,118 @@
|
|
|
11427
11863
|
font-weight: 700;
|
|
11428
11864
|
}
|
|
11429
11865
|
|
|
11866
|
+
/* components/UserProfileWidget/UserProfileWidget.module.css */
|
|
11867
|
+
.opus_zjR1aT_root {
|
|
11868
|
+
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
11869
|
+
align-items: center;
|
|
11870
|
+
gap: 10px;
|
|
11871
|
+
width: 100%;
|
|
11872
|
+
min-width: 0;
|
|
11873
|
+
padding: 2px 0;
|
|
11874
|
+
display: grid;
|
|
11875
|
+
}
|
|
11876
|
+
|
|
11877
|
+
.opus_zjR1aT_copy {
|
|
11878
|
+
gap: 2px;
|
|
11879
|
+
min-width: 0;
|
|
11880
|
+
display: grid;
|
|
11881
|
+
}
|
|
11882
|
+
|
|
11883
|
+
.opus_zjR1aT_name {
|
|
11884
|
+
color: var(--dashboard-section-text);
|
|
11885
|
+
text-overflow: ellipsis;
|
|
11886
|
+
white-space: nowrap;
|
|
11887
|
+
font-size: .86rem;
|
|
11888
|
+
font-weight: 700;
|
|
11889
|
+
line-height: 1.2;
|
|
11890
|
+
overflow: hidden;
|
|
11891
|
+
}
|
|
11892
|
+
|
|
11893
|
+
.opus_zjR1aT_role {
|
|
11894
|
+
color: var(--dashboard-section-muted);
|
|
11895
|
+
text-overflow: ellipsis;
|
|
11896
|
+
white-space: nowrap;
|
|
11897
|
+
font-size: .72rem;
|
|
11898
|
+
font-weight: 500;
|
|
11899
|
+
line-height: 1.2;
|
|
11900
|
+
overflow: hidden;
|
|
11901
|
+
}
|
|
11902
|
+
|
|
11903
|
+
.opus_zjR1aT_chevronButton {
|
|
11904
|
+
width: 28px;
|
|
11905
|
+
height: 28px;
|
|
11906
|
+
color: color-mix(in srgb, var(--dashboard-section-text) 82%, transparent);
|
|
11907
|
+
cursor: pointer;
|
|
11908
|
+
background: none;
|
|
11909
|
+
border: 0;
|
|
11910
|
+
border-radius: 6px;
|
|
11911
|
+
flex-shrink: 0;
|
|
11912
|
+
justify-content: center;
|
|
11913
|
+
align-items: center;
|
|
11914
|
+
margin: 0;
|
|
11915
|
+
padding: 0;
|
|
11916
|
+
transition: background .16s;
|
|
11917
|
+
display: inline-flex;
|
|
11918
|
+
}
|
|
11919
|
+
|
|
11920
|
+
.opus_zjR1aT_chevronButton:hover {
|
|
11921
|
+
background: color-mix(in srgb, var(--dashboard-section-panel) 72%, transparent);
|
|
11922
|
+
}
|
|
11923
|
+
|
|
11924
|
+
.opus_zjR1aT_chevronButton:focus-visible {
|
|
11925
|
+
outline: 2px solid color-mix(in srgb, var(--opus-accent, #7c3aed) 55%, transparent);
|
|
11926
|
+
outline-offset: 2px;
|
|
11927
|
+
}
|
|
11928
|
+
|
|
11929
|
+
.opus_zjR1aT_chevron {
|
|
11930
|
+
justify-content: center;
|
|
11931
|
+
align-items: center;
|
|
11932
|
+
width: 16px;
|
|
11933
|
+
height: 16px;
|
|
11934
|
+
font-size: .72rem;
|
|
11935
|
+
line-height: 0;
|
|
11936
|
+
display: inline-flex;
|
|
11937
|
+
}
|
|
11938
|
+
|
|
11939
|
+
.opus_zjR1aT_avatarButton {
|
|
11940
|
+
cursor: pointer;
|
|
11941
|
+
background: none;
|
|
11942
|
+
border: 0;
|
|
11943
|
+
border-radius: 999px;
|
|
11944
|
+
margin: 0;
|
|
11945
|
+
padding: 0;
|
|
11946
|
+
transition: box-shadow .16s;
|
|
11947
|
+
display: inline-flex;
|
|
11948
|
+
}
|
|
11949
|
+
|
|
11950
|
+
.opus_zjR1aT_avatarButton:hover {
|
|
11951
|
+
box-shadow: 0 0 0 2px color-mix(in srgb, var(--opus-accent, #7c3aed) 28%, transparent);
|
|
11952
|
+
}
|
|
11953
|
+
|
|
11954
|
+
.opus_zjR1aT_avatarButton:focus-visible {
|
|
11955
|
+
outline: 2px solid color-mix(in srgb, var(--opus-accent, #7c3aed) 55%, transparent);
|
|
11956
|
+
outline-offset: 2px;
|
|
11957
|
+
}
|
|
11958
|
+
|
|
11959
|
+
/* components/ImageCropUploadWidget/ImageCropUploadWidget.module.css */
|
|
11960
|
+
.opus_jO9vJQ_root {
|
|
11961
|
+
gap: 12px;
|
|
11962
|
+
width: 100%;
|
|
11963
|
+
display: grid;
|
|
11964
|
+
}
|
|
11965
|
+
|
|
11966
|
+
.opus_jO9vJQ_title {
|
|
11967
|
+
color: var(--opus-text);
|
|
11968
|
+
letter-spacing: -.01em;
|
|
11969
|
+
margin: 0;
|
|
11970
|
+
font-size: .875rem;
|
|
11971
|
+
font-weight: 700;
|
|
11972
|
+
}
|
|
11973
|
+
|
|
11974
|
+
.opus_jO9vJQ_field {
|
|
11975
|
+
width: 100%;
|
|
11976
|
+
}
|
|
11977
|
+
|
|
11430
11978
|
/* components/DashboardContentContainer/DashboardContentContainer.module.css */
|
|
11431
11979
|
.opus_myuwZ6_container {
|
|
11432
11980
|
--dashboard-section-bg: #070d18;
|
|
@@ -11468,6 +12016,14 @@
|
|
|
11468
12016
|
max-width: 28rem;
|
|
11469
12017
|
}
|
|
11470
12018
|
|
|
12019
|
+
.opus_myuwZ6_container[data-component="user-profile"][data-width="widget"] {
|
|
12020
|
+
max-width: 18rem;
|
|
12021
|
+
}
|
|
12022
|
+
|
|
12023
|
+
.opus_myuwZ6_container[data-component="profile-photo-upload"][data-width="widget"] {
|
|
12024
|
+
max-width: 28rem;
|
|
12025
|
+
}
|
|
12026
|
+
|
|
11471
12027
|
.opus_myuwZ6_container[data-width="full"] {
|
|
11472
12028
|
flex: auto;
|
|
11473
12029
|
align-self: stretch;
|