baaz-custom-components 3.3.3 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +4791 -103
- package/dist/index.d.mts +46 -1
- package/dist/index.d.ts +46 -1
- package/dist/index.js +418 -0
- package/dist/index.mjs +424 -0
- package/dist/styles.css +1 -1
- package/package.json +8 -3
package/dist/index.css
CHANGED
|
@@ -545,12 +545,21 @@
|
|
|
545
545
|
.w-5 {
|
|
546
546
|
width: calc(var(--spacing) * 5);
|
|
547
547
|
}
|
|
548
|
+
.w-8 {
|
|
549
|
+
width: calc(var(--spacing) * 8);
|
|
550
|
+
}
|
|
551
|
+
.w-32 {
|
|
552
|
+
width: calc(var(--spacing) * 32);
|
|
553
|
+
}
|
|
548
554
|
.w-56 {
|
|
549
555
|
width: calc(var(--spacing) * 56);
|
|
550
556
|
}
|
|
551
557
|
.w-80 {
|
|
552
558
|
width: calc(var(--spacing) * 80);
|
|
553
559
|
}
|
|
560
|
+
.w-\[20rem\] {
|
|
561
|
+
width: 20rem;
|
|
562
|
+
}
|
|
554
563
|
.w-\[94\%\] {
|
|
555
564
|
width: 94%;
|
|
556
565
|
}
|
|
@@ -569,6 +578,9 @@
|
|
|
569
578
|
.w-max {
|
|
570
579
|
width: max-content;
|
|
571
580
|
}
|
|
581
|
+
.w-screen {
|
|
582
|
+
width: 100vw;
|
|
583
|
+
}
|
|
572
584
|
.max-w-\(--skeleton-width\) {
|
|
573
585
|
max-width: var(--skeleton-width);
|
|
574
586
|
}
|
|
@@ -578,6 +590,9 @@
|
|
|
578
590
|
.max-w-max {
|
|
579
591
|
max-width: max-content;
|
|
580
592
|
}
|
|
593
|
+
.\!min-w-\[30rem\] {
|
|
594
|
+
min-width: 30rem !important;
|
|
595
|
+
}
|
|
581
596
|
.min-w-0 {
|
|
582
597
|
min-width: calc(var(--spacing) * 0);
|
|
583
598
|
}
|
|
@@ -659,6 +674,9 @@
|
|
|
659
674
|
.touch-none {
|
|
660
675
|
touch-action: none;
|
|
661
676
|
}
|
|
677
|
+
.resize {
|
|
678
|
+
resize: both;
|
|
679
|
+
}
|
|
662
680
|
.scroll-my-1 {
|
|
663
681
|
scroll-margin-block: calc(var(--spacing) * 1);
|
|
664
682
|
}
|
|
@@ -686,6 +704,9 @@
|
|
|
686
704
|
.justify-center {
|
|
687
705
|
justify-content: center;
|
|
688
706
|
}
|
|
707
|
+
.justify-end {
|
|
708
|
+
justify-content: flex-end;
|
|
709
|
+
}
|
|
689
710
|
.gap-1 {
|
|
690
711
|
gap: calc(var(--spacing) * 1);
|
|
691
712
|
}
|
|
@@ -695,6 +716,9 @@
|
|
|
695
716
|
.gap-2 {
|
|
696
717
|
gap: calc(var(--spacing) * 2);
|
|
697
718
|
}
|
|
719
|
+
.gap-3 {
|
|
720
|
+
gap: calc(var(--spacing) * 3);
|
|
721
|
+
}
|
|
698
722
|
.gap-4 {
|
|
699
723
|
gap: calc(var(--spacing) * 4);
|
|
700
724
|
}
|
|
@@ -772,6 +796,9 @@
|
|
|
772
796
|
--tw-border-style: none;
|
|
773
797
|
border-style: none;
|
|
774
798
|
}
|
|
799
|
+
.border-border {
|
|
800
|
+
border-color: var(--border);
|
|
801
|
+
}
|
|
775
802
|
.border-input {
|
|
776
803
|
border-color: var(--input);
|
|
777
804
|
}
|
|
@@ -820,6 +847,9 @@
|
|
|
820
847
|
.bg-destructive {
|
|
821
848
|
background-color: var(--destructive);
|
|
822
849
|
}
|
|
850
|
+
.bg-input {
|
|
851
|
+
background-color: var(--input);
|
|
852
|
+
}
|
|
823
853
|
.bg-muted {
|
|
824
854
|
background-color: var(--muted);
|
|
825
855
|
}
|
|
@@ -868,6 +898,9 @@
|
|
|
868
898
|
.p-2 {
|
|
869
899
|
padding: calc(var(--spacing) * 2);
|
|
870
900
|
}
|
|
901
|
+
.p-3 {
|
|
902
|
+
padding: calc(var(--spacing) * 3);
|
|
903
|
+
}
|
|
871
904
|
.p-4 {
|
|
872
905
|
padding: calc(var(--spacing) * 4);
|
|
873
906
|
}
|
|
@@ -913,6 +946,9 @@
|
|
|
913
946
|
.py-2 {
|
|
914
947
|
padding-block: calc(var(--spacing) * 2);
|
|
915
948
|
}
|
|
949
|
+
.py-3 {
|
|
950
|
+
padding-block: calc(var(--spacing) * 3);
|
|
951
|
+
}
|
|
916
952
|
.py-4 {
|
|
917
953
|
padding-block: calc(var(--spacing) * 4);
|
|
918
954
|
}
|
|
@@ -1619,6 +1655,13 @@
|
|
|
1619
1655
|
}
|
|
1620
1656
|
}
|
|
1621
1657
|
}
|
|
1658
|
+
.hover\:bg-card-foreground {
|
|
1659
|
+
&:hover {
|
|
1660
|
+
@media (hover: hover) {
|
|
1661
|
+
background-color: var(--card-foreground);
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
}
|
|
1622
1665
|
.hover\:bg-destructive\/90 {
|
|
1623
1666
|
&:hover {
|
|
1624
1667
|
@media (hover: hover) {
|
|
@@ -1629,6 +1672,13 @@
|
|
|
1629
1672
|
}
|
|
1630
1673
|
}
|
|
1631
1674
|
}
|
|
1675
|
+
.hover\:bg-muted {
|
|
1676
|
+
&:hover {
|
|
1677
|
+
@media (hover: hover) {
|
|
1678
|
+
background-color: var(--muted);
|
|
1679
|
+
}
|
|
1680
|
+
}
|
|
1681
|
+
}
|
|
1632
1682
|
.hover\:bg-primary\/90 {
|
|
1633
1683
|
&:hover {
|
|
1634
1684
|
@media (hover: hover) {
|
|
@@ -1772,6 +1822,12 @@
|
|
|
1772
1822
|
}
|
|
1773
1823
|
}
|
|
1774
1824
|
}
|
|
1825
|
+
.focus\:outline-none {
|
|
1826
|
+
&:focus {
|
|
1827
|
+
--tw-outline-style: none;
|
|
1828
|
+
outline-style: none;
|
|
1829
|
+
}
|
|
1830
|
+
}
|
|
1775
1831
|
.focus-visible\:border-ring {
|
|
1776
1832
|
&:focus-visible {
|
|
1777
1833
|
border-color: var(--ring);
|
|
@@ -1841,6 +1897,11 @@
|
|
|
1841
1897
|
cursor: not-allowed;
|
|
1842
1898
|
}
|
|
1843
1899
|
}
|
|
1900
|
+
.disabled\:opacity-40 {
|
|
1901
|
+
&:disabled {
|
|
1902
|
+
opacity: 40%;
|
|
1903
|
+
}
|
|
1904
|
+
}
|
|
1844
1905
|
.disabled\:opacity-50 {
|
|
1845
1906
|
&:disabled {
|
|
1846
1907
|
opacity: 50%;
|
|
@@ -2709,112 +2770,4739 @@
|
|
|
2709
2770
|
@property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
|
|
2710
2771
|
@property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
|
|
2711
2772
|
@property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
--border: oklch(0.4448 0.0409 263.25);
|
|
2730
|
-
--input: oklch(0.4448 0.0409 263.25);
|
|
2731
|
-
--ring: oklch(0.7122 0 0);
|
|
2732
|
-
--chart-1: oklch(0.646 0.222 41.116);
|
|
2733
|
-
--chart-2: oklch(0.6 0.118 184.704);
|
|
2734
|
-
--chart-3: oklch(0.398 0.07 227.392);
|
|
2735
|
-
--chart-4: oklch(0.828 0.189 84.429);
|
|
2736
|
-
--chart-5: oklch(0.769 0.188 70.08);
|
|
2737
|
-
--sidebar: oklch(0.3378 0.0223 256.39);
|
|
2738
|
-
--sidebar-foreground: oklch(0.9851 0 0);
|
|
2739
|
-
--sidebar-primary: oklch(0.6437 0.1913 274.74);
|
|
2740
|
-
--sidebar-primary-foreground: oklch(0.9851 0 0);
|
|
2741
|
-
--sidebar-accent: oklch(0.6437 0.1913 274.74);
|
|
2742
|
-
--sidebar-accent-foreground: oklch(0.9851 0 0);
|
|
2743
|
-
--sidebar-border: oklch(0.4448 0.0409 263.25);
|
|
2744
|
-
--sidebar-ring: oklch(0.7122 0 0);
|
|
2773
|
+
.wx-textarea.wx-3yFVAC {
|
|
2774
|
+
display: block;
|
|
2775
|
+
resize: vertical;
|
|
2776
|
+
width: var(--wx-input-width);
|
|
2777
|
+
max-width: 100%;
|
|
2778
|
+
padding: var(--wx-input-padding);
|
|
2779
|
+
outline: none;
|
|
2780
|
+
min-height: 100px;
|
|
2781
|
+
font-family: var(--wx-input-font-family);
|
|
2782
|
+
font-size: var(--wx-input-font-size);
|
|
2783
|
+
line-height: var(--wx-input-line-height);
|
|
2784
|
+
font-weight: var(--wx-input-font-weight);
|
|
2785
|
+
text-align: var(--wx-input-text-align);
|
|
2786
|
+
color: var(--wx-input-font-color);
|
|
2787
|
+
border: var(--wx-input-border);
|
|
2788
|
+
border-radius: var(--wx-input-border-radius);
|
|
2789
|
+
background: var(--wx-input-background);
|
|
2745
2790
|
}
|
|
2746
|
-
.
|
|
2747
|
-
|
|
2748
|
-
--background: oklch(0.2758 0.0182 262.2);
|
|
2749
|
-
--card: oklch(0.3378 0.0223 256.39);
|
|
2750
|
-
--card-foreground: oklch(0.3906 0.033 257.09);
|
|
2751
|
-
--popover: oklch(0.3906 0.033 257.09);
|
|
2752
|
-
--popover-foreground: oklch(0.9851 0 0);
|
|
2753
|
-
--foreground: oklch(0.9851 0 0);
|
|
2754
|
-
--primary: oklch(0.6437 0.1913 274.74);
|
|
2755
|
-
--primary-foreground: oklch(0.9851 0 0);
|
|
2756
|
-
--secondary: oklch(0.6437 0.1913 274.74);
|
|
2757
|
-
--secondary-foreground: oklch(0.9851 0 0);
|
|
2758
|
-
--muted: oklch(0.6437 0.1913 274.74);
|
|
2759
|
-
--muted-foreground: oklch(0.9851 0 0);
|
|
2760
|
-
--accent: oklch(0.6437 0.1913 274.74);
|
|
2761
|
-
--accent-foreground: oklch(0.9851 0 0);
|
|
2762
|
-
--destructive: oklch(0.577 0.245 27.325);
|
|
2763
|
-
--border: oklch(0.4448 0.0409 263.25);
|
|
2764
|
-
--input: oklch(0.4448 0.0409 263.25);
|
|
2765
|
-
--ring: oklch(0.7122 0 0);
|
|
2766
|
-
--chart-1: oklch(0.646 0.222 41.116);
|
|
2767
|
-
--chart-2: oklch(0.6 0.118 184.704);
|
|
2768
|
-
--chart-3: oklch(0.398 0.07 227.392);
|
|
2769
|
-
--chart-4: oklch(0.828 0.189 84.429);
|
|
2770
|
-
--chart-5: oklch(0.769 0.188 70.08);
|
|
2771
|
-
--sidebar: oklch(0.3378 0.0223 256.39);
|
|
2772
|
-
--sidebar-foreground: oklch(0.9851 0 0);
|
|
2773
|
-
--sidebar-primary: oklch(0.6437 0.1913 274.74);
|
|
2774
|
-
--sidebar-primary-foreground: oklch(0.9851 0 0);
|
|
2775
|
-
--sidebar-accent: oklch(0.6437 0.1913 274.74);
|
|
2776
|
-
--sidebar-accent-foreground: oklch(0.9851 0 0);
|
|
2777
|
-
--sidebar-border: oklch(0.4448 0.0409 263.25);
|
|
2778
|
-
--sidebar-ring: oklch(0.7122 0 0);
|
|
2791
|
+
.wx-textarea.wx-3yFVAC:focus {
|
|
2792
|
+
border: var(--wx-input-border-focus);
|
|
2779
2793
|
}
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
border-color: var(--border);
|
|
2783
|
-
outline-color: var(--ring);
|
|
2784
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2785
|
-
outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
2786
|
-
}
|
|
2787
|
-
padding: 0;
|
|
2788
|
-
margin: 0;
|
|
2789
|
-
box-sizing: border-box;
|
|
2790
|
-
}
|
|
2791
|
-
:root {
|
|
2792
|
-
--font-poppins: "Poppins", sans-serif;
|
|
2793
|
-
}
|
|
2794
|
-
body {
|
|
2795
|
-
background-color: var(--background);
|
|
2796
|
-
color: var(--foreground);
|
|
2797
|
-
font-family: var(--font-poppins);
|
|
2798
|
-
}
|
|
2794
|
+
.wx-textarea.wx-3yFVAC::placeholder {
|
|
2795
|
+
color: var(--wx-input-placeholder-color);
|
|
2799
2796
|
}
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2797
|
+
.wx-textarea[disabled].wx-3yFVAC {
|
|
2798
|
+
cursor: not-allowed;
|
|
2799
|
+
border: var(--wx-input-border-disabled);
|
|
2800
|
+
color: var(--wx-color-font-disabled);
|
|
2801
|
+
background: var(--wx-input-background-disabled);
|
|
2802
|
+
resize: none;
|
|
2803
|
+
}
|
|
2804
|
+
.wx-textarea[disabled].wx-3yFVAC::placeholder {
|
|
2805
|
+
color: var(--wx-color-font-disabled);
|
|
2806
|
+
}
|
|
2807
|
+
.wx-textarea.wx-error.wx-3yFVAC {
|
|
2808
|
+
border-color: var(--wx-color-danger);
|
|
2809
|
+
color: var(--wx-color-danger);
|
|
2810
|
+
}
|
|
2811
|
+
.wx-button.wx-2ZWgb4 {
|
|
2812
|
+
display: inline-block;
|
|
2813
|
+
vertical-align: top;
|
|
2814
|
+
text-decoration: none;
|
|
2815
|
+
text-align: center;
|
|
2816
|
+
letter-spacing: normal;
|
|
2817
|
+
text-transform: var(--wx-button-text-transform);
|
|
2818
|
+
font-family: var(--wx-button-font-family);
|
|
2819
|
+
font-size: var(--wx-button-font-size);
|
|
2820
|
+
line-height: var(--wx-button-line-height);
|
|
2821
|
+
font-weight: var(--wx-button-font-weight);
|
|
2822
|
+
padding: var(--wx-button-padding);
|
|
2823
|
+
border: var(--wx-button-border);
|
|
2824
|
+
border-radius: var(--wx-button-border-radius);
|
|
2825
|
+
background-color: var(--wx-button-background);
|
|
2826
|
+
color: var(--wx-button-font-color);
|
|
2827
|
+
cursor: pointer;
|
|
2828
|
+
box-shadow: none;
|
|
2829
|
+
transition: none;
|
|
2830
|
+
max-width: 100%;
|
|
2831
|
+
white-space: nowrap;
|
|
2832
|
+
overflow: hidden;
|
|
2833
|
+
text-overflow: ellipsis;
|
|
2834
|
+
-webkit-user-select: none;
|
|
2835
|
+
user-select: none;
|
|
2836
|
+
min-width: var(--wx-button-width);
|
|
2837
|
+
}
|
|
2838
|
+
.wx-button.wx-2ZWgb4:hover {
|
|
2839
|
+
background-image: linear-gradient(#0000001a 0% 100%);
|
|
2840
|
+
}
|
|
2841
|
+
.wx-button.wx-2ZWgb4,
|
|
2842
|
+
.wx-button.wx-2ZWgb4:focus,
|
|
2843
|
+
.wx-button.wx-2ZWgb4:active {
|
|
2844
|
+
outline: none;
|
|
2845
|
+
}
|
|
2846
|
+
.wx-button[disabled].wx-2ZWgb4 {
|
|
2847
|
+
cursor: not-allowed;
|
|
2848
|
+
background: var(--wx-color-disabled);
|
|
2849
|
+
border-color: transparent;
|
|
2850
|
+
color: var(--wx-color-font-disabled);
|
|
2851
|
+
}
|
|
2852
|
+
.wx-block.wx-2ZWgb4 {
|
|
2853
|
+
display: block;
|
|
2854
|
+
width: 100%;
|
|
2855
|
+
}
|
|
2856
|
+
.wx-square.wx-2ZWgb4 {
|
|
2857
|
+
border-radius: 0;
|
|
2858
|
+
}
|
|
2859
|
+
i.wx-2ZWgb4 {
|
|
2860
|
+
position: relative;
|
|
2861
|
+
display: inline-block;
|
|
2862
|
+
vertical-align: top;
|
|
2863
|
+
font-size: var(--wx-button-icon-size);
|
|
2864
|
+
line-height: 1;
|
|
2865
|
+
height: var(--wx-button-line-height);
|
|
2866
|
+
margin-right: 2px;
|
|
2867
|
+
opacity: .7;
|
|
2868
|
+
}
|
|
2869
|
+
i.wx-2ZWgb4:before {
|
|
2870
|
+
display: block;
|
|
2871
|
+
position: relative;
|
|
2872
|
+
top: 50%;
|
|
2873
|
+
transform: translateY(-50%);
|
|
2874
|
+
}
|
|
2875
|
+
.wx-icon.wx-2ZWgb4 {
|
|
2876
|
+
padding-left: var(--wx-button-icon-indent);
|
|
2877
|
+
padding-right: var(--wx-button-icon-indent);
|
|
2878
|
+
min-width: auto;
|
|
2879
|
+
}
|
|
2880
|
+
.wx-icon.wx-2ZWgb4 i.wx-2ZWgb4 {
|
|
2881
|
+
margin: 0;
|
|
2882
|
+
opacity: 1;
|
|
2883
|
+
}
|
|
2884
|
+
.wx-primary.wx-2ZWgb4 {
|
|
2885
|
+
background-color: var(--wx-color-primary);
|
|
2886
|
+
color: var(--wx-color-primary-font);
|
|
2887
|
+
}
|
|
2888
|
+
.wx-2ZWgb4.wx-pressed,
|
|
2889
|
+
.wx-2ZWgb4.wx-pressed:hover,
|
|
2890
|
+
.wx-2ZWgb4.wx-pressed:active,
|
|
2891
|
+
.wx-2ZWgb4.wx-pressed[disabled] {
|
|
2892
|
+
background-color: var(--wx-button-pressed);
|
|
2893
|
+
box-shadow: var(--wx-button-box-shadow);
|
|
2894
|
+
}
|
|
2895
|
+
.wx-2ZWgb4.wx-primary.wx-pressed:not(:global([disabled])),
|
|
2896
|
+
.wx-2ZWgb4.wx-primary.wx-pressed:hover:not(:global([disabled])),
|
|
2897
|
+
.wx-2ZWgb4.wx-primary.wx-pressed:active:not(:global([disabled])) {
|
|
2898
|
+
background-color: var(--wx-button-primary-pressed);
|
|
2899
|
+
box-shadow: var(--wx-button-primary-box-shadow);
|
|
2900
|
+
}
|
|
2901
|
+
.wx-2ZWgb4.wx-danger.wx-pressed:not(:global([disabled])),
|
|
2902
|
+
.wx-2ZWgb4.wx-danger.wx-pressed:hover:not(:global([disabled])),
|
|
2903
|
+
.wx-2ZWgb4.wx-danger.wx-pressed:active:not(:global([disabled])) {
|
|
2904
|
+
background-color: var(--wx-button-danger-pressed);
|
|
2905
|
+
box-shadow: var(--wx-button-primary-box-shadow);
|
|
2906
|
+
}
|
|
2907
|
+
.wx-secondary.wx-2ZWgb4 {
|
|
2908
|
+
background: var(--wx-color-secondary);
|
|
2909
|
+
color: var(--wx-color-secondary-font);
|
|
2910
|
+
border-color: var(--wx-color-secondary-border);
|
|
2911
|
+
}
|
|
2912
|
+
.wx-secondary.wx-2ZWgb4:hover:not([disabled]) {
|
|
2913
|
+
background: var(--wx-color-secondary-hover);
|
|
2914
|
+
}
|
|
2915
|
+
.wx-secondary.wx-pressed:not([disabled]).wx-2ZWgb4,
|
|
2916
|
+
.wx-secondary.wx-pressed:hover:not([disabled]).wx-2ZWgb4,
|
|
2917
|
+
.wx-secondary.wx-pressed:active:not([disabled]).wx-2ZWgb4 {
|
|
2918
|
+
background: var(--wx-color-secondary-hover);
|
|
2919
|
+
box-shadow: var(--wx-button-primary-box-shadow);
|
|
2920
|
+
}
|
|
2921
|
+
.wx-secondary[disabled].wx-2ZWgb4 {
|
|
2922
|
+
border-color: var(--wx-color-secondary-border-disabled);
|
|
2923
|
+
}
|
|
2924
|
+
.wx-danger.wx-2ZWgb4 {
|
|
2925
|
+
background-color: var(--wx-color-danger);
|
|
2926
|
+
color: var(--wx-button-danger-font-color);
|
|
2927
|
+
}
|
|
2928
|
+
.wx-link.wx-2ZWgb4 {
|
|
2929
|
+
color: var(--wx-color-link);
|
|
2930
|
+
padding: 0;
|
|
2931
|
+
border: none;
|
|
2932
|
+
vertical-align: baseline;
|
|
2933
|
+
}
|
|
2934
|
+
.wx-link.wx-2ZWgb4,
|
|
2935
|
+
.wx-link.wx-2ZWgb4:hover,
|
|
2936
|
+
.wx-link[disabled].wx-2ZWgb4 {
|
|
2937
|
+
background: transparent;
|
|
2938
|
+
}
|
|
2939
|
+
.wx-link[disabled].wx-2ZWgb4 {
|
|
2940
|
+
color: var(--wx-color-font-disabled);
|
|
2941
|
+
}
|
|
2942
|
+
.wx-checkbox.wx-2IvefP {
|
|
2943
|
+
position: relative;
|
|
2944
|
+
display: inline-block;
|
|
2945
|
+
vertical-align: top;
|
|
2946
|
+
max-width: var(--wx-input-width);
|
|
2947
|
+
}
|
|
2948
|
+
.wx-check.wx-2IvefP {
|
|
2949
|
+
appearance: none;
|
|
2950
|
+
width: 0;
|
|
2951
|
+
height: 0;
|
|
2952
|
+
opacity: 0;
|
|
2953
|
+
position: absolute;
|
|
2954
|
+
left: 0;
|
|
2955
|
+
top: 0;
|
|
2956
|
+
margin: 0;
|
|
2957
|
+
padding: 0;
|
|
2958
|
+
}
|
|
2959
|
+
.wx-label.wx-2IvefP {
|
|
2960
|
+
display: flex;
|
|
2961
|
+
flex-wrap: nowrap;
|
|
2962
|
+
align-items: flex-start;
|
|
2963
|
+
font-family: var(--wx-checkbox-font-family);
|
|
2964
|
+
font-size: var(--wx-checkbox-font-size);
|
|
2965
|
+
line-height: var(--wx-checkbox-line-height);
|
|
2966
|
+
font-weight: var(--wx-checkbox-font-weight);
|
|
2967
|
+
color: var(--wx-checkbox-font-color);
|
|
2968
|
+
cursor: pointer;
|
|
2969
|
+
}
|
|
2970
|
+
.wx-before.wx-2IvefP,
|
|
2971
|
+
.wx-after.wx-2IvefP {
|
|
2972
|
+
display: block;
|
|
2973
|
+
}
|
|
2974
|
+
.wx-after.wx-2IvefP {
|
|
2975
|
+
margin-left: 8px;
|
|
2976
|
+
padding-top: calc((var(--wx-checkbox-height) - var(--wx-checkbox-line-height)) / 2);
|
|
2977
|
+
padding-bottom: calc((var(--wx-checkbox-height) - var(--wx-checkbox-line-height)) / 2);
|
|
2978
|
+
}
|
|
2979
|
+
.wx-before.wx-2IvefP {
|
|
2980
|
+
position: relative;
|
|
2981
|
+
flex-shrink: 0;
|
|
2982
|
+
padding-top: calc((var(--wx-checkbox-height) - var(--wx-checkbox-size)) / 2);
|
|
2983
|
+
padding-bottom: calc((var(--wx-checkbox-height) - var(--wx-checkbox-size)) / 2);
|
|
2984
|
+
}
|
|
2985
|
+
.wx-before.wx-2IvefP:before {
|
|
2986
|
+
content: "";
|
|
2987
|
+
display: block;
|
|
2988
|
+
width: var(--wx-checkbox-size);
|
|
2989
|
+
height: var(--wx-checkbox-size);
|
|
2990
|
+
border: var(--wx-checkbox-border-width) solid var(--wx-checkbox-border-color);
|
|
2991
|
+
border-radius: var(--wx-checkbox-border-radius);
|
|
2992
|
+
background: var(--wx-input-background);
|
|
2993
|
+
}
|
|
2994
|
+
.wx-before.wx-2IvefP:after {
|
|
2995
|
+
content: "";
|
|
2996
|
+
position: absolute;
|
|
2997
|
+
display: none;
|
|
2998
|
+
left: 50%;
|
|
2999
|
+
top: 50%;
|
|
3000
|
+
width: calc(var(--wx-checkbox-size) * .56);
|
|
3001
|
+
height: calc(var(--wx-checkbox-size) * .32);
|
|
3002
|
+
border-style: solid;
|
|
3003
|
+
border-color: var(--wx-color-primary-font);
|
|
3004
|
+
border-width: 0 0 calc(var(--wx-checkbox-size) * .12) calc(var(--wx-checkbox-size) * .12);
|
|
3005
|
+
transform: rotate(-45deg);
|
|
3006
|
+
margin-left: calc(var(--wx-checkbox-size) * -.26);
|
|
3007
|
+
margin-top: calc(var(--wx-checkbox-size) * -.24);
|
|
3008
|
+
}
|
|
3009
|
+
.wx-check.wx-2IvefP:checked ~ .wx-label.wx-2IvefP .wx-before.wx-2IvefP:before {
|
|
3010
|
+
background: var(--wx-color-primary);
|
|
3011
|
+
border-color: transparent;
|
|
3012
|
+
}
|
|
3013
|
+
.wx-check.wx-2IvefP:checked ~ .wx-label.wx-2IvefP .wx-before.wx-2IvefP:after {
|
|
3014
|
+
display: block;
|
|
3015
|
+
}
|
|
3016
|
+
.wx-check.wx-2IvefP[disabled] ~ .wx-label.wx-2IvefP {
|
|
3017
|
+
color: var(--wx-checkbox-border-color-disabled);
|
|
3018
|
+
cursor: not-allowed;
|
|
3019
|
+
}
|
|
3020
|
+
.wx-check.wx-2IvefP[disabled]:not(:checked) ~ .wx-label.wx-2IvefP .wx-before.wx-2IvefP:before {
|
|
3021
|
+
border-color: var(--wx-checkbox-border-color-disabled);
|
|
3022
|
+
}
|
|
3023
|
+
.wx-check.wx-2IvefP[disabled]:checked ~ .wx-label.wx-2IvefP .wx-before.wx-2IvefP:before {
|
|
3024
|
+
background: var(--wx-checkbox-border-color-disabled);
|
|
3025
|
+
}
|
|
3026
|
+
.wx-check.wx-2IvefP[disabled] ~ .wx-label.wx-2IvefP .wx-before.wx-2IvefP:after {
|
|
3027
|
+
border-color: var(--wx-input-background);
|
|
3028
|
+
}
|
|
3029
|
+
.wx-checkboxgroup.wx-q8xwRD {
|
|
3030
|
+
display: flex;
|
|
3031
|
+
flex-wrap: wrap;
|
|
3032
|
+
align-items: flex-start;
|
|
3033
|
+
justify-content: flex-start;
|
|
3034
|
+
margin-top: calc(var(--wx-field-gutter) * -1);
|
|
3035
|
+
}
|
|
3036
|
+
.wx-item.wx-q8xwRD {
|
|
3037
|
+
flex: 0 0 100%;
|
|
3038
|
+
max-width: 100%;
|
|
3039
|
+
margin-top: var(--wx-field-gutter);
|
|
3040
|
+
}
|
|
3041
|
+
.wx-checkboxgroup.wx-inline.wx-q8xwRD .wx-item.wx-q8xwRD {
|
|
3042
|
+
flex: none;
|
|
3043
|
+
padding-right: var(--wx-field-gutter);
|
|
3044
|
+
}
|
|
3045
|
+
.wx-checkboxgroup.wx-grid.wx-q8xwRD .wx-item.wx-q8xwRD {
|
|
3046
|
+
flex: 0 0 50%;
|
|
3047
|
+
max-width: 50%;
|
|
3048
|
+
padding-right: var(--wx-field-gutter);
|
|
3049
|
+
}
|
|
3050
|
+
.wx-dropdown.wx-32GZ52 {
|
|
3051
|
+
position: absolute;
|
|
3052
|
+
z-index: 5;
|
|
3053
|
+
background: var(--wx-popup-background);
|
|
3054
|
+
box-shadow: var(--wx-popup-shadow);
|
|
3055
|
+
border: var(--wx-popup-border);
|
|
3056
|
+
border-radius: var(--wx-popup-border-radius);
|
|
3057
|
+
overflow: hidden;
|
|
3058
|
+
}
|
|
3059
|
+
.wx-top-center.wx-32GZ52 {
|
|
3060
|
+
top: 0;
|
|
3061
|
+
left: 50%;
|
|
3062
|
+
transform: translate(-50%, -100%) translateY(-2px);
|
|
3063
|
+
}
|
|
3064
|
+
.wx-top-start.wx-32GZ52 {
|
|
3065
|
+
top: 0;
|
|
3066
|
+
left: 0;
|
|
3067
|
+
transform: translateY(-100%) translateY(-2px);
|
|
3068
|
+
}
|
|
3069
|
+
.wx-top-end.wx-32GZ52 {
|
|
3070
|
+
top: 0;
|
|
3071
|
+
right: 0;
|
|
3072
|
+
transform: translateY(-100%) translateY(-2px);
|
|
3073
|
+
}
|
|
3074
|
+
.wx-bottom-center.wx-32GZ52 {
|
|
3075
|
+
bottom: 0;
|
|
3076
|
+
left: 50%;
|
|
3077
|
+
transform: translate(-50%, 100%) translateY(2px);
|
|
3078
|
+
}
|
|
3079
|
+
.wx-bottom-start.wx-32GZ52 {
|
|
3080
|
+
bottom: 0;
|
|
3081
|
+
left: 0;
|
|
3082
|
+
transform: translateY(100%) translateY(2px);
|
|
3083
|
+
}
|
|
3084
|
+
.wx-bottom-end.wx-32GZ52 {
|
|
3085
|
+
bottom: 0;
|
|
3086
|
+
right: 0;
|
|
3087
|
+
transform: translateY(100%) translateY(2px);
|
|
3088
|
+
}
|
|
3089
|
+
.wx-left-center.wx-32GZ52 {
|
|
3090
|
+
bottom: 50%;
|
|
3091
|
+
left: 0;
|
|
3092
|
+
transform: translate(-100%, 50%) translate(-2px);
|
|
3093
|
+
}
|
|
3094
|
+
.wx-left-start.wx-32GZ52 {
|
|
3095
|
+
top: 0;
|
|
3096
|
+
left: 0;
|
|
3097
|
+
transform: translate(-100%) translate(-2px);
|
|
3098
|
+
}
|
|
3099
|
+
.wx-left-end.wx-32GZ52 {
|
|
3100
|
+
bottom: 0;
|
|
3101
|
+
left: 0;
|
|
3102
|
+
transform: translate(-100%) translate(-2px);
|
|
3103
|
+
}
|
|
3104
|
+
.wx-right-center.wx-32GZ52 {
|
|
3105
|
+
bottom: 50%;
|
|
3106
|
+
right: 0;
|
|
3107
|
+
transform: translate(100%, 50%) translate(2px);
|
|
3108
|
+
}
|
|
3109
|
+
.wx-right-start.wx-32GZ52 {
|
|
3110
|
+
top: 0;
|
|
3111
|
+
right: 0;
|
|
3112
|
+
transform: translate(100%) translate(2px);
|
|
3113
|
+
}
|
|
3114
|
+
.wx-right-end.wx-32GZ52 {
|
|
3115
|
+
bottom: 0;
|
|
3116
|
+
right: 0;
|
|
3117
|
+
transform: translate(100%) translate(2px);
|
|
3118
|
+
}
|
|
3119
|
+
.wx-colorselect.wx-121TgJ {
|
|
3120
|
+
position: relative;
|
|
3121
|
+
width: var(--wx-input-width);
|
|
3122
|
+
}
|
|
3123
|
+
.wx-selected.wx-121TgJ {
|
|
3124
|
+
position: absolute;
|
|
3125
|
+
left: var(--wx-input-icon-indent);
|
|
3126
|
+
top: 50%;
|
|
3127
|
+
transform: translateY(-50%);
|
|
3128
|
+
}
|
|
3129
|
+
.wx-colors.wx-121TgJ {
|
|
3130
|
+
display: flex;
|
|
3131
|
+
flex-wrap: wrap;
|
|
3132
|
+
gap: 8px;
|
|
3133
|
+
padding: 8px;
|
|
3134
|
+
}
|
|
3135
|
+
.wx-color.wx-121TgJ {
|
|
3136
|
+
width: var(--wx-input-icon-size);
|
|
3137
|
+
height: var(--wx-input-icon-size);
|
|
3138
|
+
border-radius: var(--wx-input-border-radius);
|
|
3139
|
+
cursor: pointer;
|
|
3140
|
+
}
|
|
3141
|
+
.wx-input.wx-121TgJ {
|
|
3142
|
+
display: block;
|
|
3143
|
+
width: 100%;
|
|
3144
|
+
height: var(--wx-input-height);
|
|
3145
|
+
outline: none;
|
|
3146
|
+
background: var(--wx-input-background);
|
|
3147
|
+
border: var(--wx-input-border);
|
|
3148
|
+
border-radius: var(--wx-input-border-radius);
|
|
3149
|
+
font-family: var(--wx-input-font-family);
|
|
3150
|
+
font-size: var(--wx-input-font-size);
|
|
3151
|
+
line-height: var(--wx-input-line-height);
|
|
3152
|
+
font-weight: var(--wx-input-font-weight);
|
|
3153
|
+
text-align: var(--wx-input-text-align);
|
|
3154
|
+
color: var(--wx-input-font-color);
|
|
3155
|
+
padding: var(--wx-input-padding);
|
|
3156
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3157
|
+
padding-left: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3158
|
+
overflow: hidden;
|
|
3159
|
+
text-overflow: ellipsis;
|
|
3160
|
+
}
|
|
3161
|
+
.wx-input.wx-121TgJ.wx-focus {
|
|
3162
|
+
border: var(--wx-input-border-focus);
|
|
3163
|
+
}
|
|
3164
|
+
.wx-input.wx-121TgJ::placeholder {
|
|
3165
|
+
color: var(--wx-input-placeholder-color);
|
|
3166
|
+
}
|
|
3167
|
+
.wx-input.wx-121TgJ[disabled] {
|
|
3168
|
+
cursor: not-allowed;
|
|
3169
|
+
border: var(--wx-input-border-disabled);
|
|
3170
|
+
color: var(--wx-color-font-disabled);
|
|
3171
|
+
background: var(--wx-input-background-disabled);
|
|
3172
|
+
}
|
|
3173
|
+
.wx-input.wx-121TgJ[disabled]::placeholder {
|
|
3174
|
+
color: var(--wx-color-font-disabled);
|
|
3175
|
+
}
|
|
3176
|
+
.wx-input.wx-121TgJ[disabled] ~ .wx-color,
|
|
3177
|
+
.wx-input.wx-121TgJ[disabled] ~ .wx-empty {
|
|
3178
|
+
cursor: not-allowed;
|
|
3179
|
+
}
|
|
3180
|
+
.wx-input.wx-121TgJ.wx-error {
|
|
3181
|
+
border-color: var(--wx-color-danger);
|
|
3182
|
+
color: var(--wx-color-danger);
|
|
3183
|
+
}
|
|
3184
|
+
.wx-empty.wx-121TgJ {
|
|
3185
|
+
width: var(--wx-input-icon-size);
|
|
3186
|
+
height: var(--wx-input-icon-size);
|
|
3187
|
+
border: var(--wx-input-border);
|
|
3188
|
+
border-radius: var(--wx-input-border-radius);
|
|
3189
|
+
background:
|
|
3190
|
+
linear-gradient(
|
|
3191
|
+
to top left,
|
|
3192
|
+
#0000 0% calc(50% - 1px),
|
|
3193
|
+
red 50%,
|
|
3194
|
+
#0000 calc(50% + 1px) 100%);
|
|
3195
|
+
cursor: pointer;
|
|
3196
|
+
-webkit-user-select: none;
|
|
3197
|
+
user-select: none;
|
|
3198
|
+
}
|
|
3199
|
+
.wxi-close.wx-121TgJ {
|
|
3200
|
+
position: absolute;
|
|
3201
|
+
right: var(--wx-input-icon-indent);
|
|
3202
|
+
top: 50%;
|
|
3203
|
+
transform: translateY(-50%);
|
|
3204
|
+
font-size: var(--wx-input-icon-size);
|
|
3205
|
+
line-height: 1;
|
|
3206
|
+
display: flex;
|
|
3207
|
+
justify-content: center;
|
|
3208
|
+
align-items: center;
|
|
3209
|
+
width: var(--wx-input-icon-size);
|
|
3210
|
+
height: var(--wx-input-icon-size);
|
|
3211
|
+
border-radius: var(--wx-input-border-radius);
|
|
3212
|
+
color: var(--wx-input-icon-color);
|
|
3213
|
+
cursor: pointer;
|
|
3214
|
+
}
|
|
3215
|
+
.wxi-close.wx-121TgJ:hover {
|
|
3216
|
+
background: var(--wx-background-hover);
|
|
3217
|
+
border-radius: var(--wx-icon-border-radius);
|
|
3218
|
+
}
|
|
3219
|
+
.wx-colorboard.wx-1yoKzq {
|
|
3220
|
+
display: flex;
|
|
3221
|
+
flex-direction: column;
|
|
3222
|
+
gap: 12px;
|
|
3223
|
+
padding: 8px;
|
|
3224
|
+
width: 100%;
|
|
3225
|
+
}
|
|
3226
|
+
.wx-color-block.wx-1yoKzq {
|
|
3227
|
+
height: 140px;
|
|
3228
|
+
width: 100%;
|
|
3229
|
+
position: relative;
|
|
3230
|
+
box-shadow: 0 1px 3px #0003;
|
|
3231
|
+
}
|
|
3232
|
+
.wx-color-block.wx-1yoKzq:before,
|
|
3233
|
+
.wx-color-block.wx-1yoKzq:after {
|
|
3234
|
+
content: "";
|
|
3235
|
+
width: 100%;
|
|
3236
|
+
height: 100%;
|
|
3237
|
+
position: absolute;
|
|
3238
|
+
}
|
|
3239
|
+
.wx-color-block.wx-1yoKzq:before {
|
|
3240
|
+
background-image:
|
|
3241
|
+
linear-gradient(
|
|
3242
|
+
0deg,
|
|
3243
|
+
#000,
|
|
3244
|
+
#fff0);
|
|
3245
|
+
z-index: 2;
|
|
3246
|
+
}
|
|
3247
|
+
.wx-color-block.wx-1yoKzq:after {
|
|
3248
|
+
background-image:
|
|
3249
|
+
linear-gradient(
|
|
3250
|
+
90deg,
|
|
3251
|
+
#fff,
|
|
3252
|
+
#cb998000);
|
|
3253
|
+
z-index: 1;
|
|
3254
|
+
}
|
|
3255
|
+
.wx-color-block-slider.wx-1yoKzq {
|
|
3256
|
+
height: 16px;
|
|
3257
|
+
width: 16px;
|
|
3258
|
+
margin: -8px 0 0 -8px;
|
|
3259
|
+
}
|
|
3260
|
+
.wx-slider.wx-1yoKzq {
|
|
3261
|
+
border: 2px solid white;
|
|
3262
|
+
border-radius: 50%;
|
|
3263
|
+
position: absolute;
|
|
3264
|
+
z-index: 3;
|
|
3265
|
+
box-shadow: 0 1px 3px #0003;
|
|
3266
|
+
}
|
|
3267
|
+
.wx-slider.wx-1yoKzq:focus,
|
|
3268
|
+
.wx-slider.wx-1yoKzq:hover {
|
|
3269
|
+
outline: none;
|
|
3270
|
+
box-shadow: 0 1px 3px #0003, inset 0 0 4px #fff;
|
|
3271
|
+
}
|
|
3272
|
+
.wx-color-line.wx-1yoKzq {
|
|
3273
|
+
width: 100%;
|
|
3274
|
+
height: 8px;
|
|
3275
|
+
background-image:
|
|
3276
|
+
linear-gradient(
|
|
3277
|
+
90deg,
|
|
3278
|
+
red,
|
|
3279
|
+
#ff0 17%,
|
|
3280
|
+
#0f0 33%,
|
|
3281
|
+
#0ff,
|
|
3282
|
+
#00f 67%,
|
|
3283
|
+
#f0f 83%,
|
|
3284
|
+
red);
|
|
3285
|
+
position: relative;
|
|
3286
|
+
border-radius: 6px;
|
|
3287
|
+
}
|
|
3288
|
+
.wx-color-line-slider.wx-1yoKzq {
|
|
3289
|
+
height: 14px;
|
|
3290
|
+
width: 14px;
|
|
3291
|
+
margin: 0 0 0 -7px;
|
|
3292
|
+
top: -4px;
|
|
3293
|
+
}
|
|
3294
|
+
.wx-color-controls.wx-1yoKzq {
|
|
3295
|
+
display: flex;
|
|
3296
|
+
flex-wrap: wrap;
|
|
3297
|
+
justify-content: space-between;
|
|
3298
|
+
}
|
|
3299
|
+
.wx-color.wx-1yoKzq,
|
|
3300
|
+
.wx-text.wx-1yoKzq {
|
|
3301
|
+
width: calc(50% - 4px);
|
|
3302
|
+
}
|
|
3303
|
+
.wx-color.wx-1yoKzq {
|
|
3304
|
+
height: 32px;
|
|
3305
|
+
}
|
|
3306
|
+
.wx-text.wx-1yoKzq {
|
|
3307
|
+
outline: none;
|
|
3308
|
+
background: var(--wx-input-background);
|
|
3309
|
+
border: var(--wx-input-border);
|
|
3310
|
+
border-radius: var(--wx-input-border-radius);
|
|
3311
|
+
font-family: var(--wx-input-font-family);
|
|
3312
|
+
font-size: var(--wx-input-font-size);
|
|
3313
|
+
line-height: var(--wx-input-line-height);
|
|
3314
|
+
font-weight: var(--wx-input-font-weight);
|
|
3315
|
+
text-align: var(--wx-input-text-align);
|
|
3316
|
+
color: var(--wx-input-font-color);
|
|
3317
|
+
padding: var(--wx-input-padding);
|
|
3318
|
+
}
|
|
3319
|
+
.wx-text.wx-1yoKzq:focus {
|
|
3320
|
+
border: var(--wx-input-border-focus);
|
|
3321
|
+
}
|
|
3322
|
+
.wx-colorpicker.wx-mmT8WH {
|
|
3323
|
+
position: relative;
|
|
3324
|
+
width: var(--wx-input-width);
|
|
3325
|
+
}
|
|
3326
|
+
.wx-color.wx-mmT8WH {
|
|
3327
|
+
width: var(--wx-input-icon-size);
|
|
3328
|
+
height: var(--wx-input-icon-size);
|
|
3329
|
+
border-radius: var(--wx-input-border-radius);
|
|
3330
|
+
cursor: pointer;
|
|
3331
|
+
position: absolute;
|
|
3332
|
+
left: var(--wx-input-icon-indent);
|
|
3333
|
+
top: 50%;
|
|
3334
|
+
transform: translateY(-50%);
|
|
3335
|
+
}
|
|
3336
|
+
.wx-input.wx-mmT8WH {
|
|
3337
|
+
display: block;
|
|
3338
|
+
width: 100%;
|
|
3339
|
+
height: var(--wx-input-height);
|
|
3340
|
+
outline: none;
|
|
3341
|
+
background: var(--wx-input-background);
|
|
3342
|
+
border: var(--wx-input-border);
|
|
3343
|
+
border-radius: var(--wx-input-border-radius);
|
|
3344
|
+
font-family: var(--wx-input-font-family);
|
|
3345
|
+
font-size: var(--wx-input-font-size);
|
|
3346
|
+
line-height: var(--wx-input-line-height);
|
|
3347
|
+
font-weight: var(--wx-input-font-weight);
|
|
3348
|
+
text-align: var(--wx-input-text-align);
|
|
3349
|
+
color: var(--wx-input-font-color);
|
|
3350
|
+
padding: var(--wx-input-padding);
|
|
3351
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3352
|
+
padding-left: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3353
|
+
overflow: hidden;
|
|
3354
|
+
text-overflow: ellipsis;
|
|
3355
|
+
}
|
|
3356
|
+
.wx-input.wx-focus.wx-mmT8WH {
|
|
3357
|
+
border: var(--wx-input-border-focus);
|
|
3358
|
+
}
|
|
3359
|
+
.wx-input.wx-mmT8WH::placeholder {
|
|
3360
|
+
color: var(--wx-input-placeholder-color);
|
|
3361
|
+
}
|
|
3362
|
+
.wx-input.wx-mmT8WH[disabled] {
|
|
3363
|
+
cursor: not-allowed;
|
|
3364
|
+
border: var(--wx-input-border-disabled);
|
|
3365
|
+
color: var(--wx-color-font-disabled);
|
|
3366
|
+
background: var(--wx-input-background-disabled);
|
|
3367
|
+
}
|
|
3368
|
+
.wx-input.wx-mmT8WH[disabled]::placeholder {
|
|
3369
|
+
color: var(--wx-color-font-disabled);
|
|
3370
|
+
}
|
|
3371
|
+
.wx-input.wx-mmT8WH[disabled] ~ .wx-color.wx-mmT8WH {
|
|
3372
|
+
cursor: not-allowed;
|
|
3373
|
+
}
|
|
3374
|
+
.wx-input.wx-error.wx-mmT8WH {
|
|
3375
|
+
border-color: var(--wx-color-danger);
|
|
3376
|
+
color: var(--wx-color-danger);
|
|
3377
|
+
}
|
|
3378
|
+
.wxi-close.wx-mmT8WH {
|
|
3379
|
+
position: absolute;
|
|
3380
|
+
right: var(--wx-input-icon-indent);
|
|
3381
|
+
top: 50%;
|
|
3382
|
+
transform: translateY(-50%);
|
|
3383
|
+
font-size: var(--wx-input-icon-size);
|
|
3384
|
+
line-height: 1;
|
|
3385
|
+
width: var(--wx-input-icon-size);
|
|
3386
|
+
height: var(--wx-input-icon-size);
|
|
3387
|
+
display: flex;
|
|
3388
|
+
justify-content: center;
|
|
3389
|
+
align-items: center;
|
|
3390
|
+
-webkit-user-select: none;
|
|
3391
|
+
user-select: none;
|
|
3392
|
+
color: var(--wx-input-icon-color);
|
|
3393
|
+
cursor: pointer;
|
|
3394
|
+
}
|
|
3395
|
+
.wxi-close.wx-mmT8WH:before {
|
|
3396
|
+
display: block;
|
|
3397
|
+
}
|
|
3398
|
+
.wxi-close.wx-mmT8WH:hover {
|
|
3399
|
+
background: var(--wx-background-hover);
|
|
3400
|
+
border-radius: var(--wx-icon-border-radius);
|
|
3401
|
+
}
|
|
3402
|
+
.wx-list.wx-233fr7 {
|
|
3403
|
+
max-height: 250px;
|
|
3404
|
+
overflow-y: auto;
|
|
3405
|
+
}
|
|
3406
|
+
.wx-item.wx-233fr7 {
|
|
3407
|
+
display: flex;
|
|
3408
|
+
flex-wrap: nowrap;
|
|
3409
|
+
align-items: center;
|
|
3410
|
+
font-family: var(--wx-input-font-family);
|
|
3411
|
+
font-size: var(--wx-input-font-size);
|
|
3412
|
+
line-height: var(--wx-input-line-height);
|
|
3413
|
+
font-weight: var(--wx-input-font-weight);
|
|
3414
|
+
color: var(--wx-input-font-color);
|
|
3415
|
+
padding: var(--wx-input-padding);
|
|
3416
|
+
cursor: pointer;
|
|
3417
|
+
}
|
|
3418
|
+
.wx-item.wx-focus.wx-233fr7 {
|
|
3419
|
+
background: var(--wx-background-hover);
|
|
3420
|
+
}
|
|
3421
|
+
.wx-no-data.wx-233fr7 {
|
|
3422
|
+
padding: var(--wx-input-padding);
|
|
3423
|
+
}
|
|
3424
|
+
.wx-combo.wx-1j11Jk {
|
|
3425
|
+
position: relative;
|
|
3426
|
+
width: var(--wx-input-width);
|
|
3427
|
+
}
|
|
3428
|
+
.wx-input.wx-1j11Jk {
|
|
3429
|
+
display: block;
|
|
3430
|
+
width: 100%;
|
|
3431
|
+
height: var(--wx-input-height);
|
|
3432
|
+
outline: none;
|
|
3433
|
+
background: var(--wx-input-background);
|
|
3434
|
+
border: var(--wx-input-border);
|
|
3435
|
+
border-radius: var(--wx-input-border-radius);
|
|
3436
|
+
font-family: var(--wx-input-font-family);
|
|
3437
|
+
font-size: var(--wx-input-font-size);
|
|
3438
|
+
line-height: var(--wx-input-line-height);
|
|
3439
|
+
font-weight: var(--wx-input-font-weight);
|
|
3440
|
+
text-align: var(--wx-input-text-align);
|
|
3441
|
+
color: var(--wx-input-font-color);
|
|
3442
|
+
padding: var(--wx-input-padding);
|
|
3443
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3444
|
+
overflow: hidden;
|
|
3445
|
+
text-overflow: ellipsis;
|
|
3446
|
+
cursor: pointer;
|
|
3447
|
+
}
|
|
3448
|
+
.wx-input.wx-1j11Jk:focus {
|
|
3449
|
+
border: var(--wx-input-border-focus);
|
|
3450
|
+
}
|
|
3451
|
+
.wx-input.wx-1j11Jk::placeholder {
|
|
3452
|
+
color: var(--wx-input-placeholder-color);
|
|
3453
|
+
}
|
|
3454
|
+
.wx-input.wx-1j11Jk[disabled] {
|
|
3455
|
+
cursor: not-allowed;
|
|
3456
|
+
border: var(--wx-input-border-disabled);
|
|
3457
|
+
color: var(--wx-color-font-disabled);
|
|
3458
|
+
background: var(--wx-input-background-disabled);
|
|
3459
|
+
}
|
|
3460
|
+
.wx-input.wx-1j11Jk[disabled]::placeholder {
|
|
3461
|
+
color: var(--wx-color-font-disabled);
|
|
3462
|
+
}
|
|
3463
|
+
.wx-input.wx-1j11Jk[disabled] ~ .wx-icon.wx-1j11Jk {
|
|
3464
|
+
color: var(--wx-color-font-disabled);
|
|
3465
|
+
}
|
|
3466
|
+
.wx-input.wx-error.wx-1j11Jk {
|
|
3467
|
+
border-color: var(--wx-color-danger);
|
|
3468
|
+
color: var(--wx-color-danger);
|
|
3469
|
+
}
|
|
3470
|
+
.wx-input.wx-error.wx-1j11Jk ~ .wx-icon.wx-1j11Jk {
|
|
3471
|
+
color: var(--wx-color-danger);
|
|
3472
|
+
}
|
|
3473
|
+
.wx-icon.wx-1j11Jk {
|
|
3474
|
+
position: absolute;
|
|
3475
|
+
right: var(--wx-input-icon-indent);
|
|
3476
|
+
top: 50%;
|
|
3477
|
+
transform: translateY(-50%);
|
|
3478
|
+
font-size: var(--wx-input-icon-size);
|
|
3479
|
+
line-height: 1;
|
|
3480
|
+
width: var(--wx-input-icon-size);
|
|
3481
|
+
height: var(--wx-input-icon-size);
|
|
3482
|
+
display: flex;
|
|
3483
|
+
justify-content: center;
|
|
3484
|
+
align-items: center;
|
|
3485
|
+
pointer-events: none;
|
|
3486
|
+
-webkit-user-select: none;
|
|
3487
|
+
user-select: none;
|
|
3488
|
+
color: var(--wx-input-icon-color);
|
|
3489
|
+
}
|
|
3490
|
+
.wx-icon.wx-1j11Jk:before {
|
|
3491
|
+
display: block;
|
|
3492
|
+
}
|
|
3493
|
+
.wx-icon.wxi-close.wx-1j11Jk {
|
|
3494
|
+
pointer-events: all;
|
|
3495
|
+
cursor: pointer;
|
|
3496
|
+
}
|
|
3497
|
+
.wx-icon.wxi-close.wx-1j11Jk:hover {
|
|
3498
|
+
background: var(--wx-background-hover);
|
|
3499
|
+
border-radius: var(--wx-icon-border-radius);
|
|
3500
|
+
}
|
|
3501
|
+
.wx-text.wx-hQ64J4 {
|
|
3502
|
+
position: relative;
|
|
3503
|
+
width: var(--wx-input-width);
|
|
3504
|
+
}
|
|
3505
|
+
.wx-text.wx-disabled.wx-hQ64J4 .wx-icon.wx-hQ64J4 {
|
|
3506
|
+
color: var(--wx-color-font-disabled);
|
|
3507
|
+
}
|
|
3508
|
+
.wx-text.wx-error.wx-hQ64J4 .wx-icon.wx-hQ64J4 {
|
|
3509
|
+
color: var(--wx-color-danger);
|
|
3510
|
+
}
|
|
3511
|
+
.wx-icon.wx-hQ64J4 {
|
|
3512
|
+
position: absolute;
|
|
3513
|
+
right: var(--wx-input-icon-indent);
|
|
3514
|
+
top: 50%;
|
|
3515
|
+
transform: translateY(-50%);
|
|
3516
|
+
font-size: var(--wx-input-icon-size);
|
|
3517
|
+
line-height: 1;
|
|
3518
|
+
width: var(--wx-input-icon-size);
|
|
3519
|
+
height: var(--wx-input-icon-size);
|
|
3520
|
+
display: flex;
|
|
3521
|
+
justify-content: center;
|
|
3522
|
+
align-items: center;
|
|
3523
|
+
pointer-events: none;
|
|
3524
|
+
-webkit-user-select: none;
|
|
3525
|
+
user-select: none;
|
|
3526
|
+
color: var(--wx-input-icon-color);
|
|
3527
|
+
}
|
|
3528
|
+
.wx-icon.wx-hQ64J4:before {
|
|
3529
|
+
display: block;
|
|
3530
|
+
}
|
|
3531
|
+
.wx-icon-left.wx-hQ64J4 .wx-icon.wx-hQ64J4:not(.wxi-close) {
|
|
3532
|
+
right: auto;
|
|
3533
|
+
left: var(--wx-input-icon-indent);
|
|
3534
|
+
}
|
|
3535
|
+
.wx-icon.wxi-close.wx-hQ64J4 {
|
|
3536
|
+
pointer-events: all;
|
|
3537
|
+
cursor: pointer;
|
|
3538
|
+
}
|
|
3539
|
+
.wx-icon.wxi-close.wx-hQ64J4:hover {
|
|
3540
|
+
background: var(--wx-background-hover);
|
|
3541
|
+
border-radius: var(--wx-icon-border-radius);
|
|
3542
|
+
}
|
|
3543
|
+
.wx-input.wx-hQ64J4 {
|
|
3544
|
+
display: block;
|
|
3545
|
+
width: var(--wx-input-width);
|
|
3546
|
+
height: var(--wx-input-height);
|
|
3547
|
+
max-width: 100%;
|
|
3548
|
+
padding: var(--wx-input-padding);
|
|
3549
|
+
outline: none;
|
|
3550
|
+
font-family: var(--wx-input-font-family);
|
|
3551
|
+
font-size: var(--wx-input-font-size);
|
|
3552
|
+
line-height: var(--wx-input-line-height);
|
|
3553
|
+
font-weight: var(--wx-input-font-weight);
|
|
3554
|
+
text-align: var(--wx-input-text-align);
|
|
3555
|
+
color: var(--wx-input-font-color);
|
|
3556
|
+
border: var(--wx-input-border);
|
|
3557
|
+
border-radius: var(--wx-input-border-radius);
|
|
3558
|
+
background: var(--wx-input-background);
|
|
3559
|
+
overflow: hidden;
|
|
3560
|
+
text-overflow: ellipsis;
|
|
3561
|
+
}
|
|
3562
|
+
.wx-input.wx-hQ64J4:focus {
|
|
3563
|
+
border: var(--wx-input-border-focus);
|
|
3564
|
+
}
|
|
3565
|
+
.wx-input.wx-hQ64J4::placeholder {
|
|
3566
|
+
color: var(--wx-input-placeholder-color);
|
|
3567
|
+
}
|
|
3568
|
+
.wx-icon-left.wx-hQ64J4 .wx-input.wx-hQ64J4 {
|
|
3569
|
+
padding-left: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3570
|
+
}
|
|
3571
|
+
.wx-icon-right.wx-hQ64J4 .wx-input.wx-hQ64J4,
|
|
3572
|
+
.wx-text.wx-clear.wx-hQ64J4 .wx-input.wx-hQ64J4 {
|
|
3573
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3574
|
+
}
|
|
3575
|
+
.wx-input.wx-hQ64J4[disabled] {
|
|
3576
|
+
cursor: not-allowed !important;
|
|
3577
|
+
border: var(--wx-input-border-disabled);
|
|
3578
|
+
color: var(--wx-color-font-disabled);
|
|
3579
|
+
background: var(--wx-input-background-disabled);
|
|
3580
|
+
pointer-events: none;
|
|
3581
|
+
}
|
|
3582
|
+
.wx-input.wx-hQ64J4[disabled]::placeholder {
|
|
3583
|
+
color: var(--wx-color-font-disabled);
|
|
3584
|
+
}
|
|
3585
|
+
.wx-error.wx-hQ64J4 .wx-input.wx-hQ64J4 {
|
|
3586
|
+
border-color: var(--wx-color-danger);
|
|
3587
|
+
color: var(--wx-color-danger);
|
|
3588
|
+
}
|
|
3589
|
+
.wx-header.wx-8HQVQV {
|
|
3590
|
+
display: flex;
|
|
3591
|
+
flex-wrap: nowrap;
|
|
3592
|
+
align-items: center;
|
|
3593
|
+
margin-bottom: calc(var(--wx-calendar-gap) * 2);
|
|
3594
|
+
font-size: var(--wx-calendar-header-font-size);
|
|
3595
|
+
line-height: var(--wx-calendar-header-line-height);
|
|
3596
|
+
font-weight: var(--wx-calendar-header-font-weight);
|
|
3597
|
+
}
|
|
3598
|
+
.wx-spacer.wx-8HQVQV,
|
|
3599
|
+
.wx-pager.wx-8HQVQV {
|
|
3600
|
+
width: var(--wx-calendar-cell-size);
|
|
3601
|
+
height: var(--wx-calendar-cell-size);
|
|
3602
|
+
flex-shrink: 0;
|
|
3603
|
+
}
|
|
3604
|
+
.wx-pager.wx-8HQVQV {
|
|
3605
|
+
cursor: pointer;
|
|
3606
|
+
border-radius: 50%;
|
|
3607
|
+
line-height: 1;
|
|
3608
|
+
display: flex;
|
|
3609
|
+
flex-wrap: nowrap;
|
|
3610
|
+
align-items: center;
|
|
3611
|
+
justify-content: center;
|
|
3612
|
+
-webkit-user-select: none;
|
|
3613
|
+
user-select: none;
|
|
3614
|
+
color: var(--wx-calendar-icon-color);
|
|
3615
|
+
font-size: var(--wx-calendar-icon-size);
|
|
3616
|
+
}
|
|
3617
|
+
.wx-pager.wx-8HQVQV:before {
|
|
3618
|
+
display: block;
|
|
3619
|
+
}
|
|
3620
|
+
.wx-pager.wx-8HQVQV:hover {
|
|
3621
|
+
background-color: var(--wx-background-hover);
|
|
3622
|
+
}
|
|
3623
|
+
.wx-label.wx-8HQVQV {
|
|
3624
|
+
flex: 0 0 calc(100% - var(--wx-calendar-cell-size) * 2);
|
|
3625
|
+
max-width: calc(100% - var(--wx-calendar-cell-size) * 2);
|
|
3626
|
+
text-align: center;
|
|
3627
|
+
color: var(--wx-color-link);
|
|
3628
|
+
cursor: pointer;
|
|
3629
|
+
overflow: hidden;
|
|
3630
|
+
white-space: nowrap;
|
|
3631
|
+
text-overflow: ellipsis;
|
|
3632
|
+
}
|
|
3633
|
+
.wx-button.wx-3s8W4d {
|
|
3634
|
+
display: inline-block;
|
|
3635
|
+
vertical-align: top;
|
|
3636
|
+
text-decoration: none;
|
|
3637
|
+
text-align: center;
|
|
3638
|
+
letter-spacing: normal;
|
|
3639
|
+
font-family: var(--wx-calendar-controls-font-family);
|
|
3640
|
+
font-size: var(--wx-calendar-controls-font-size);
|
|
3641
|
+
line-height: var(--wx-calendar-controls-line-height);
|
|
3642
|
+
font-weight: var(--wx-calendar-controls-font-weight);
|
|
3643
|
+
text-transform: none;
|
|
3644
|
+
padding: 0;
|
|
3645
|
+
border: none;
|
|
3646
|
+
border-radius: 0;
|
|
3647
|
+
background: transparent;
|
|
3648
|
+
color: var(--wx-calendar-controls-font-color);
|
|
3649
|
+
cursor: pointer;
|
|
3650
|
+
box-shadow: none;
|
|
3651
|
+
transition: none;
|
|
3652
|
+
max-width: 100%;
|
|
3653
|
+
-webkit-user-select: none;
|
|
3654
|
+
user-select: none;
|
|
3655
|
+
}
|
|
3656
|
+
.wx-button.wx-3s8W4d,
|
|
3657
|
+
.wx-button.wx-3s8W4d:focus,
|
|
3658
|
+
.wx-button.wx-3s8W4d:active {
|
|
3659
|
+
outline: none;
|
|
3660
|
+
}
|
|
3661
|
+
.wx-button.wx-3s8W4d:active {
|
|
3662
|
+
opacity: .8;
|
|
3663
|
+
}
|
|
3664
|
+
.wx-398RBS.wx-weekdays {
|
|
3665
|
+
display: flex;
|
|
3666
|
+
flex-wrap: nowrap;
|
|
3667
|
+
margin-bottom: calc(var(--wx-calendar-gap) * 1.5);
|
|
3668
|
+
}
|
|
3669
|
+
.wx-398RBS.wx-weekday {
|
|
3670
|
+
flex: 0 0 calc(100% / 7);
|
|
3671
|
+
max-width: calc(100% / 7);
|
|
3672
|
+
font-size: var(--wx-font-size-sm);
|
|
3673
|
+
line-height: var(--wx-line-height-sm);
|
|
3674
|
+
color: var(--wx-color-font-alt);
|
|
3675
|
+
text-align: center;
|
|
3676
|
+
}
|
|
3677
|
+
.wx-398RBS.wx-days {
|
|
3678
|
+
display: flex;
|
|
3679
|
+
flex-wrap: wrap;
|
|
3680
|
+
}
|
|
3681
|
+
.wx-398RBS.wx-day {
|
|
3682
|
+
border-radius: var(--wx-calendar-border-radius);
|
|
3683
|
+
flex: 0 0 calc(100% / 7);
|
|
3684
|
+
max-width: calc(100% / 7);
|
|
3685
|
+
height: calc(var(--wx-calendar-cell-size) - var(--wx-calendar-line-gap) * 2);
|
|
3686
|
+
margin: calc(var(--wx-calendar-line-gap) / 2) 0;
|
|
3687
|
+
display: flex;
|
|
3688
|
+
flex-wrap: nowrap;
|
|
3689
|
+
align-items: center;
|
|
3690
|
+
justify-content: center;
|
|
3691
|
+
text-align: center;
|
|
3692
|
+
}
|
|
3693
|
+
.wx-398RBS.wx-day:not(.wx-out):not(.wx-selected) {
|
|
3694
|
+
cursor: pointer;
|
|
3695
|
+
}
|
|
3696
|
+
.wx-398RBS.wx-day:not(.wx-out):not(.wx-selected):hover {
|
|
3697
|
+
background: var(--wx-background-hover);
|
|
3698
|
+
}
|
|
3699
|
+
.wx-398RBS.wx-day.wx-out {
|
|
3700
|
+
color: var(--wx-color-font-disabled);
|
|
3701
|
+
}
|
|
3702
|
+
.wx-398RBS.wx-day.wx-selected:not(.wx-out) {
|
|
3703
|
+
background: var(--wx-color-primary);
|
|
3704
|
+
color: var(--wx-color-primary-font);
|
|
3705
|
+
}
|
|
3706
|
+
.wx-398RBS.wx-day.wx-selected.wx-left:not(.wx-out) {
|
|
3707
|
+
border-radius: calc(var(--wx-calendar-border-radius)) 0 0 calc(var(--wx-calendar-border-radius));
|
|
3708
|
+
}
|
|
3709
|
+
.wx-398RBS.wx-day.wx-selected.wx-right:not(.wx-out) {
|
|
3710
|
+
border-radius: 0 calc(var(--wx-calendar-border-radius)) calc(var(--wx-calendar-border-radius)) 0;
|
|
3711
|
+
}
|
|
3712
|
+
.wx-398RBS.wx-day.wx-inrange:not(.wx-out) {
|
|
3713
|
+
border-radius: 0;
|
|
3714
|
+
background: var(--wx-color-primary-selected);
|
|
3715
|
+
}
|
|
3716
|
+
.wx-398RBS.wx-day.wx-weekend:not(.wx-selected):not(.wx-out) {
|
|
3717
|
+
color: var(--wx-color-primary);
|
|
3718
|
+
}
|
|
3719
|
+
.wx-398RBS.wx-day.wx-inactive {
|
|
3720
|
+
pointer-events: none;
|
|
3721
|
+
}
|
|
3722
|
+
.wx-months.wx-34U8T8 {
|
|
3723
|
+
display: flex;
|
|
3724
|
+
flex-wrap: wrap;
|
|
3725
|
+
margin: var(--wx-calendar-gap);
|
|
3726
|
+
}
|
|
3727
|
+
.wx-month.wx-34U8T8 {
|
|
3728
|
+
flex: 0 0 calc(100% / 4 - var(--wx-calendar-gap) * 2);
|
|
3729
|
+
max-width: calc(100% / 4 - var(--wx-calendar-gap) * 2);
|
|
3730
|
+
margin: calc(var(--wx-calendar-gap) * 2) var(--wx-calendar-gap);
|
|
3731
|
+
text-align: center;
|
|
3732
|
+
cursor: pointer;
|
|
3733
|
+
display: flex;
|
|
3734
|
+
flex-wrap: nowrap;
|
|
3735
|
+
align-items: center;
|
|
3736
|
+
justify-content: center;
|
|
3737
|
+
height: var(--wx-calendar-cell-size);
|
|
3738
|
+
border-radius: var(--wx-calendar-border-radius);
|
|
3739
|
+
}
|
|
3740
|
+
.wx-month.wx-current.wx-34U8T8 {
|
|
3741
|
+
background: var(--wx-color-primary);
|
|
3742
|
+
color: var(--wx-color-primary-font);
|
|
3743
|
+
}
|
|
3744
|
+
.wx-month:not(.wx-current):hover {
|
|
3745
|
+
background-color: var(--wx-background-hover);
|
|
3746
|
+
}
|
|
3747
|
+
.wx-buttons.wx-34U8T8 {
|
|
3748
|
+
display: flex;
|
|
3749
|
+
flex-wrap: nowrap;
|
|
3750
|
+
align-items: center;
|
|
3751
|
+
justify-content: center;
|
|
3752
|
+
margin-top: var(--wx-calendar-gap);
|
|
3753
|
+
}
|
|
3754
|
+
.wx-years.wx-1XEF33 {
|
|
3755
|
+
display: flex;
|
|
3756
|
+
flex-wrap: wrap;
|
|
3757
|
+
margin: var(--wx-calendar-gap);
|
|
3758
|
+
}
|
|
3759
|
+
.wx-year.wx-1XEF33 {
|
|
3760
|
+
flex: 0 0 calc(100% / 4 - var(--wx-calendar-gap) * 2);
|
|
3761
|
+
max-width: calc(100% / 4 - var(--wx-calendar-gap) * 2);
|
|
3762
|
+
margin: calc(var(--wx-calendar-gap) * 2) var(--wx-calendar-gap);
|
|
3763
|
+
text-align: center;
|
|
3764
|
+
cursor: pointer;
|
|
3765
|
+
display: flex;
|
|
3766
|
+
flex-wrap: nowrap;
|
|
3767
|
+
align-items: center;
|
|
3768
|
+
justify-content: center;
|
|
3769
|
+
height: var(--wx-calendar-cell-size);
|
|
3770
|
+
border-radius: var(--wx-calendar-border-radius);
|
|
3771
|
+
}
|
|
3772
|
+
.wx-year.wx-current.wx-1XEF33 {
|
|
3773
|
+
background: var(--wx-color-primary);
|
|
3774
|
+
color: var(--wx-color-primary-font);
|
|
3775
|
+
}
|
|
3776
|
+
.wx-year:not(.wx-current):hover.wx-1XEF33 {
|
|
3777
|
+
background-color: var(--wx-background-hover);
|
|
3778
|
+
}
|
|
3779
|
+
.wx-prev-decade.wx-1XEF33,
|
|
3780
|
+
.wx-next-decade.wx-1XEF33 {
|
|
3781
|
+
color: var(--wx-color-font-disabled);
|
|
3782
|
+
}
|
|
3783
|
+
.wx-buttons.wx-1XEF33 {
|
|
3784
|
+
display: flex;
|
|
3785
|
+
flex-wrap: nowrap;
|
|
3786
|
+
align-items: center;
|
|
3787
|
+
justify-content: center;
|
|
3788
|
+
margin-top: var(--wx-calendar-gap);
|
|
3789
|
+
}
|
|
3790
|
+
.wx-calendar.wx-2Gr4AS {
|
|
3791
|
+
height: auto;
|
|
3792
|
+
width: 100%;
|
|
3793
|
+
padding: var(--wx-calendar-padding);
|
|
3794
|
+
cursor: default;
|
|
3795
|
+
font-family: var(--wx-calendar-font-family);
|
|
3796
|
+
font-size: var(--wx-calendar-font-size);
|
|
3797
|
+
line-height: var(--wx-calendar-line-height);
|
|
3798
|
+
font-weight: var(--wx-calendar-font-weight);
|
|
3799
|
+
color: var(--wx-calendar-font-color);
|
|
3800
|
+
}
|
|
3801
|
+
.wx-calendar.wx-2Gr4AS.wx-part {
|
|
3802
|
+
padding-bottom: 0;
|
|
3803
|
+
}
|
|
3804
|
+
.wx-wrap.wx-2Gr4AS {
|
|
3805
|
+
width: calc(var(--wx-calendar-cell-size) * 7);
|
|
3806
|
+
margin: 0 auto;
|
|
3807
|
+
}
|
|
3808
|
+
.wx-buttons.wx-2Gr4AS {
|
|
3809
|
+
display: flex;
|
|
3810
|
+
flex-wrap: nowrap;
|
|
3811
|
+
align-items: center;
|
|
3812
|
+
justify-content: flex-end;
|
|
3813
|
+
margin-top: calc(var(--wx-calendar-gap) * 2);
|
|
3814
|
+
}
|
|
3815
|
+
.wx-button-item.wx-2Gr4AS + .wx-button-item.wx-2Gr4AS {
|
|
3816
|
+
margin-left: calc(var(--wx-calendar-gap) * 3);
|
|
3817
|
+
}
|
|
3818
|
+
.wx-datepicker.wx-1lKOFG {
|
|
3819
|
+
position: relative;
|
|
3820
|
+
width: var(--wx-input-width);
|
|
3821
|
+
}
|
|
3822
|
+
.wx-rangecalendar.wx-p2jCaW {
|
|
3823
|
+
display: flex;
|
|
3824
|
+
padding-bottom: var(--wx-calendar-padding);
|
|
3825
|
+
}
|
|
3826
|
+
.wx-half.wx-p2jCaW {
|
|
3827
|
+
flex: 1;
|
|
3828
|
+
}
|
|
3829
|
+
.wx-daterangepicker.wx-1b0WDQ {
|
|
3830
|
+
position: relative;
|
|
3831
|
+
width: var(--wx-input-width);
|
|
3832
|
+
}
|
|
3833
|
+
.wx-13aa5W.wx-fullscreen::backdrop {
|
|
3834
|
+
background-color: var(--wx-background);
|
|
3835
|
+
}
|
|
3836
|
+
.wx-13aa5W.wx-fullscreen {
|
|
3837
|
+
position: relative;
|
|
3838
|
+
height: 100%;
|
|
3839
|
+
width: 100%;
|
|
3840
|
+
outline: none;
|
|
3841
|
+
}
|
|
3842
|
+
.wx-13aa5W.wx-fullscreen-icon {
|
|
3843
|
+
font-size: 20px;
|
|
3844
|
+
height: 20px;
|
|
3845
|
+
margin: auto;
|
|
3846
|
+
}
|
|
3847
|
+
.wx-13aa5W.wx-fullscreen .wx-fullscreen-button {
|
|
3848
|
+
width: 40px;
|
|
3849
|
+
height: 40px;
|
|
3850
|
+
border: none;
|
|
3851
|
+
border-radius: 50%;
|
|
3852
|
+
position: absolute;
|
|
3853
|
+
right: 25px;
|
|
3854
|
+
bottom: 35px;
|
|
3855
|
+
display: flex;
|
|
3856
|
+
padding: initial;
|
|
3857
|
+
}
|
|
3858
|
+
.wx-icon.wx-mdnST1 {
|
|
3859
|
+
color: var(--wx-color-font-alt);
|
|
3860
|
+
cursor: pointer;
|
|
3861
|
+
font-size: var(--wx-button-icon-size);
|
|
3862
|
+
padding: var(--wx-button-icon-indent);
|
|
3863
|
+
line-height: var(--wx-button-line-height);
|
|
3864
|
+
display: inline-block;
|
|
3865
|
+
}
|
|
3866
|
+
.wx-icon.wx-mdnST1:hover {
|
|
3867
|
+
background-color: var(--wx-background-hover);
|
|
3868
|
+
}
|
|
3869
|
+
.wx-multicombo.wx-12Wj21 {
|
|
3870
|
+
position: relative;
|
|
3871
|
+
width: var(--wx-input-width);
|
|
3872
|
+
}
|
|
3873
|
+
.wx-multicombo.wx-12Wj21.wx-focus .wx-wrapper.wx-12Wj21 {
|
|
3874
|
+
border: var(--wx-input-border-focus);
|
|
3875
|
+
}
|
|
3876
|
+
.wx-multicombo.wx-12Wj21.wx-disabled .wx-wrapper.wx-12Wj21 {
|
|
3877
|
+
border: var(--wx-input-border-disabled);
|
|
3878
|
+
background: var(--wx-input-background-disabled);
|
|
3879
|
+
}
|
|
3880
|
+
.wx-multicombo.wx-12Wj21.wx-disabled .wx-tag.wx-12Wj21 {
|
|
3881
|
+
background: var(--wx-color-disabled);
|
|
3882
|
+
color: var(--wx-color-font-disabled);
|
|
3883
|
+
}
|
|
3884
|
+
.wx-multicombo.wx-12Wj21:not(.wx-disabled) .wx-tag.wx-12Wj21 {
|
|
3885
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3886
|
+
}
|
|
3887
|
+
.wx-multicombo.wx-12Wj21.wx-disabled .wx-input.wx-12Wj21 {
|
|
3888
|
+
cursor: not-allowed;
|
|
3889
|
+
color: var(--wx-color-font-disabled);
|
|
3890
|
+
}
|
|
3891
|
+
.wx-multicombo.wx-12Wj21.wx-disabled .wx-icon.wxi-angle-down.wx-12Wj21 {
|
|
3892
|
+
color: var(--wx-color-font-disabled);
|
|
3893
|
+
}
|
|
3894
|
+
.wx-multicombo.wx-12Wj21.wx-error .wx-wrapper.wx-12Wj21 {
|
|
3895
|
+
border-color: var(--wx-color-danger);
|
|
3896
|
+
}
|
|
3897
|
+
.wx-multicombo.wx-12Wj21.wx-error .wx-input.wx-12Wj21,
|
|
3898
|
+
.wx-multicombo.wx-12Wj21.wx-error .wx-icon.wxi-angle-down.wx-12Wj21 {
|
|
3899
|
+
color: var(--wx-color-danger);
|
|
3900
|
+
}
|
|
3901
|
+
.wx-multicombo.wx-12Wj21.wx-not-empty .wx-tags.wx-12Wj21 {
|
|
3902
|
+
gap: var(--wx-multicombo-tag-gap);
|
|
3903
|
+
padding: var(--wx-multicombo-tag-gap);
|
|
3904
|
+
}
|
|
3905
|
+
.wx-multicombo.wx-12Wj21.wx-not-empty .wx-input.wx-12Wj21 {
|
|
3906
|
+
border-top: var(--wx-input-border);
|
|
3907
|
+
}
|
|
3908
|
+
.wx-multicombo.wx-12Wj21.wx-not-empty.wx-focus .wx-input.wx-12Wj21 {
|
|
3909
|
+
border-top: var(--wx-input-border-focus);
|
|
3910
|
+
}
|
|
3911
|
+
.wx-multicombo.wx-12Wj21.wx-not-empty.wx-disabled .wx-input.wx-12Wj21 {
|
|
3912
|
+
border-top: var(--wx-input-border-disabled);
|
|
3913
|
+
}
|
|
3914
|
+
.wx-multicombo.wx-12Wj21.wx-not-empty.wx-error .wx-input.wx-12Wj21 {
|
|
3915
|
+
border-top-color: var(--wx-color-danger);
|
|
3916
|
+
}
|
|
3917
|
+
.wx-wrapper.wx-12Wj21 {
|
|
3918
|
+
border: var(--wx-input-border);
|
|
3919
|
+
border-radius: var(--wx-input-border-radius);
|
|
3920
|
+
background: var(--wx-input-background);
|
|
3921
|
+
}
|
|
3922
|
+
.wx-tags.wx-12Wj21 {
|
|
3923
|
+
display: flex;
|
|
3924
|
+
flex-wrap: wrap;
|
|
3925
|
+
align-items: flex-start;
|
|
3926
|
+
overflow: hidden;
|
|
3927
|
+
}
|
|
3928
|
+
.wx-tag.wx-12Wj21 {
|
|
3929
|
+
position: relative;
|
|
3930
|
+
font-family: var(--wx-input-font-family);
|
|
3931
|
+
font-size: var(--wx-input-font-size);
|
|
3932
|
+
line-height: var(--wx-input-line-height);
|
|
3933
|
+
font-weight: var(--wx-input-font-weight);
|
|
3934
|
+
text-align: var(--wx-input-text-align);
|
|
3935
|
+
color: var(--wx-input-font-color);
|
|
3936
|
+
border: var(--wx-multicombo-tag-border);
|
|
3937
|
+
border-radius: var(--wx-multicombo-tag-border-radius);
|
|
3938
|
+
background: var(--wx-multicombo-tag-background);
|
|
3939
|
+
padding: var(--wx-multicombo-tag-pading);
|
|
3940
|
+
}
|
|
3941
|
+
.wx-icon.wx-12Wj21 {
|
|
3942
|
+
position: absolute;
|
|
3943
|
+
right: var(--wx-input-icon-indent);
|
|
3944
|
+
top: 50%;
|
|
3945
|
+
transform: translateY(-50%);
|
|
3946
|
+
font-size: var(--wx-input-icon-size);
|
|
3947
|
+
line-height: 1;
|
|
3948
|
+
display: flex;
|
|
3949
|
+
justify-content: center;
|
|
3950
|
+
align-items: center;
|
|
3951
|
+
width: var(--wx-input-icon-size);
|
|
3952
|
+
height: var(--wx-input-icon-size);
|
|
3953
|
+
pointer-events: none;
|
|
3954
|
+
-webkit-user-select: none;
|
|
3955
|
+
user-select: none;
|
|
3956
|
+
color: var(--wx-input-icon-color);
|
|
3957
|
+
}
|
|
3958
|
+
.wx-icon.wx-12Wj21:before {
|
|
3959
|
+
display: block;
|
|
3960
|
+
}
|
|
3961
|
+
.wxi-close.wx-12Wj21 {
|
|
3962
|
+
pointer-events: all;
|
|
3963
|
+
cursor: pointer;
|
|
3964
|
+
}
|
|
3965
|
+
.wxi-close.wx-12Wj21:hover {
|
|
3966
|
+
background: var(--wx-background-hover);
|
|
3967
|
+
border-radius: var(--wx-icon-border-radius);
|
|
3968
|
+
}
|
|
3969
|
+
.wx-select.wx-12Wj21 {
|
|
3970
|
+
position: relative;
|
|
3971
|
+
}
|
|
3972
|
+
.wx-input.wx-12Wj21 {
|
|
3973
|
+
display: block;
|
|
3974
|
+
width: 100%;
|
|
3975
|
+
height: var(--wx-input-height);
|
|
3976
|
+
outline: none;
|
|
3977
|
+
background: transparent;
|
|
3978
|
+
border: none;
|
|
3979
|
+
border-radius: 0;
|
|
3980
|
+
font-family: var(--wx-input-font-family);
|
|
3981
|
+
font-size: var(--wx-input-font-size);
|
|
3982
|
+
line-height: var(--wx-input-line-height);
|
|
3983
|
+
font-weight: var(--wx-input-font-weight);
|
|
3984
|
+
text-align: var(--wx-input-text-align);
|
|
3985
|
+
color: var(--wx-input-font-color);
|
|
3986
|
+
padding: var(--wx-input-padding);
|
|
3987
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
3988
|
+
overflow: hidden;
|
|
3989
|
+
text-overflow: ellipsis;
|
|
3990
|
+
cursor: pointer;
|
|
3991
|
+
}
|
|
3992
|
+
.wx-popup.wx-37M6Fj {
|
|
3993
|
+
z-index: var(--wx-popup-z-index);
|
|
3994
|
+
background: var(--wx-popup-background);
|
|
3995
|
+
box-shadow: var(--wx-popup-shadow);
|
|
3996
|
+
border: var(--wx-popup-border);
|
|
3997
|
+
border-radius: var(--wx-popup-border-radius);
|
|
3998
|
+
overflow: hidden;
|
|
3999
|
+
}
|
|
4000
|
+
.wx-pager.wx-35Np0p {
|
|
4001
|
+
display: flex;
|
|
4002
|
+
gap: var(--wx-padding);
|
|
4003
|
+
align-items: center;
|
|
4004
|
+
padding: var(--wx-padding);
|
|
4005
|
+
}
|
|
4006
|
+
.wx-input.wx-35Np0p {
|
|
4007
|
+
display: block;
|
|
4008
|
+
width: 50px;
|
|
4009
|
+
height: var(--wx-input-height);
|
|
4010
|
+
padding: var(--wx-input-padding);
|
|
4011
|
+
outline: none;
|
|
4012
|
+
font-family: var(--wx-input-font-family);
|
|
4013
|
+
font-size: var(--wx-input-font-size);
|
|
4014
|
+
line-height: var(--wx-input-line-height);
|
|
4015
|
+
font-weight: var(--wx-input-font-weight);
|
|
4016
|
+
text-align: var(--wx-input-text-align);
|
|
4017
|
+
color: var(--wx-input-font-color);
|
|
4018
|
+
border: var(--wx-input-border);
|
|
4019
|
+
border-radius: var(--wx-input-border-radius);
|
|
4020
|
+
background: var(--wx-input-background);
|
|
4021
|
+
}
|
|
4022
|
+
.wx-input.wx-35Np0p:focus {
|
|
4023
|
+
border: var(--wx-input-border-focus);
|
|
4024
|
+
}
|
|
4025
|
+
.wx-input.wx-35Np0p::placeholder {
|
|
4026
|
+
color: var(--wx-input-placeholder-color);
|
|
4027
|
+
}
|
|
4028
|
+
.wx-icon.wx-35Np0p {
|
|
4029
|
+
cursor: pointer;
|
|
4030
|
+
padding: var(--wx-input-padding);
|
|
4031
|
+
border-radius: var(--wx-input-border-radius);
|
|
4032
|
+
font-size: var(--wx-icon-size);
|
|
4033
|
+
line-height: 1;
|
|
4034
|
+
color: var(--wx-color-link);
|
|
4035
|
+
}
|
|
4036
|
+
.wx-icon.wx-35Np0p:before {
|
|
4037
|
+
display: block;
|
|
4038
|
+
}
|
|
4039
|
+
.wx-icon.wx-35Np0p:hover {
|
|
4040
|
+
background-color: var(--wx-background-hover);
|
|
4041
|
+
}
|
|
4042
|
+
.wx-icon.wx-35Np0p.wx-disabled {
|
|
4043
|
+
cursor: default;
|
|
4044
|
+
pointer-events: none;
|
|
4045
|
+
color: var(--wx-color-font-disabled);
|
|
4046
|
+
}
|
|
4047
|
+
.wx-left.wx-35Np0p,
|
|
4048
|
+
.wx-center.wx-35Np0p,
|
|
4049
|
+
.wx-right.wx-35Np0p {
|
|
4050
|
+
display: flex;
|
|
4051
|
+
align-items: center;
|
|
4052
|
+
gap: var(--wx-padding);
|
|
4053
|
+
}
|
|
4054
|
+
.wx-radio.wx-3lDF1s {
|
|
4055
|
+
position: relative;
|
|
4056
|
+
display: inline-block;
|
|
4057
|
+
vertical-align: top;
|
|
4058
|
+
max-width: var(--wx-input-width);
|
|
4059
|
+
}
|
|
4060
|
+
.wx-input.wx-3lDF1s {
|
|
4061
|
+
appearance: none;
|
|
4062
|
+
width: 0;
|
|
4063
|
+
height: 0;
|
|
4064
|
+
opacity: 0;
|
|
4065
|
+
position: absolute;
|
|
4066
|
+
left: 0;
|
|
4067
|
+
top: 0;
|
|
4068
|
+
margin: 0;
|
|
4069
|
+
padding: 0;
|
|
4070
|
+
}
|
|
4071
|
+
.wx-label.wx-3lDF1s {
|
|
4072
|
+
display: flex;
|
|
4073
|
+
flex-wrap: nowrap;
|
|
4074
|
+
align-items: flex-start;
|
|
4075
|
+
font-family: var(--wx-checkbox-font-family);
|
|
4076
|
+
font-size: var(--wx-checkbox-font-size);
|
|
4077
|
+
line-height: var(--wx-checkbox-line-height);
|
|
4078
|
+
font-weight: var(--wx-checkbox-font-weight);
|
|
4079
|
+
color: var(--wx-checkbox-font-color);
|
|
4080
|
+
cursor: pointer;
|
|
4081
|
+
}
|
|
4082
|
+
.wx-circle.wx-3lDF1s {
|
|
4083
|
+
display: block;
|
|
4084
|
+
}
|
|
4085
|
+
.wx-radio-text.wx-3lDF1s {
|
|
4086
|
+
margin-left: 8px;
|
|
4087
|
+
padding-top: calc((var(--wx-checkbox-height) - var(--wx-checkbox-line-height)) / 2);
|
|
4088
|
+
padding-bottom: calc((var(--wx-checkbox-height) - var(--wx-checkbox-line-height)) / 2);
|
|
4089
|
+
}
|
|
4090
|
+
.wx-circle.wx-3lDF1s {
|
|
4091
|
+
position: relative;
|
|
4092
|
+
flex-shrink: 0;
|
|
4093
|
+
padding-top: calc((var(--wx-checkbox-height) - var(--wx-checkbox-size)) / 2);
|
|
4094
|
+
padding-bottom: calc((var(--wx-checkbox-height) - var(--wx-checkbox-size)) / 2);
|
|
4095
|
+
}
|
|
4096
|
+
.wx-circle.wx-3lDF1s:before {
|
|
4097
|
+
content: "";
|
|
4098
|
+
display: block;
|
|
4099
|
+
width: var(--wx-checkbox-size);
|
|
4100
|
+
height: var(--wx-checkbox-size);
|
|
4101
|
+
border: var(--wx-checkbox-border-width) solid var(--wx-checkbox-border-color);
|
|
4102
|
+
border-radius: 50%;
|
|
4103
|
+
background: var(--wx-input-background);
|
|
4104
|
+
}
|
|
4105
|
+
.wx-circle.wx-3lDF1s:after {
|
|
4106
|
+
content: "";
|
|
4107
|
+
position: absolute;
|
|
4108
|
+
display: none;
|
|
4109
|
+
left: 50%;
|
|
4110
|
+
top: 50%;
|
|
4111
|
+
transform: translate(-50%, -50%);
|
|
4112
|
+
width: calc(var(--wx-checkbox-size) - var(--wx-checkbox-border-width) * 2);
|
|
4113
|
+
height: calc(var(--wx-checkbox-size) - var(--wx-checkbox-border-width) * 2);
|
|
4114
|
+
border-style: solid;
|
|
4115
|
+
border-color: var(--wx-input-background);
|
|
4116
|
+
border-width: calc(var(--wx-checkbox-size) * .2);
|
|
4117
|
+
border-radius: 50%;
|
|
4118
|
+
}
|
|
4119
|
+
.wx-input.wx-3lDF1s:checked ~ .wx-label.wx-3lDF1s .wx-circle.wx-3lDF1s:before {
|
|
4120
|
+
background: var(--wx-color-primary);
|
|
4121
|
+
border-color: transparent;
|
|
4122
|
+
}
|
|
4123
|
+
.wx-input.wx-3lDF1s:checked ~ .wx-label.wx-3lDF1s .wx-circle.wx-3lDF1s:after {
|
|
4124
|
+
display: block;
|
|
4125
|
+
}
|
|
4126
|
+
.wx-input.wx-3lDF1s[disabled] ~ .wx-label.wx-3lDF1s {
|
|
4127
|
+
color: var(--wx-checkbox-border-color-disabled);
|
|
4128
|
+
cursor: not-allowed;
|
|
4129
|
+
}
|
|
4130
|
+
.wx-input.wx-3lDF1s[disabled]:not(:checked) ~ .wx-label.wx-3lDF1s .wx-circle.wx-3lDF1s:before {
|
|
4131
|
+
border-color: var(--wx-checkbox-border-color-disabled);
|
|
4132
|
+
}
|
|
4133
|
+
.wx-input.wx-3lDF1s[disabled]:checked ~ .wx-label.wx-3lDF1s .wx-circle.wx-3lDF1s:before {
|
|
4134
|
+
background: var(--wx-checkbox-border-color-disabled);
|
|
4135
|
+
}
|
|
4136
|
+
.wx-radiogroup.wx-38w70j {
|
|
4137
|
+
display: flex;
|
|
4138
|
+
flex-wrap: wrap;
|
|
4139
|
+
align-items: flex-start;
|
|
4140
|
+
justify-content: flex-start;
|
|
4141
|
+
margin-top: calc(var(--wx-field-gutter) * -1);
|
|
4142
|
+
}
|
|
4143
|
+
.wx-item.wx-38w70j {
|
|
4144
|
+
flex: 0 0 100%;
|
|
4145
|
+
max-width: 100%;
|
|
4146
|
+
margin-top: var(--wx-field-gutter);
|
|
4147
|
+
}
|
|
4148
|
+
.wx-radiogroup.wx-inline.wx-38w70j .wx-item.wx-38w70j {
|
|
4149
|
+
flex: none;
|
|
4150
|
+
padding-right: var(--wx-field-gutter);
|
|
4151
|
+
}
|
|
4152
|
+
.wx-radiogroup.wx-grid.wx-38w70j .wx-item.wx-38w70j {
|
|
4153
|
+
flex: 0 0 50%;
|
|
4154
|
+
max-width: 50%;
|
|
4155
|
+
padding-right: var(--wx-field-gutter);
|
|
4156
|
+
}
|
|
4157
|
+
.wx-richselect.wx-2YgblL {
|
|
4158
|
+
position: relative;
|
|
4159
|
+
outline: none;
|
|
4160
|
+
width: var(--wx-input-width);
|
|
4161
|
+
min-height: var(--wx-input-height);
|
|
4162
|
+
border: var(--wx-input-border);
|
|
4163
|
+
border-radius: var(--wx-input-border-radius);
|
|
4164
|
+
background: var(--wx-input-background);
|
|
4165
|
+
cursor: pointer;
|
|
4166
|
+
}
|
|
4167
|
+
.wx-richselect.wx-2YgblL:focus {
|
|
4168
|
+
border: var(--wx-input-border-focus);
|
|
4169
|
+
}
|
|
4170
|
+
.wx-richselect.wx-disabled.wx-2YgblL {
|
|
4171
|
+
cursor: not-allowed;
|
|
4172
|
+
border: var(--wx-input-border-disabled);
|
|
4173
|
+
background: var(--wx-input-background-disabled);
|
|
4174
|
+
}
|
|
4175
|
+
.wx-richselect.wx-disabled.wx-2YgblL .wx-label.wx-2YgblL,
|
|
4176
|
+
.wx-richselect.wx-disabled.wx-2YgblL .wx-icon.wx-2YgblL {
|
|
4177
|
+
color: var(--wx-color-font-disabled);
|
|
4178
|
+
}
|
|
4179
|
+
.wx-richselect.wx-error.wx-2YgblL {
|
|
4180
|
+
border-color: var(--wx-color-danger);
|
|
4181
|
+
}
|
|
4182
|
+
.wx-richselect.wx-error.wx-2YgblL .wx-label.wx-2YgblL,
|
|
4183
|
+
.wx-richselect.wx-error.wx-2YgblL .wx-icon.wx-2YgblL {
|
|
4184
|
+
color: var(--wx-color-danger);
|
|
4185
|
+
}
|
|
4186
|
+
.wx-label.wx-2YgblL {
|
|
4187
|
+
display: block;
|
|
4188
|
+
width: 100%;
|
|
4189
|
+
font-family: var(--wx-input-font-family);
|
|
4190
|
+
font-size: var(--wx-input-font-size);
|
|
4191
|
+
line-height: var(--wx-input-line-height);
|
|
4192
|
+
font-weight: var(--wx-input-font-weight);
|
|
4193
|
+
text-align: var(--wx-input-text-align);
|
|
4194
|
+
color: var(--wx-input-font-color);
|
|
4195
|
+
padding: var(--wx-input-padding);
|
|
4196
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
4197
|
+
overflow: hidden;
|
|
4198
|
+
}
|
|
4199
|
+
.wx-placeholder.wx-2YgblL {
|
|
4200
|
+
color: var(--wx-input-placeholder-color);
|
|
4201
|
+
}
|
|
4202
|
+
.wx-icon.wx-2YgblL {
|
|
4203
|
+
position: absolute;
|
|
4204
|
+
right: var(--wx-input-icon-indent);
|
|
4205
|
+
top: 50%;
|
|
4206
|
+
transform: translateY(-50%);
|
|
4207
|
+
font-size: var(--wx-input-icon-size);
|
|
4208
|
+
line-height: 1;
|
|
4209
|
+
width: var(--wx-input-icon-size);
|
|
4210
|
+
height: var(--wx-input-icon-size);
|
|
4211
|
+
display: flex;
|
|
4212
|
+
justify-content: center;
|
|
4213
|
+
align-items: center;
|
|
4214
|
+
pointer-events: none;
|
|
4215
|
+
-webkit-user-select: none;
|
|
4216
|
+
user-select: none;
|
|
4217
|
+
color: var(--wx-input-icon-color);
|
|
4218
|
+
}
|
|
4219
|
+
.wx-icon.wx-2YgblL:before {
|
|
4220
|
+
display: block;
|
|
4221
|
+
}
|
|
4222
|
+
.wx-icon.wxi-close.wx-2YgblL {
|
|
4223
|
+
pointer-events: all;
|
|
4224
|
+
}
|
|
4225
|
+
.wx-icon.wxi-close.wx-2YgblL:hover {
|
|
4226
|
+
background: var(--wx-background-hover);
|
|
4227
|
+
border-radius: var(--wx-icon-border-radius);
|
|
4228
|
+
}
|
|
4229
|
+
.wx-nowrap.wx-2YgblL .wx-label.wx-2YgblL {
|
|
4230
|
+
white-space: nowrap;
|
|
4231
|
+
overflow: hidden;
|
|
4232
|
+
text-overflow: ellipsis;
|
|
4233
|
+
}
|
|
4234
|
+
.wx-segmented.wx-0hMO7P {
|
|
4235
|
+
display: inline-flex;
|
|
4236
|
+
flex-wrap: nowrap;
|
|
4237
|
+
background: var(--wx-segmented-background);
|
|
4238
|
+
border: var(--wx-segmented-border);
|
|
4239
|
+
border-radius: var(--wx-segmented-border-radius);
|
|
4240
|
+
padding: var(--wx-segmented-padding);
|
|
4241
|
+
max-width: 100%;
|
|
4242
|
+
}
|
|
4243
|
+
.wx-segment.wx-0hMO7P {
|
|
4244
|
+
display: flex;
|
|
4245
|
+
text-decoration: none;
|
|
4246
|
+
flex-wrap: nowrap;
|
|
4247
|
+
align-items: center;
|
|
4248
|
+
text-align: center;
|
|
4249
|
+
letter-spacing: normal;
|
|
4250
|
+
text-transform: var(--wx-button-text-transform);
|
|
4251
|
+
font-family: var(--wx-button-font-family);
|
|
4252
|
+
font-size: var(--wx-button-font-size);
|
|
4253
|
+
line-height: var(--wx-button-line-height);
|
|
4254
|
+
font-weight: var(--wx-button-font-weight);
|
|
4255
|
+
padding: var(--wx-button-padding);
|
|
4256
|
+
border: var(--wx-button-border);
|
|
4257
|
+
border-radius: var(--wx-segmented-border-radius);
|
|
4258
|
+
background: transparent;
|
|
4259
|
+
color: var(--wx-button-font-color);
|
|
4260
|
+
cursor: pointer;
|
|
4261
|
+
box-shadow: none;
|
|
4262
|
+
transition: none;
|
|
4263
|
+
max-width: 100%;
|
|
4264
|
+
-webkit-user-select: none;
|
|
4265
|
+
user-select: none;
|
|
4266
|
+
}
|
|
4267
|
+
.wx-segment.wx-0hMO7P,
|
|
4268
|
+
.wx-segment.wx-0hMO7P:focus,
|
|
4269
|
+
.wx-segment.wx-0hMO7P:active {
|
|
4270
|
+
outline: none;
|
|
4271
|
+
}
|
|
4272
|
+
.wx-segment.wx-0hMO7P + .wx-segment.wx-0hMO7P {
|
|
4273
|
+
margin-left: var(--wx-segmented-padding);
|
|
4274
|
+
}
|
|
4275
|
+
.wx-segment.wx-0hMO7P:hover {
|
|
4276
|
+
background: var(--wx-segmented-background-hover);
|
|
4277
|
+
}
|
|
4278
|
+
.wx-segment.wx-selected.wx-0hMO7P,
|
|
4279
|
+
.wx-segment.wx-selected.wx-0hMO7P:hover,
|
|
4280
|
+
.wx-segment.wx-selected.wx-0hMO7P:focus {
|
|
4281
|
+
background: var(--wx-color-primary);
|
|
4282
|
+
color: var(--wx-color-primary-font);
|
|
4283
|
+
cursor: default;
|
|
4284
|
+
}
|
|
4285
|
+
.wx-icon.wx-0hMO7P {
|
|
4286
|
+
position: relative;
|
|
4287
|
+
font-size: var(--wx-button-icon-size);
|
|
4288
|
+
line-height: 1;
|
|
4289
|
+
height: var(--wx-button-line-height);
|
|
4290
|
+
opacity: .7;
|
|
4291
|
+
}
|
|
4292
|
+
.wx-icon.wx-0hMO7P:before {
|
|
4293
|
+
display: block;
|
|
4294
|
+
position: relative;
|
|
4295
|
+
top: 50%;
|
|
4296
|
+
transform: translateY(-50%);
|
|
4297
|
+
}
|
|
4298
|
+
.wx-icon.wx-only.wx-0hMO7P {
|
|
4299
|
+
opacity: 1;
|
|
4300
|
+
}
|
|
4301
|
+
.wx-icon.wx-0hMO7P + .wx-label.wx-0hMO7P {
|
|
4302
|
+
margin-left: 4px;
|
|
4303
|
+
}
|
|
4304
|
+
.wx-select-box.wx-2yx1Fo {
|
|
4305
|
+
position: relative;
|
|
4306
|
+
width: var(--wx-input-width);
|
|
4307
|
+
}
|
|
4308
|
+
.wx-select.wx-2yx1Fo {
|
|
4309
|
+
appearance: none;
|
|
4310
|
+
display: block;
|
|
4311
|
+
width: 100%;
|
|
4312
|
+
height: var(--wx-input-height);
|
|
4313
|
+
outline: none;
|
|
4314
|
+
background: var(--wx-input-background);
|
|
4315
|
+
border: var(--wx-input-border);
|
|
4316
|
+
border-radius: var(--wx-input-border-radius);
|
|
4317
|
+
font-family: var(--wx-input-font-family);
|
|
4318
|
+
font-size: var(--wx-input-font-size);
|
|
4319
|
+
line-height: var(--wx-input-line-height);
|
|
4320
|
+
font-weight: var(--wx-input-font-weight);
|
|
4321
|
+
text-align: var(--wx-input-text-align);
|
|
4322
|
+
color: var(--wx-input-font-color);
|
|
4323
|
+
padding: var(--wx-input-padding);
|
|
4324
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
4325
|
+
overflow: hidden !important;
|
|
4326
|
+
text-overflow: ellipsis;
|
|
4327
|
+
cursor: pointer;
|
|
4328
|
+
}
|
|
4329
|
+
.wx-select.wx-2yx1Fo:focus {
|
|
4330
|
+
border: var(--wx-input-border-focus);
|
|
4331
|
+
}
|
|
4332
|
+
.wx-select[disabled].wx-2yx1Fo {
|
|
4333
|
+
cursor: not-allowed;
|
|
4334
|
+
border: var(--wx-input-border-disabled);
|
|
4335
|
+
color: var(--wx-color-font-disabled);
|
|
4336
|
+
background: var(--wx-input-background-disabled);
|
|
4337
|
+
}
|
|
4338
|
+
.wx-select[disabled].wx-2yx1Fo ~ .wx-placeholder.wx-2yx1Fo {
|
|
4339
|
+
color: var(--wx-color-font-disabled);
|
|
4340
|
+
}
|
|
4341
|
+
.wx-select[disabled].wx-2yx1Fo ~ .wx-icon.wx-2yx1Fo {
|
|
4342
|
+
color: var(--wx-color-font-disabled);
|
|
4343
|
+
}
|
|
4344
|
+
.wx-select.wx-error.wx-2yx1Fo {
|
|
4345
|
+
border-color: var(--wx-color-danger);
|
|
4346
|
+
color: var(--wx-color-danger);
|
|
4347
|
+
}
|
|
4348
|
+
.wx-select.wx-error.wx-2yx1Fo option {
|
|
4349
|
+
color: var(--wx-input-font-color);
|
|
4350
|
+
}
|
|
4351
|
+
.wx-select.wx-error.wx-2yx1Fo ~ .wx-icon.wx-2yx1Fo {
|
|
4352
|
+
color: var(--wx-color-danger);
|
|
4353
|
+
}
|
|
4354
|
+
.wx-placeholder.wx-2yx1Fo {
|
|
4355
|
+
position: absolute;
|
|
4356
|
+
left: 0;
|
|
4357
|
+
top: 0;
|
|
4358
|
+
width: 100%;
|
|
4359
|
+
border: var(--wx-input-border);
|
|
4360
|
+
border-color: transparent;
|
|
4361
|
+
font-family: var(--wx-input-font-family);
|
|
4362
|
+
font-size: var(--wx-input-font-size);
|
|
4363
|
+
line-height: var(--wx-input-line-height);
|
|
4364
|
+
font-weight: var(--wx-input-font-weight);
|
|
4365
|
+
text-align: var(--wx-input-text-align);
|
|
4366
|
+
color: var(--wx-input-placeholder-color);
|
|
4367
|
+
padding: var(--wx-input-padding);
|
|
4368
|
+
padding-right: calc(var(--wx-input-icon-size) + var(--wx-input-icon-indent) * 2);
|
|
4369
|
+
white-space: nowrap;
|
|
4370
|
+
overflow: hidden !important;
|
|
4371
|
+
text-overflow: ellipsis;
|
|
4372
|
+
cursor: pointer;
|
|
4373
|
+
pointer-events: none;
|
|
4374
|
+
}
|
|
4375
|
+
.wx-icon.wx-2yx1Fo {
|
|
4376
|
+
position: absolute;
|
|
4377
|
+
right: var(--wx-input-icon-indent);
|
|
4378
|
+
top: 50%;
|
|
4379
|
+
transform: translateY(-50%);
|
|
4380
|
+
font-size: var(--wx-input-icon-size);
|
|
4381
|
+
line-height: 1;
|
|
4382
|
+
width: var(--wx-input-icon-size);
|
|
4383
|
+
height: var(--wx-input-icon-size);
|
|
4384
|
+
display: flex;
|
|
4385
|
+
justify-content: center;
|
|
4386
|
+
align-items: center;
|
|
4387
|
+
pointer-events: none;
|
|
4388
|
+
-webkit-user-select: none;
|
|
4389
|
+
user-select: none;
|
|
4390
|
+
color: var(--wx-input-icon-color);
|
|
4391
|
+
}
|
|
4392
|
+
.wx-icon.wx-2yx1Fo:before {
|
|
4393
|
+
display: block;
|
|
4394
|
+
}
|
|
4395
|
+
.wx-icon.wx-2yx1Fo.wxi-close {
|
|
4396
|
+
pointer-events: all;
|
|
4397
|
+
cursor: pointer;
|
|
4398
|
+
}
|
|
4399
|
+
.wx-icon.wxi-close:hover {
|
|
4400
|
+
background: var(--wx-background-hover);
|
|
4401
|
+
border-radius: var(--wx-icon-border-radius);
|
|
4402
|
+
}
|
|
4403
|
+
.wx-slider.wx-2EDJ8G {
|
|
4404
|
+
width: var(--wx-input-width);
|
|
4405
|
+
}
|
|
4406
|
+
.wx-label.wx-2EDJ8G {
|
|
4407
|
+
display: block;
|
|
4408
|
+
margin: var(--wx-slider-label-margin);
|
|
4409
|
+
font-family: var(--wx-slider-label-font-family);
|
|
4410
|
+
font-size: var(--wx-slider-label-font-size);
|
|
4411
|
+
line-height: var(--wx-slider-label-line-height);
|
|
4412
|
+
font-weight: var(--wx-slider-label-font-weight);
|
|
4413
|
+
color: var(--wx-slider-label-font-color);
|
|
4414
|
+
}
|
|
4415
|
+
.wx-inner.wx-2EDJ8G {
|
|
4416
|
+
padding: calc((var(--wx-slider-height) - var(--wx-slider-track-height)) / 2) 0;
|
|
4417
|
+
}
|
|
4418
|
+
.wx-input.wx-2EDJ8G {
|
|
4419
|
+
-webkit-appearance: none;
|
|
4420
|
+
-moz-appearance: none;
|
|
4421
|
+
appearance: none;
|
|
4422
|
+
display: block;
|
|
4423
|
+
width: 100%;
|
|
4424
|
+
height: var(--wx-slider-track-height);
|
|
4425
|
+
background: var(--wx-slider-background);
|
|
4426
|
+
border: none;
|
|
4427
|
+
border-radius: var(--wx-slider-track-border-radius);
|
|
4428
|
+
margin: 0;
|
|
4429
|
+
}
|
|
4430
|
+
.wx-input.wx-2EDJ8G:focus {
|
|
4431
|
+
outline: none;
|
|
4432
|
+
}
|
|
4433
|
+
.wx-input.wx-2EDJ8G::-webkit-slider-runnable-track {
|
|
4434
|
+
margin: 0;
|
|
4435
|
+
width: 100%;
|
|
4436
|
+
height: var(--wx-slider-track-height);
|
|
4437
|
+
border: none;
|
|
4438
|
+
border-radius: var(--wx-slider-track-border-radius);
|
|
4439
|
+
cursor: pointer;
|
|
4440
|
+
background: transparent;
|
|
4441
|
+
}
|
|
4442
|
+
.wx-input.wx-2EDJ8G::-webkit-slider-thumb {
|
|
4443
|
+
margin-top: calc((var(--wx-slider-track-height) - var(--wx-slider-thumb-size)) / 2);
|
|
4444
|
+
width: var(--wx-slider-thumb-size);
|
|
4445
|
+
height: var(--wx-slider-thumb-size);
|
|
4446
|
+
background: var(--wx-slider-primary);
|
|
4447
|
+
border: var(--wx-slider-thumb-border);
|
|
4448
|
+
box-shadow: var(--wx-slider-thumb-shadow);
|
|
4449
|
+
border-radius: 50%;
|
|
4450
|
+
cursor: pointer;
|
|
4451
|
+
appearance: none;
|
|
4452
|
+
}
|
|
4453
|
+
.wx-input.wx-2EDJ8G::-moz-range-track {
|
|
4454
|
+
margin: 0;
|
|
4455
|
+
width: 100%;
|
|
4456
|
+
height: var(--wx-slider-track-height);
|
|
4457
|
+
border: none;
|
|
4458
|
+
border-radius: var(--wx-slider-track-border-radius);
|
|
4459
|
+
cursor: pointer;
|
|
4460
|
+
background: transparent;
|
|
4461
|
+
}
|
|
4462
|
+
.wx-input.wx-2EDJ8G::-moz-range-thumb {
|
|
4463
|
+
margin-top: calc((var(--wx-slider-track-height) - var(--wx-slider-thumb-size)) / 2);
|
|
4464
|
+
width: var(--wx-slider-thumb-size);
|
|
4465
|
+
height: var(--wx-slider-thumb-size);
|
|
4466
|
+
background: var(--wx-slider-primary);
|
|
4467
|
+
border: var(--wx-slider-thumb-border);
|
|
4468
|
+
border-radius: 50%;
|
|
4469
|
+
cursor: pointer;
|
|
4470
|
+
appearance: none;
|
|
4471
|
+
}
|
|
4472
|
+
.wx-input.wx-2EDJ8G::-moz-range-progress {
|
|
4473
|
+
background-color: var(--wx-slider-primary);
|
|
4474
|
+
height: var(--wx-slider-track-height);
|
|
4475
|
+
border-top-left-radius: var(--wx-slider-track-border-radius);
|
|
4476
|
+
border-bottom-left-radius: var(--wx-slider-track-border-radius);
|
|
4477
|
+
}
|
|
4478
|
+
.wx-input.wx-2EDJ8G::-ms-track {
|
|
4479
|
+
color: transparent;
|
|
4480
|
+
margin: 0;
|
|
4481
|
+
width: 100%;
|
|
4482
|
+
height: var(--wx-slider-track-height);
|
|
4483
|
+
border: none;
|
|
4484
|
+
border-radius: var(--wx-slider-track-border-radius);
|
|
4485
|
+
cursor: pointer;
|
|
4486
|
+
background: transparent;
|
|
4487
|
+
}
|
|
4488
|
+
.wx-input.wx-2EDJ8G::-ms-fill-lower {
|
|
4489
|
+
background: var(--wx-slider-primary);
|
|
4490
|
+
border: .2px solid var(--wx-slider-primary);
|
|
4491
|
+
border-radius: var(--wx-slider-track-border-radius);
|
|
4492
|
+
}
|
|
4493
|
+
.wx-input.wx-2EDJ8G::-ms-fill-upper {
|
|
4494
|
+
background: var(--wx-slider-background);
|
|
4495
|
+
border: .2px solid var(--wx-slider-background);
|
|
4496
|
+
border-radius: var(--wx-slider-track-border-radius);
|
|
4497
|
+
}
|
|
4498
|
+
.wx-input.wx-2EDJ8G::-ms-thumb {
|
|
4499
|
+
margin-top: calc((var(--wx-slider-track-height) - var(--wx-slider-thumb-size)) / 2);
|
|
4500
|
+
width: var(--wx-slider-thumb-size);
|
|
4501
|
+
height: var(--wx-slider-thumb-size);
|
|
4502
|
+
background: var(--wx-slider-primary);
|
|
4503
|
+
border: var(--wx-slider-thumb-border);
|
|
4504
|
+
border-radius: 50%;
|
|
4505
|
+
cursor: pointer;
|
|
4506
|
+
appearance: none;
|
|
4507
|
+
}
|
|
4508
|
+
.wx-input.wx-2EDJ8G:focus::-ms-fill-lower {
|
|
4509
|
+
background: var(--wx-slider-primary);
|
|
4510
|
+
}
|
|
4511
|
+
.wx-input.wx-2EDJ8G:focus::-ms-fill-upper {
|
|
4512
|
+
background: var(--wx-slider-background);
|
|
4513
|
+
}
|
|
4514
|
+
.wx-input.wx-2EDJ8G[disabled] {
|
|
4515
|
+
cursor: not-allowed;
|
|
4516
|
+
background: var(--wx-color-disabled);
|
|
4517
|
+
}
|
|
4518
|
+
.wx-input.wx-2EDJ8G[disabled]::-webkit-slider-runnable-track {
|
|
4519
|
+
cursor: not-allowed;
|
|
4520
|
+
}
|
|
4521
|
+
.wx-input.wx-2EDJ8G[disabled]::-webkit-slider-thumb {
|
|
4522
|
+
cursor: not-allowed;
|
|
4523
|
+
background: var(--wx-background);
|
|
4524
|
+
border: var(--wx-slider-thumb-border-disabled);
|
|
4525
|
+
}
|
|
4526
|
+
.wx-input.wx-2EDJ8G[disabled]::-moz-range-track {
|
|
4527
|
+
cursor: not-allowed;
|
|
4528
|
+
}
|
|
4529
|
+
.wx-input.wx-2EDJ8G[disabled]::-moz-range-thumb {
|
|
4530
|
+
cursor: not-allowed;
|
|
4531
|
+
background: var(--wx-background);
|
|
4532
|
+
border: var(--wx-slider-thumb-border-disabled);
|
|
4533
|
+
}
|
|
4534
|
+
.wx-input.wx-2EDJ8G[disabled]::-moz-range-progress {
|
|
4535
|
+
cursor: not-allowed;
|
|
4536
|
+
background: var(--wx-color-disabled);
|
|
4537
|
+
}
|
|
4538
|
+
.wx-input.wx-2EDJ8G[disabled]::-ms-track {
|
|
4539
|
+
cursor: not-allowed;
|
|
4540
|
+
}
|
|
4541
|
+
.wx-input.wx-2EDJ8G[disabled]::-ms-fill-lower {
|
|
4542
|
+
background: var(--wx-color-disabled);
|
|
4543
|
+
border-color: var(--wx-color-disabled);
|
|
4544
|
+
}
|
|
4545
|
+
.wx-input.wx-2EDJ8G[disabled]::-ms-fill-upper {
|
|
4546
|
+
background: var(--wx-color-disabled);
|
|
4547
|
+
border-color: var(--wx-color-disabled);
|
|
4548
|
+
}
|
|
4549
|
+
.wx-input.wx-2EDJ8G[disabled]::-ms-thumb {
|
|
4550
|
+
cursor: not-allowed;
|
|
4551
|
+
background: var(--wx-background);
|
|
4552
|
+
border: var(--wx-slider-thumb-border-disabled);
|
|
4553
|
+
}
|
|
4554
|
+
.wx-input.wx-2EDJ8G[disabled]:focus::-ms-fill-lower {
|
|
4555
|
+
background: var(--wx-color-disabled);
|
|
4556
|
+
}
|
|
4557
|
+
.wx-input.wx-2EDJ8G[disabled]:focus::-ms-fill-upper {
|
|
4558
|
+
background: var(--wx-color-disabled);
|
|
4559
|
+
}
|
|
4560
|
+
.wx-switch.wx-2dAR5c {
|
|
4561
|
+
position: relative;
|
|
4562
|
+
display: inline-block;
|
|
4563
|
+
vertical-align: top;
|
|
4564
|
+
margin: 0;
|
|
4565
|
+
cursor: default;
|
|
4566
|
+
}
|
|
4567
|
+
.wx-input.wx-2dAR5c {
|
|
4568
|
+
appearance: none;
|
|
4569
|
+
width: 0;
|
|
4570
|
+
height: 0;
|
|
4571
|
+
opacity: 0;
|
|
4572
|
+
position: absolute;
|
|
4573
|
+
left: 0;
|
|
4574
|
+
top: 0;
|
|
4575
|
+
margin: 0;
|
|
4576
|
+
padding: 0;
|
|
4577
|
+
}
|
|
4578
|
+
.wx-box.wx-2dAR5c {
|
|
4579
|
+
display: block;
|
|
4580
|
+
position: relative;
|
|
4581
|
+
width: var(--wx-switch-width);
|
|
4582
|
+
height: var(--wx-switch-height);
|
|
4583
|
+
border: var(--wx-switch-border-width) solid var(--wx-switch-border-color);
|
|
4584
|
+
border-radius: calc(var(--wx-switch-height) / 2);
|
|
4585
|
+
background-color: var(--wx-switch-background);
|
|
4586
|
+
transition: background-color .4s ease;
|
|
4587
|
+
cursor: pointer;
|
|
4588
|
+
overflow: hidden;
|
|
4589
|
+
}
|
|
4590
|
+
.wx-box.wx-2dAR5c:before {
|
|
4591
|
+
content: "";
|
|
4592
|
+
position: absolute;
|
|
4593
|
+
left: var(--wx-switch-thumb-offset);
|
|
4594
|
+
top: var(--wx-switch-thumb-offset);
|
|
4595
|
+
height: calc(var(--wx-switch-height) - var(--wx-switch-thumb-offset) * 2 - var(--wx-switch-border-width) * 2);
|
|
4596
|
+
width: calc(var(--wx-switch-height) - var(--wx-switch-thumb-offset) * 2 - var(--wx-switch-border-width) * 2);
|
|
4597
|
+
border: var(--wx-switch-thumb-border);
|
|
4598
|
+
border-radius: 50%;
|
|
4599
|
+
background: var(--wx-switch-thumb-background);
|
|
4600
|
+
box-shadow: var(--wx-switch-thumb-shadow);
|
|
4601
|
+
transition: transform .4s ease;
|
|
4602
|
+
}
|
|
4603
|
+
.wx-input.wx-2dAR5c:checked ~ .wx-box.wx-2dAR5c {
|
|
4604
|
+
background-color: var(--wx-switch-primary);
|
|
4605
|
+
}
|
|
4606
|
+
.wx-input.wx-2dAR5c:checked ~ .wx-box.wx-2dAR5c:before {
|
|
4607
|
+
transform: translate(calc(var(--wx-switch-width) - var(--wx-switch-height)));
|
|
4608
|
+
}
|
|
4609
|
+
.wx-input.wx-2dAR5c[disabled] ~ .wx-box.wx-2dAR5c {
|
|
4610
|
+
background-color: var(--wx-color-disabled);
|
|
4611
|
+
border-color: var(--wx-switch-border-color-disabled);
|
|
4612
|
+
cursor: not-allowed;
|
|
4613
|
+
}
|
|
4614
|
+
.wx-input.wx-2dAR5c[disabled] ~ .wx-box.wx-2dAR5c:before {
|
|
4615
|
+
border: var(--wx-switch-thumb-border-disabled);
|
|
4616
|
+
background: var(--wx-switch-thumb-background-disabled);
|
|
4617
|
+
}
|
|
4618
|
+
.wx-tabs.wx-138fWJ {
|
|
4619
|
+
display: inline-flex;
|
|
4620
|
+
flex-wrap: nowrap;
|
|
4621
|
+
}
|
|
4622
|
+
.wx-tab.wx-138fWJ {
|
|
4623
|
+
position: relative;
|
|
4624
|
+
display: flex;
|
|
4625
|
+
flex-wrap: nowrap;
|
|
4626
|
+
align-items: center;
|
|
4627
|
+
justify-content: center;
|
|
4628
|
+
text-decoration: none;
|
|
4629
|
+
text-align: center;
|
|
4630
|
+
letter-spacing: normal;
|
|
4631
|
+
text-transform: var(--wx-button-text-transform);
|
|
4632
|
+
font-family: var(--wx-button-font-family);
|
|
4633
|
+
font-size: var(--wx-button-font-size);
|
|
4634
|
+
line-height: var(--wx-button-line-height);
|
|
4635
|
+
font-weight: var(--wx-button-font-weight);
|
|
4636
|
+
padding: var(--wx-button-padding);
|
|
4637
|
+
border: var(--wx-button-border);
|
|
4638
|
+
border-width: var(--wx-tabs-border-width);
|
|
4639
|
+
border-radius: 0;
|
|
4640
|
+
background: var(--wx-tabs-background);
|
|
4641
|
+
color: var(--wx-button-font-color);
|
|
4642
|
+
cursor: pointer;
|
|
4643
|
+
box-shadow: none;
|
|
4644
|
+
transition: none;
|
|
4645
|
+
max-width: 100%;
|
|
4646
|
+
min-width: var(--wx-tabs-cell-min-width);
|
|
4647
|
+
-webkit-user-select: none;
|
|
4648
|
+
user-select: none;
|
|
4649
|
+
}
|
|
4650
|
+
.wx-tab.wx-138fWJ + .wx-tab.wx-138fWJ:before {
|
|
4651
|
+
content: "";
|
|
4652
|
+
display: block;
|
|
4653
|
+
position: absolute;
|
|
4654
|
+
left: calc(var(--wx-tabs-border-width) * -1 - var(--wx-tabs-divider-width) / 2);
|
|
4655
|
+
top: 50%;
|
|
4656
|
+
transform: translateY(-50%);
|
|
4657
|
+
width: 0;
|
|
4658
|
+
height: calc(var(--wx-tabs-border-width) * 2 + var(--wx-tabs-divider-height));
|
|
4659
|
+
border-left: var(--wx-tabs-divider-width) solid var(--wx-tabs-divider-color);
|
|
4660
|
+
}
|
|
4661
|
+
.wx-tab.wx-138fWJ:first-child {
|
|
4662
|
+
border-top-left-radius: var(--wx-tabs-border-radius);
|
|
4663
|
+
border-bottom-left-radius: var(--wx-tabs-border-radius);
|
|
4664
|
+
}
|
|
4665
|
+
.wx-tab.wx-138fWJ:last-child {
|
|
4666
|
+
border-top-right-radius: var(--wx-tabs-border-radius);
|
|
4667
|
+
border-bottom-right-radius: var(--wx-tabs-border-radius);
|
|
4668
|
+
}
|
|
4669
|
+
.wx-tab.wx-138fWJ,
|
|
4670
|
+
.wx-tab.wx-138fWJ:focus,
|
|
4671
|
+
.wx-tab.wx-138fWJ:active {
|
|
4672
|
+
outline: none;
|
|
4673
|
+
}
|
|
4674
|
+
.wx-tab.wx-138fWJ:hover {
|
|
4675
|
+
background: var(--wx-tabs-background-hover);
|
|
4676
|
+
}
|
|
4677
|
+
.wx-tab.wx-active.wx-138fWJ,
|
|
4678
|
+
.wx-tab.wx-active.wx-138fWJ:hover,
|
|
4679
|
+
.wx-tab.wx-active.wx-138fWJ:focus {
|
|
4680
|
+
background: var(--wx-tabs-active-background);
|
|
4681
|
+
color: var(--wx-tabs-active-color);
|
|
4682
|
+
cursor: default;
|
|
4683
|
+
}
|
|
4684
|
+
.wx-tab.wx-active.wx-138fWJ:before {
|
|
4685
|
+
display: none;
|
|
4686
|
+
}
|
|
4687
|
+
.wx-tab.wx-active.wx-138fWJ + .wx-tab.wx-138fWJ:before {
|
|
4688
|
+
display: none;
|
|
4689
|
+
}
|
|
4690
|
+
.wx-tab.wx-active.wx-138fWJ:after,
|
|
4691
|
+
.wx-tab.wx-138fWJ:hover:after {
|
|
4692
|
+
content: "";
|
|
4693
|
+
display: block;
|
|
4694
|
+
position: absolute;
|
|
4695
|
+
left: 13px;
|
|
4696
|
+
height: 0;
|
|
4697
|
+
width: calc(100% - 26px);
|
|
4698
|
+
}
|
|
4699
|
+
.wx-tab.wx-active.wx-138fWJ:after {
|
|
4700
|
+
border-bottom: 2px solid var(--wx-tabs-active-border);
|
|
4701
|
+
}
|
|
4702
|
+
.wx-tab:not(.wx-active):hover:after {
|
|
4703
|
+
border-bottom: 2px solid var(--wx-tabs-hover-border);
|
|
4704
|
+
}
|
|
4705
|
+
.wx-top.wx-138fWJ .wx-tab.wx-active.wx-138fWJ:after,
|
|
4706
|
+
.wx-top.wx-138fWJ .wx-tab.wx-138fWJ:hover:after {
|
|
4707
|
+
top: 100%;
|
|
4708
|
+
}
|
|
4709
|
+
.wx-bottom.wx-138fWJ .wx-tab.wx-active.wx-138fWJ:after,
|
|
4710
|
+
.wx-bottom.wx-138fWJ .wx-tab.wx-138fWJ:hover:after {
|
|
4711
|
+
top: 0;
|
|
4712
|
+
}
|
|
4713
|
+
.wx-icon.wx-138fWJ {
|
|
4714
|
+
position: relative;
|
|
4715
|
+
font-size: var(--wx-button-icon-size);
|
|
4716
|
+
line-height: 1;
|
|
4717
|
+
height: var(--wx-button-line-height);
|
|
4718
|
+
opacity: .7;
|
|
4719
|
+
}
|
|
4720
|
+
.wx-icon.wx-138fWJ:before {
|
|
4721
|
+
display: block;
|
|
4722
|
+
position: relative;
|
|
4723
|
+
top: 50%;
|
|
4724
|
+
transform: translateY(-50%);
|
|
4725
|
+
}
|
|
4726
|
+
.wx-icon.wx-only.wx-138fWJ {
|
|
4727
|
+
opacity: 1;
|
|
4728
|
+
}
|
|
4729
|
+
.wx-icon.wx-138fWJ + .wx-label.wx-138fWJ {
|
|
4730
|
+
margin-left: 4px;
|
|
4731
|
+
}
|
|
4732
|
+
.wx-counter.wx-22t21n {
|
|
4733
|
+
display: flex;
|
|
4734
|
+
border: var(--wx-input-border);
|
|
4735
|
+
width: max-content;
|
|
4736
|
+
border-radius: var(--wx-input-border-radius);
|
|
4737
|
+
}
|
|
4738
|
+
.wx-counter.wx-22t21n:not(.wx-readonly):has(.wx-input:focus) {
|
|
4739
|
+
border: var(--wx-input-border-focus);
|
|
4740
|
+
}
|
|
4741
|
+
.wx-input.wx-22t21n {
|
|
4742
|
+
box-sizing: border-box;
|
|
4743
|
+
background: var(--wx-background);
|
|
4744
|
+
width: 40px;
|
|
4745
|
+
height: 30px;
|
|
4746
|
+
font-family: var(--wx-input-font-family);
|
|
4747
|
+
font-size: var(--wx-input-font-size);
|
|
4748
|
+
color: var(--wx-input-font-color);
|
|
4749
|
+
padding-left: 8px;
|
|
4750
|
+
padding-right: 8px;
|
|
4751
|
+
outline: none;
|
|
4752
|
+
border: none;
|
|
4753
|
+
border-left: var(--wx-input-border);
|
|
4754
|
+
border-right: var(--wx-input-border);
|
|
4755
|
+
}
|
|
4756
|
+
.wx-btn.wx-22t21n {
|
|
4757
|
+
box-sizing: border-box;
|
|
4758
|
+
display: flex;
|
|
4759
|
+
justify-content: center;
|
|
4760
|
+
align-items: center;
|
|
4761
|
+
width: 32px;
|
|
4762
|
+
height: 30px;
|
|
4763
|
+
font-family: var(--wx-input-font-family);
|
|
4764
|
+
font-size: var(--wx-input-font-size);
|
|
4765
|
+
color: var(--wx-input-font-color);
|
|
4766
|
+
background-color: var(--wx-background-alt);
|
|
4767
|
+
outline: none;
|
|
4768
|
+
border: none;
|
|
4769
|
+
cursor: pointer;
|
|
4770
|
+
}
|
|
4771
|
+
.wx-counter.wx-22t21n:not(.wx-readonly):not(.wx-disabled) .wx-btn:active {
|
|
4772
|
+
background-color: var(--wx-background-hover);
|
|
4773
|
+
}
|
|
4774
|
+
.wx-dec.wx-22t21n,
|
|
4775
|
+
.wx-inc.wx-22t21n {
|
|
4776
|
+
fill: var(--wx-color-primary);
|
|
4777
|
+
}
|
|
4778
|
+
.wx-btn-dec.wx-22t21n {
|
|
4779
|
+
border-radius: 2px 0 0 2px;
|
|
4780
|
+
}
|
|
4781
|
+
.wx-btn-inc.wx-22t21n {
|
|
4782
|
+
border-radius: 0 2px 2px 0;
|
|
4783
|
+
}
|
|
4784
|
+
.wx-error.wx-22t21n,
|
|
4785
|
+
.wx-counter.wx-error.wx-22t21n:has(.wx-input:focus) {
|
|
4786
|
+
border: 1px solid var(--wx-color-danger);
|
|
4787
|
+
}
|
|
4788
|
+
.wx-error.wx-22t21n .wx-input.wx-22t21n {
|
|
4789
|
+
color: var(--wx-color-danger);
|
|
4790
|
+
}
|
|
4791
|
+
.wx-disabled.wx-22t21n .wx-input.wx-22t21n,
|
|
4792
|
+
.wx-disabled.wx-22t21n .wx-btn.wx-22t21n {
|
|
4793
|
+
cursor: not-allowed;
|
|
4794
|
+
color: var(--wx-color-font-disabled);
|
|
4795
|
+
}
|
|
4796
|
+
.wx-disabled.wx-22t21n .wx-btn.wx-22t21n {
|
|
4797
|
+
background: var(--wx-color-disabled-alt);
|
|
4798
|
+
}
|
|
4799
|
+
.wx-disabled.wx-22t21n .wx-btn.wx-22t21n .wx-dec.wx-22t21n,
|
|
4800
|
+
.wx-disabled.wx-22t21n .wx-btn.wx-22t21n .wx-inc.wx-22t21n,
|
|
4801
|
+
.wx-readonly.wx-22t21n .wx-btn.wx-22t21n .wx-dec.wx-22t21n,
|
|
4802
|
+
.wx-readonly.wx-22t21n .wx-btn.wx-22t21n .wx-inc.wx-22t21n {
|
|
4803
|
+
fill: var(--wx-color-font-disabled);
|
|
4804
|
+
}
|
|
4805
|
+
.wx-readonly.wx-22t21n .wx-btn.wx-22t21n {
|
|
4806
|
+
cursor: default;
|
|
4807
|
+
}
|
|
4808
|
+
.wx-notice.wx-11sNg5 {
|
|
4809
|
+
position: relative;
|
|
4810
|
+
background: var(--wx-notice-background);
|
|
4811
|
+
box-shadow: var(--wx-notice-shadow);
|
|
4812
|
+
border: var(--wx-notice-border);
|
|
4813
|
+
border-radius: var(--wx-notice-border-radius);
|
|
4814
|
+
margin: var(--wx-notice-margin);
|
|
4815
|
+
display: flex;
|
|
4816
|
+
flex-wrap: nowrap;
|
|
4817
|
+
align-items: center;
|
|
4818
|
+
justify-content: space-between;
|
|
4819
|
+
overflow: hidden;
|
|
4820
|
+
font-family: var(--wx-notice-font-family);
|
|
4821
|
+
font-size: var(--wx-notice-font-size);
|
|
4822
|
+
line-height: var(--wx-notice-line-height);
|
|
4823
|
+
font-weight: var(--wx-notice-font-weight);
|
|
4824
|
+
color: var(--wx-notice-font-color);
|
|
4825
|
+
width: var(--wx-notice-width);
|
|
4826
|
+
}
|
|
4827
|
+
.wx-notice.wx-11sNg5:before {
|
|
4828
|
+
content: "";
|
|
4829
|
+
display: block;
|
|
4830
|
+
position: absolute;
|
|
4831
|
+
z-index: 1;
|
|
4832
|
+
left: 0;
|
|
4833
|
+
top: 0;
|
|
4834
|
+
width: var(--wx-notice-type-border-width);
|
|
4835
|
+
height: 100%;
|
|
4836
|
+
border-top-right-radius: var(--wx-notice-type-border-width);
|
|
4837
|
+
border-bottom-right-radius: var(--wx-notice-type-border-width);
|
|
4838
|
+
background: var(--wx-notice-type-border-color);
|
|
4839
|
+
}
|
|
4840
|
+
.wx-notice.wx-11sNg5:after {
|
|
4841
|
+
content: "";
|
|
4842
|
+
display: block;
|
|
4843
|
+
position: absolute;
|
|
4844
|
+
left: 0;
|
|
4845
|
+
top: 0;
|
|
4846
|
+
width: 100%;
|
|
4847
|
+
height: 100%;
|
|
4848
|
+
opacity: var(--wx-notice-type-background-opacity);
|
|
4849
|
+
background: transparent;
|
|
4850
|
+
}
|
|
4851
|
+
.wx-text.wx-11sNg5,
|
|
4852
|
+
.wx-button.wx-11sNg5 {
|
|
4853
|
+
position: relative;
|
|
4854
|
+
z-index: 2;
|
|
4855
|
+
padding: var(--wx-notice-padding);
|
|
4856
|
+
}
|
|
4857
|
+
.wx-text.wx-11sNg5 {
|
|
4858
|
+
flex-shrink: 0;
|
|
4859
|
+
word-wrap: break-word;
|
|
4860
|
+
max-width: calc(var(--wx-notice-width) - var(--wx-notice-padding) * 2 - var(--wx-notice-icon-size));
|
|
4861
|
+
}
|
|
4862
|
+
.wxi-close.wx-11sNg5 {
|
|
4863
|
+
position: relative;
|
|
4864
|
+
display: flex;
|
|
4865
|
+
justify-content: center;
|
|
4866
|
+
align-items: center;
|
|
4867
|
+
font-size: var(--wx-notice-icon-size);
|
|
4868
|
+
line-height: 1;
|
|
4869
|
+
width: var(--wx-notice-icon-size);
|
|
4870
|
+
height: var(--wx-notice-icon-size);
|
|
4871
|
+
color: var(--wx-notice-type-icon-color);
|
|
4872
|
+
cursor: pointer;
|
|
4873
|
+
}
|
|
4874
|
+
.wxi-close.wx-11sNg5:before {
|
|
4875
|
+
display: block;
|
|
4876
|
+
z-index: 1;
|
|
4877
|
+
}
|
|
4878
|
+
.wxi-close.wx-11sNg5:after {
|
|
4879
|
+
content: "";
|
|
4880
|
+
display: block;
|
|
4881
|
+
position: absolute;
|
|
4882
|
+
left: 50%;
|
|
4883
|
+
top: 50%;
|
|
4884
|
+
transform: translate(-50%, -50%);
|
|
4885
|
+
width: calc(100% + 4px);
|
|
4886
|
+
height: calc(100% + 4px);
|
|
4887
|
+
border-radius: var(--wx-icon-border-radius);
|
|
4888
|
+
}
|
|
4889
|
+
.wxi-close.wx-11sNg5:hover:after {
|
|
4890
|
+
background: var(--wx-background-hover);
|
|
4891
|
+
}
|
|
4892
|
+
.wx-notice.wx-info.wx-11sNg5,
|
|
4893
|
+
.wx-notice.wx-warning.wx-11sNg5,
|
|
4894
|
+
.wx-notice.wx-success.wx-11sNg5,
|
|
4895
|
+
.wx-notice.wx-danger.wx-11sNg5 {
|
|
4896
|
+
color: var(--wx-notice-type-font-color);
|
|
4897
|
+
}
|
|
4898
|
+
.wx-notice.wx-info.wx-11sNg5:before,
|
|
4899
|
+
.wx-notice.wx-info.wx-11sNg5:after {
|
|
4900
|
+
background: var(--wx-color-info);
|
|
4901
|
+
}
|
|
4902
|
+
.wx-notice.wx-warning.wx-11sNg5:before,
|
|
4903
|
+
.wx-notice.wx-warning.wx-11sNg5:after {
|
|
4904
|
+
background: var(--wx-color-warning);
|
|
4905
|
+
}
|
|
4906
|
+
.wx-notice.wx-success.wx-11sNg5:before,
|
|
4907
|
+
.wx-notice.wx-success.wx-11sNg5:after {
|
|
4908
|
+
background: var(--wx-color-success);
|
|
4909
|
+
}
|
|
4910
|
+
.wx-notice.wx-danger.wx-11sNg5:before,
|
|
4911
|
+
.wx-notice.wx-danger.wx-11sNg5:after {
|
|
4912
|
+
background: var(--wx-color-danger);
|
|
4913
|
+
}
|
|
4914
|
+
.wx-notice.wx-info.wx-11sNg5 .wxi-close.wx-11sNg5:after,
|
|
4915
|
+
.wx-notice.wx-warning.wx-11sNg5 .wxi-close.wx-11sNg5:after,
|
|
4916
|
+
.wx-notice.wx-success.wx-11sNg5 .wxi-close.wx-11sNg5:after,
|
|
4917
|
+
.wx-notice.wx-danger.wx-11sNg5 .wxi-close.wx-11sNg5:after {
|
|
4918
|
+
opacity: var(--wx-notice-type-close-hover-opacity);
|
|
4919
|
+
}
|
|
4920
|
+
.wx-notices.wx-3nwoO9 {
|
|
4921
|
+
position: fixed;
|
|
4922
|
+
z-index: var(--wx-notice-z-index);
|
|
4923
|
+
top: 0;
|
|
4924
|
+
right: 0;
|
|
4925
|
+
}
|
|
4926
|
+
.wx-modal.wx-1FxkZa {
|
|
4927
|
+
position: fixed;
|
|
4928
|
+
z-index: var(--wx-modal-z-index);
|
|
4929
|
+
top: 0;
|
|
4930
|
+
left: 0;
|
|
4931
|
+
display: flex;
|
|
4932
|
+
align-items: center;
|
|
4933
|
+
justify-content: center;
|
|
4934
|
+
width: 100%;
|
|
4935
|
+
height: 100%;
|
|
4936
|
+
background: var(--wx-modal-backdrop);
|
|
4937
|
+
text-align: center;
|
|
4938
|
+
}
|
|
4939
|
+
.wx-window.wx-1FxkZa {
|
|
4940
|
+
background: var(--wx-modal-background);
|
|
4941
|
+
box-shadow: var(--wx-modal-shadow);
|
|
4942
|
+
border: var(--wx-modal-border);
|
|
4943
|
+
border-radius: var(--wx-modal-border-radius);
|
|
4944
|
+
padding: var(--wx-modal-padding);
|
|
4945
|
+
min-width: var(--wx-modal-width);
|
|
4946
|
+
}
|
|
4947
|
+
.wx-header.wx-1FxkZa {
|
|
4948
|
+
font-family: var(--wx-modal-header-font-family);
|
|
4949
|
+
font-size: var(--wx-modal-header-font-size);
|
|
4950
|
+
line-height: var(--wx-modal-header-line-height);
|
|
4951
|
+
font-weight: var(--wx-modal-header-font-weight);
|
|
4952
|
+
color: var(--wx-modal-header-font-color);
|
|
4953
|
+
margin-bottom: var(--wx-modal-gutter);
|
|
4954
|
+
}
|
|
4955
|
+
.wx-buttons.wx-1FxkZa {
|
|
4956
|
+
margin-top: var(--wx-modal-gutter);
|
|
4957
|
+
display: flex;
|
|
4958
|
+
justify-content: center;
|
|
4959
|
+
margin-left: calc(var(--wx-modal-gutter) / -2);
|
|
4960
|
+
margin-right: calc(var(--wx-modal-gutter) / -2);
|
|
4961
|
+
}
|
|
4962
|
+
.wx-button.wx-1FxkZa {
|
|
4963
|
+
flex: 1;
|
|
4964
|
+
max-width: 50%;
|
|
4965
|
+
padding: 0 calc(var(--wx-modal-gutter) / 2);
|
|
4966
|
+
}
|
|
4967
|
+
.wx-field.wx-2oVUvC {
|
|
4968
|
+
width: var(--wx-field-width);
|
|
4969
|
+
max-width: 100%;
|
|
4970
|
+
margin-bottom: var(--wx-field-gutter);
|
|
4971
|
+
}
|
|
4972
|
+
.wx-field.wx-left.wx-2oVUvC {
|
|
4973
|
+
display: flex;
|
|
4974
|
+
flex-wrap: nowrap;
|
|
4975
|
+
align-items: flex-start;
|
|
4976
|
+
}
|
|
4977
|
+
.wx-field.wx-left.wx-2oVUvC > .wx-label.wx-2oVUvC {
|
|
4978
|
+
width: var(--wx-label-width);
|
|
4979
|
+
flex-shrink: 0;
|
|
4980
|
+
margin: 0 var(--wx-field-gutter) 0 0;
|
|
4981
|
+
padding-top: calc((var(--wx-input-height) - var(--wx-label-line-height)) / 2);
|
|
4982
|
+
text-align: right;
|
|
4983
|
+
}
|
|
4984
|
+
.wx-field.wx-left.wx-2oVUvC > .wx-field-control.wx-2oVUvC {
|
|
4985
|
+
max-width: calc(100% - var(--wx-label-width) - var(--wx-field-gutter));
|
|
4986
|
+
}
|
|
4987
|
+
.wx-field.wx-error.wx-2oVUvC .wx-label.wx-2oVUvC {
|
|
4988
|
+
color: var(--wx-color-danger);
|
|
4989
|
+
}
|
|
4990
|
+
.wx-field.wx-left.wx-2oVUvC .wx-field-control.wx-checkbox.wx-2oVUvC {
|
|
4991
|
+
padding-top: calc((var(--wx-input-height) - var(--wx-checkbox-height)) / 2);
|
|
4992
|
+
padding-bottom: calc((var(--wx-input-height) - var(--wx-checkbox-height)) / 2);
|
|
4993
|
+
}
|
|
4994
|
+
.wx-field.wx-left.wx-2oVUvC .wx-field-control.wx-slider.wx-2oVUvC {
|
|
4995
|
+
padding-top: calc((var(--wx-input-height) - var(--wx-slider-height)) / 2);
|
|
4996
|
+
padding-bottom: calc((var(--wx-input-height) - var(--wx-slider-height)) / 2);
|
|
4997
|
+
}
|
|
4998
|
+
.wx-field.wx-left.wx-2oVUvC .wx-field-control.wx-switch.wx-2oVUvC {
|
|
4999
|
+
padding-top: calc((var(--wx-input-height) - var(--wx-switch-height)) / 2);
|
|
5000
|
+
padding-bottom: calc((var(--wx-input-height) - var(--wx-switch-height)) / 2);
|
|
5001
|
+
}
|
|
5002
|
+
.wx-label.wx-2oVUvC {
|
|
5003
|
+
display: block;
|
|
5004
|
+
margin: var(--wx-label-margin);
|
|
5005
|
+
padding: var(--wx-label-padding);
|
|
5006
|
+
font-family: var(--wx-label-font-family);
|
|
5007
|
+
font-size: var(--wx-label-font-size);
|
|
5008
|
+
line-height: var(--wx-label-line-height);
|
|
5009
|
+
font-weight: var(--wx-label-font-weight);
|
|
5010
|
+
color: var(--wx-label-font-color);
|
|
5011
|
+
}
|
|
5012
|
+
.wx-required.wx-2oVUvC .wx-label.wx-2oVUvC:after {
|
|
5013
|
+
content: " *";
|
|
5014
|
+
color: var(--wx-color-danger);
|
|
5015
|
+
}
|
|
5016
|
+
.wx-field-control.wx-2oVUvC {
|
|
5017
|
+
position: relative;
|
|
5018
|
+
width: 100%;
|
|
5019
|
+
}
|
|
5020
|
+
.wx-timepicker.wx-7f497i {
|
|
5021
|
+
position: relative;
|
|
5022
|
+
width: var(--wx-input-width);
|
|
5023
|
+
}
|
|
5024
|
+
.wx-wrapper.wx-7f497i {
|
|
5025
|
+
padding: 10px 20px;
|
|
5026
|
+
}
|
|
5027
|
+
.wx-timer.wx-7f497i {
|
|
5028
|
+
display: flex;
|
|
5029
|
+
text-align: center;
|
|
5030
|
+
justify-content: center;
|
|
5031
|
+
margin-bottom: 10px;
|
|
5032
|
+
}
|
|
5033
|
+
.wx-digit.wx-7f497i {
|
|
5034
|
+
display: block;
|
|
5035
|
+
width: 50px;
|
|
5036
|
+
height: 38px;
|
|
5037
|
+
border: none;
|
|
5038
|
+
border-bottom: var(--wx-input-border);
|
|
5039
|
+
font-family: var(--wx-input-font-family);
|
|
5040
|
+
font-size: 24px;
|
|
5041
|
+
line-height: 28px;
|
|
5042
|
+
padding: 5px;
|
|
5043
|
+
text-align: center;
|
|
5044
|
+
color: var(--wx-input-font-color);
|
|
5045
|
+
background-color: transparent;
|
|
5046
|
+
outline: none;
|
|
5047
|
+
}
|
|
5048
|
+
.wx-digit.wx-7f497i:focus {
|
|
5049
|
+
border-bottom: var(--wx-input-border-focus);
|
|
5050
|
+
}
|
|
5051
|
+
.wx-separator.wx-7f497i {
|
|
5052
|
+
font-size: 24px;
|
|
5053
|
+
line-height: 38px;
|
|
5054
|
+
}
|
|
5055
|
+
.wx-modal.wx-KgpO9N {
|
|
5056
|
+
position: absolute;
|
|
5057
|
+
z-index: var(--wx-modal-z-index);
|
|
5058
|
+
top: 0;
|
|
5059
|
+
left: 0;
|
|
5060
|
+
width: 100%;
|
|
5061
|
+
height: 100%;
|
|
5062
|
+
background: var(--wx-modal-backdrop);
|
|
5063
|
+
display: flex;
|
|
5064
|
+
align-items: center;
|
|
5065
|
+
justify-content: center;
|
|
5066
|
+
}
|
|
5067
|
+
.wx-window.wx-KgpO9N {
|
|
5068
|
+
background: var(--wx-modal-background);
|
|
5069
|
+
box-shadow: var(--wx-modal-shadow);
|
|
5070
|
+
border: var(--wx-modal-border);
|
|
5071
|
+
border-radius: var(--wx-modal-border-radius);
|
|
5072
|
+
min-width: var(--wx-modal-width);
|
|
5073
|
+
}
|
|
5074
|
+
.wx-sidearea.wx-2L733M {
|
|
5075
|
+
position: absolute;
|
|
5076
|
+
z-index: var(--wx-popup-z-index);
|
|
5077
|
+
background: var(--wx-modal-background);
|
|
5078
|
+
box-shadow: var(--wx-modal-shadow);
|
|
5079
|
+
border: var(--wx-modal-border);
|
|
5080
|
+
border-radius: var(--wx-modal-border-radius);
|
|
5081
|
+
min-width: var(--wx-modal-width);
|
|
5082
|
+
height: 100vh;
|
|
5083
|
+
}
|
|
5084
|
+
.wx-sidearea.wx-pos-right.wx-2L733M {
|
|
5085
|
+
right: 0;
|
|
5086
|
+
top: 0;
|
|
5087
|
+
}
|
|
5088
|
+
@font-face {
|
|
5089
|
+
font-family: Roboto;
|
|
5090
|
+
font-style: normal;
|
|
5091
|
+
font-weight: 400;
|
|
5092
|
+
src:
|
|
5093
|
+
local(""),
|
|
5094
|
+
url(https://cdn.webix.com/fonts/roboto/regular.woff2) format("woff2"),
|
|
5095
|
+
url(https://cdn.webix.com/fonts/roboto/regular.woff) format("woff");
|
|
5096
|
+
}
|
|
5097
|
+
@font-face {
|
|
5098
|
+
font-family: Roboto;
|
|
5099
|
+
font-style: normal;
|
|
5100
|
+
font-weight: 500;
|
|
5101
|
+
src:
|
|
5102
|
+
local(""),
|
|
5103
|
+
url(https://cdn.webix.com/fonts/roboto/500.woff2) format("woff2"),
|
|
5104
|
+
url(https://cdn.webix.com/fonts/roboto/500.woff) format("woff");
|
|
5105
|
+
}
|
|
5106
|
+
.wx-material-theme {
|
|
5107
|
+
--wx-color-primary: #2f77e3;
|
|
5108
|
+
--wx-color-primary-selected: #d5e6ff;
|
|
5109
|
+
--wx-color-primary-font: #fff;
|
|
5110
|
+
--wx-color-secondary: rgba(0, 0, 0, .04);
|
|
5111
|
+
--wx-color-secondary-hover: rgba(0, 0, 0, .1);
|
|
5112
|
+
--wx-color-secondary-font: rgba(0, 0, 0, .7);
|
|
5113
|
+
--wx-color-secondary-font-hover: rgba(0, 0, 0, .7);
|
|
5114
|
+
--wx-color-secondary-border: transparent;
|
|
5115
|
+
--wx-color-secondary-border-disabled: transparent;
|
|
5116
|
+
--wx-color-success: #00d19a;
|
|
5117
|
+
--wx-color-warning: #ffc975;
|
|
5118
|
+
--wx-color-info: #37a9ef;
|
|
5119
|
+
--wx-color-danger: #ff5252;
|
|
5120
|
+
--wx-color-disabled: #ededed;
|
|
5121
|
+
--wx-color-disabled-alt: #e9e9e9;
|
|
5122
|
+
--wx-color-font: rgba(0, 0, 0, .7);
|
|
5123
|
+
--wx-color-font-alt: rgba(0, 0, 0, .5);
|
|
5124
|
+
--wx-color-font-disabled: rgba(0, 0, 0, .3);
|
|
5125
|
+
--wx-color-link: var(--wx-color-primary);
|
|
5126
|
+
--wx-background: #fff;
|
|
5127
|
+
--wx-background-alt: #f7f7f7;
|
|
5128
|
+
--wx-background-hover: linear-gradient( rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .15) 100% );
|
|
5129
|
+
--wx-font-family:
|
|
5130
|
+
Roboto,
|
|
5131
|
+
Arial,
|
|
5132
|
+
Helvetica,
|
|
5133
|
+
sans-serif;
|
|
5134
|
+
--wx-font-size: 14px;
|
|
5135
|
+
--wx-line-height: 20px;
|
|
5136
|
+
--wx-font-size-md: 16px;
|
|
5137
|
+
--wx-line-height-md: 24px;
|
|
5138
|
+
--wx-font-size-hd: 16px;
|
|
5139
|
+
--wx-line-height-hd: 30px;
|
|
5140
|
+
--wx-font-size-sm: 12px;
|
|
5141
|
+
--wx-line-height-sm: 16px;
|
|
5142
|
+
--wx-font-weight: 400;
|
|
5143
|
+
--wx-font-weight-md: 500;
|
|
5144
|
+
--wx-font-weight-b: 700;
|
|
5145
|
+
--wx-icon-color: var(--wx-color-font-alt);
|
|
5146
|
+
--wx-icon-size: var(--wx-line-height);
|
|
5147
|
+
--wx-border: 1px solid #dfdfdf;
|
|
5148
|
+
--wx-border-radius: 2px;
|
|
5149
|
+
--wx-radius-medium: var(--wx-border-radius);
|
|
5150
|
+
--wx-border-light: none;
|
|
5151
|
+
--wx-border-medium: 1px solid #eaedf5;
|
|
5152
|
+
--wx-shadow-light: 0px 4px 20px rgba(44, 47, 60, .12);
|
|
5153
|
+
--wx-shadow-medium: 0px 2px 4px rgba(0, 0, 0, .15);
|
|
5154
|
+
--wx-box-shadow: 0px 2px 4px rgba(0, 0, 0, .15);
|
|
5155
|
+
--wx-box-shadow-strong: 0px 2px 5px rgba(0, 0, 0, .3);
|
|
5156
|
+
--wx-padding: 8px;
|
|
5157
|
+
--wx-field-gutter: 16px;
|
|
5158
|
+
--wx-field-width: 400px;
|
|
5159
|
+
--wx-input-font-family: var(--wx-font-family);
|
|
5160
|
+
--wx-input-font-size: var(--wx-font-size);
|
|
5161
|
+
--wx-input-line-height: var(--wx-line-height);
|
|
5162
|
+
--wx-input-font-weight: var(--wx-font-weight);
|
|
5163
|
+
--wx-input-text-align: left;
|
|
5164
|
+
--wx-input-font-color: var(--wx-color-font);
|
|
5165
|
+
--wx-input-background: var(--wx-background);
|
|
5166
|
+
--wx-input-background-disabled: var(--wx-background);
|
|
5167
|
+
--wx-input-placeholder-color: var(--wx-color-font-alt);
|
|
5168
|
+
--wx-input-border: var(--wx-border);
|
|
5169
|
+
--wx-input-border-focus: 1px solid rgba(0, 0, 0, .5);
|
|
5170
|
+
--wx-input-border-disabled: 1px solid var(--wx-color-disabled);
|
|
5171
|
+
--wx-input-border-radius: var(--wx-border-radius);
|
|
5172
|
+
--wx-input-height: 32px;
|
|
5173
|
+
--wx-input-width: 100%;
|
|
5174
|
+
--wx-input-padding: 5px 8px;
|
|
5175
|
+
--wx-input-icon-indent: 6px;
|
|
5176
|
+
--wx-input-icon-color: var(--wx-icon-color);
|
|
5177
|
+
--wx-input-icon-size: var(--wx-icon-size);
|
|
5178
|
+
--wx-multicombo-tag-gap: 4px;
|
|
5179
|
+
--wx-multicombo-tag-border: none;
|
|
5180
|
+
--wx-multicombo-tag-border-radius: var(--wx-input-border-radius);
|
|
5181
|
+
--wx-multicombo-tag-pading: 2px 8px;
|
|
5182
|
+
--wx-multicombo-tag-background: var(--wx-background-alt);
|
|
5183
|
+
--wx-checkbox-height: var(--wx-line-height);
|
|
5184
|
+
--wx-checkbox-size: 18px;
|
|
5185
|
+
--wx-checkbox-border-width: 2px;
|
|
5186
|
+
--wx-checkbox-border-color: var(--wx-color-font-alt);
|
|
5187
|
+
--wx-checkbox-border-color-disabled: var(--wx-color-font-disabled);
|
|
5188
|
+
--wx-checkbox-border-radius: var(--wx-input-border-radius);
|
|
5189
|
+
--wx-checkbox-font-family: var(--wx-font-family);
|
|
5190
|
+
--wx-checkbox-font-size: var(--wx-font-size);
|
|
5191
|
+
--wx-checkbox-line-height: var(--wx-line-height);
|
|
5192
|
+
--wx-checkbox-font-weight: var(--wx-font-weight);
|
|
5193
|
+
--wx-checkbox-font-color: var(--wx-color-font);
|
|
5194
|
+
--wx-label-width: 80px;
|
|
5195
|
+
--wx-label-margin: 0 0 8px;
|
|
5196
|
+
--wx-label-padding: 0;
|
|
5197
|
+
--wx-label-font-family: var(--wx-font-family);
|
|
5198
|
+
--wx-label-font-size: var(--wx-font-size);
|
|
5199
|
+
--wx-label-line-height: var(--wx-line-height);
|
|
5200
|
+
--wx-label-font-weight: var(--wx-font-weight-md);
|
|
5201
|
+
--wx-label-font-color: var(--wx-color-font);
|
|
5202
|
+
--wx-button-font-family: var(--wx-font-family);
|
|
5203
|
+
--wx-button-font-size: var(--wx-font-size);
|
|
5204
|
+
--wx-button-line-height: var(--wx-line-height);
|
|
5205
|
+
--wx-button-font-weight: var(--wx-font-weight-md);
|
|
5206
|
+
--wx-button-text-transform: none;
|
|
5207
|
+
--wx-button-font-color: var(--wx-color-font);
|
|
5208
|
+
--wx-button-danger-font-color: #fff;
|
|
5209
|
+
--wx-button-background: var(--wx-background-alt);
|
|
5210
|
+
--wx-button-border: 1px solid transparent;
|
|
5211
|
+
--wx-button-border-radius: var(--wx-border-radius);
|
|
5212
|
+
--wx-button-height: 32px;
|
|
5213
|
+
--wx-button-padding: 5px 20px;
|
|
5214
|
+
--wx-button-icon-indent: 7px;
|
|
5215
|
+
--wx-button-icon-size: 16px;
|
|
5216
|
+
--wx-button-pressed: rgba(0, 0, 0, .16);
|
|
5217
|
+
--wx-button-danger-pressed: #cc4242;
|
|
5218
|
+
--wx-button-primary-pressed: #265fb6;
|
|
5219
|
+
--wx-button-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, .56) inset, 2px 2px 3px 1px rgba(0, 0, 0, .12) inset;
|
|
5220
|
+
--wx-button-primary-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, .26) inset, 2px 2px 3px 1px rgba(0, 0, 0, .16) inset;
|
|
5221
|
+
--wx-segmented-background: var(--wx-background-alt);
|
|
5222
|
+
--wx-segmented-background-hover: var(--wx-background-hover);
|
|
5223
|
+
--wx-segmented-border: var(--wx-border);
|
|
5224
|
+
--wx-segmented-border-radius: var(--wx-border-radius);
|
|
5225
|
+
--wx-segmented-padding: 3px;
|
|
5226
|
+
--wx-tabs-background: var(--wx-background-alt);
|
|
5227
|
+
--wx-tabs-background-hover: var(--wx-background-hover);
|
|
5228
|
+
--wx-tabs-hover-border: transparent;
|
|
5229
|
+
--wx-tabs-border-width: 1px;
|
|
5230
|
+
--wx-tabs-border-radius: var(--wx-border-radius);
|
|
5231
|
+
--wx-tabs-divider-width: 1px;
|
|
5232
|
+
--wx-tabs-divider-height: 100%;
|
|
5233
|
+
--wx-tabs-divider-color: #dfdfdf;
|
|
5234
|
+
--wx-tabs-cell-min-width: 100px;
|
|
5235
|
+
--wx-tabs-active-background: var(--wx-color-primary);
|
|
5236
|
+
--wx-tabs-active-color: var(--wx-color-primary-font);
|
|
5237
|
+
--wx-tabs-active-border: transparent;
|
|
5238
|
+
--wx-slider-height: 16px;
|
|
5239
|
+
--wx-slider-primary: var(--wx-color-primary);
|
|
5240
|
+
--wx-slider-background: #dfdfdf;
|
|
5241
|
+
--wx-slider-track-height: 4px;
|
|
5242
|
+
--wx-slider-track-border-radius: 2px;
|
|
5243
|
+
--wx-slider-thumb-size: var(--wx-slider-height);
|
|
5244
|
+
--wx-slider-thumb-border: 2px solid var(--wx-background);
|
|
5245
|
+
--wx-slider-thumb-border-disabled: none;
|
|
5246
|
+
--wx-slider-thumb-shadow: var(--wx-box-shadow-strong);
|
|
5247
|
+
--wx-slider-label-margin: 0 0 5px;
|
|
5248
|
+
--wx-slider-label-font-family: var(--wx-font-family);
|
|
5249
|
+
--wx-slider-label-font-size: var(--wx-font-size);
|
|
5250
|
+
--wx-slider-label-line-height: var(--wx-line-height);
|
|
5251
|
+
--wx-slider-label-font-weight: var(--wx-font-weight-md);
|
|
5252
|
+
--wx-slider-label-font-color: var(--wx-color-font);
|
|
5253
|
+
--wx-switch-primary: var(--wx-color-primary);
|
|
5254
|
+
--wx-switch-background: rgba(0, 0, 0, .3);
|
|
5255
|
+
--wx-switch-width: 44px;
|
|
5256
|
+
--wx-switch-height: 22px;
|
|
5257
|
+
--wx-switch-border-width: 1px;
|
|
5258
|
+
--wx-switch-border-color: transparent;
|
|
5259
|
+
--wx-switch-border-color-disabled: #dfdfdf;
|
|
5260
|
+
--wx-switch-thumb-offset: 1px;
|
|
5261
|
+
--wx-switch-thumb-border: none;
|
|
5262
|
+
--wx-switch-thumb-border-disabled: none;
|
|
5263
|
+
--wx-switch-thumb-background: var(--wx-background);
|
|
5264
|
+
--wx-switch-thumb-background-disabled: var(--wx-background);
|
|
5265
|
+
--wx-switch-thumb-shadow: var(--wx-box-shadow-strong);
|
|
5266
|
+
--wx-popup-z-index: 100;
|
|
5267
|
+
--wx-popup-background: var(--wx-background);
|
|
5268
|
+
--wx-popup-shadow: var(--wx-shadow-light);
|
|
5269
|
+
--wx-popup-border: none;
|
|
5270
|
+
--wx-popup-border-radius: var(--wx-border-radius);
|
|
5271
|
+
--wx-modal-z-index: 1000;
|
|
5272
|
+
--wx-modal-background: var(--wx-background);
|
|
5273
|
+
--wx-modal-shadow: var(--wx-shadow-medium);
|
|
5274
|
+
--wx-modal-border: none;
|
|
5275
|
+
--wx-modal-border-radius: var(--wx-border-radius);
|
|
5276
|
+
--wx-modal-width: 280px;
|
|
5277
|
+
--wx-modal-padding: 16px 20px;
|
|
5278
|
+
--wx-modal-gutter: 14px;
|
|
5279
|
+
--wx-modal-backdrop: rgba(0, 0, 0, .5);
|
|
5280
|
+
--wx-modal-header-font-family: var(--wx-font-family);
|
|
5281
|
+
--wx-modal-header-font-size: var(--wx-font-size-hd);
|
|
5282
|
+
--wx-modal-header-line-height: var(--wx-line-height-hd);
|
|
5283
|
+
--wx-modal-header-font-weight: var(--wx-font-weight);
|
|
5284
|
+
--wx-modal-header-font-color: #000;
|
|
5285
|
+
--wx-notice-z-index: 1010;
|
|
5286
|
+
--wx-notice-background: var(--wx-background);
|
|
5287
|
+
--wx-notice-shadow: var(--wx-shadow-medium);
|
|
5288
|
+
--wx-notice-border: none;
|
|
5289
|
+
--wx-notice-border-radius: var(--wx-border-radius);
|
|
5290
|
+
--wx-notice-margin: 6px 12px;
|
|
5291
|
+
--wx-notice-font-family: var(--wx-font-family);
|
|
5292
|
+
--wx-notice-font-size: var(--wx-font-size);
|
|
5293
|
+
--wx-notice-line-height: var(--wx-line-height);
|
|
5294
|
+
--wx-notice-font-weight: var(--wx-font-weight);
|
|
5295
|
+
--wx-notice-font-color: var(--wx-color-font);
|
|
5296
|
+
--wx-notice-padding: var(--wx-padding);
|
|
5297
|
+
--wx-notice-width: 240px;
|
|
5298
|
+
--wx-notice-icon-size: var(--wx-icon-size);
|
|
5299
|
+
--wx-notice-icon-color: var(--wx-icon-color);
|
|
5300
|
+
--wx-notice-type-border-width: 0px;
|
|
5301
|
+
--wx-notice-type-border-color: transparent;
|
|
5302
|
+
--wx-notice-type-font-color: #fff;
|
|
5303
|
+
--wx-notice-type-icon-color: rgba(255, 255, 255, .8);
|
|
5304
|
+
--wx-notice-type-background-opacity: 1;
|
|
5305
|
+
--wx-notice-type-close-hover-opacity: .3;
|
|
5306
|
+
--wx-calendar-padding: 16px;
|
|
5307
|
+
--wx-calendar-cell-size: 32px;
|
|
5308
|
+
--wx-calendar-gap: 4px;
|
|
5309
|
+
--wx-calendar-line-gap: 0px;
|
|
5310
|
+
--wx-calendar-border-radius: var(--wx-calendar-cell-size);
|
|
5311
|
+
--wx-calendar-font-family: var(--wx-font-family);
|
|
5312
|
+
--wx-calendar-font-size: var(--wx-font-size);
|
|
5313
|
+
--wx-calendar-line-height: var(--wx-line-height);
|
|
5314
|
+
--wx-calendar-font-weight: var(--wx-font-weight);
|
|
5315
|
+
--wx-calendar-font-color: var(--wx-color-font);
|
|
5316
|
+
--wx-calendar-icon-color: var(--wx-icon-color);
|
|
5317
|
+
--wx-calendar-icon-size: var(--wx-icon-size);
|
|
5318
|
+
--wx-calendar-header-font-size: var(--wx-font-size);
|
|
5319
|
+
--wx-calendar-header-line-height: var(--wx-line-height);
|
|
5320
|
+
--wx-calendar-header-font-weight: var(--wx-font-weight-md);
|
|
5321
|
+
--wx-calendar-controls-font-family: var(--wx-button-font-family);
|
|
5322
|
+
--wx-calendar-controls-font-size: var(--wx-button-font-size);
|
|
5323
|
+
--wx-calendar-controls-line-height: var(--wx-button-line-height);
|
|
5324
|
+
--wx-calendar-controls-font-weight: var(--wx-button-font-weight);
|
|
5325
|
+
--wx-calendar-controls-font-color: var(--wx-color-link);
|
|
5326
|
+
}
|
|
5327
|
+
.wx-material-theme {
|
|
5328
|
+
font-family: var(--wx-font-family);
|
|
5329
|
+
font-size: var(--wx-font-size);
|
|
5330
|
+
line-height: var(--wx-line-height);
|
|
5331
|
+
font-weight: var(--wx-font-weight);
|
|
5332
|
+
font-style: normal;
|
|
5333
|
+
letter-spacing: normal;
|
|
5334
|
+
text-align: left;
|
|
5335
|
+
color: var(--wx-color-font);
|
|
5336
|
+
background: var(--wx-background);
|
|
5337
|
+
}
|
|
5338
|
+
.wx-material-theme *,
|
|
5339
|
+
.wx-material-theme *:before,
|
|
5340
|
+
.wx-material-theme *:after {
|
|
5341
|
+
box-sizing: border-box;
|
|
5342
|
+
}
|
|
5343
|
+
@font-face {
|
|
5344
|
+
font-family: Open Sans;
|
|
5345
|
+
font-style: normal;
|
|
5346
|
+
font-weight: 500;
|
|
5347
|
+
src:
|
|
5348
|
+
local(""),
|
|
5349
|
+
url(https://cdn.webix.com/fonts/open-sans/500.woff2) format("woff2"),
|
|
5350
|
+
url(https://cdn.webix.com/fonts/open-sans/500.woff) format("woff");
|
|
5351
|
+
}
|
|
5352
|
+
@font-face {
|
|
5353
|
+
font-family: Open Sans;
|
|
5354
|
+
font-style: normal;
|
|
5355
|
+
font-weight: 400;
|
|
5356
|
+
src:
|
|
5357
|
+
local(""),
|
|
5358
|
+
url(https://cdn.webix.com/fonts/open-sans/regular.woff2) format("woff2"),
|
|
5359
|
+
url(https://cdn.webix.com/fonts/open-sans/regular.woff) format("woff");
|
|
5360
|
+
}
|
|
5361
|
+
@font-face {
|
|
5362
|
+
font-family: Open Sans;
|
|
5363
|
+
font-style: normal;
|
|
5364
|
+
font-weight: 600;
|
|
5365
|
+
src:
|
|
5366
|
+
local(""),
|
|
5367
|
+
url(https://cdn.webix.com/fonts/open-sans/600.woff2) format("woff2"),
|
|
5368
|
+
url(https://cdn.webix.com/fonts/open-sans/600.woff) format("woff");
|
|
5369
|
+
}
|
|
5370
|
+
@font-face {
|
|
5371
|
+
font-family: Open Sans;
|
|
5372
|
+
font-style: normal;
|
|
5373
|
+
font-weight: 700;
|
|
5374
|
+
src:
|
|
5375
|
+
local(""),
|
|
5376
|
+
url(https://cdn.webix.com/fonts/open-sans/700.woff2) format("woff2"),
|
|
5377
|
+
url(https://cdn.webix.com/fonts/open-sans/700.woff) format("woff");
|
|
5378
|
+
}
|
|
5379
|
+
.wx-willow-theme {
|
|
5380
|
+
--wx-color-primary: #37a9ef;
|
|
5381
|
+
--wx-color-primary-selected: #d5eaf7;
|
|
5382
|
+
--wx-color-primary-font: #fff;
|
|
5383
|
+
--wx-color-secondary: transparent;
|
|
5384
|
+
--wx-color-secondary-hover: rgba(55, 169, 239, .12);
|
|
5385
|
+
--wx-color-secondary-font: var(--wx-color-primary);
|
|
5386
|
+
--wx-color-secondary-font-hover: var(--wx-color-primary);
|
|
5387
|
+
--wx-color-secondary-border: var(--wx-color-primary);
|
|
5388
|
+
--wx-color-secondary-border-disabled: #c0c3ce;
|
|
5389
|
+
--wx-color-success: #77d257;
|
|
5390
|
+
--wx-color-warning: #fcba2e;
|
|
5391
|
+
--wx-color-info: #37a9ef;
|
|
5392
|
+
--wx-color-danger: #fe6158;
|
|
5393
|
+
--wx-color-disabled: #f2f3f7;
|
|
5394
|
+
--wx-color-disabled-alt: #e9e9e9;
|
|
5395
|
+
--wx-color-font: #2c2f3c;
|
|
5396
|
+
--wx-color-font-alt: #9fa1ae;
|
|
5397
|
+
--wx-color-font-disabled: #c0c3ce;
|
|
5398
|
+
--wx-color-link: var(--wx-color-primary);
|
|
5399
|
+
--wx-background: #ffffff;
|
|
5400
|
+
--wx-background-alt: #f2f3f7;
|
|
5401
|
+
--wx-background-hover: #eaedf5;
|
|
5402
|
+
--wx-font-family:
|
|
5403
|
+
"Open Sans",
|
|
5404
|
+
Arial,
|
|
5405
|
+
Helvetica,
|
|
5406
|
+
sans-serif;
|
|
5407
|
+
--wx-font-size: 14px;
|
|
5408
|
+
--wx-line-height: 20px;
|
|
5409
|
+
--wx-font-size-md: 14px;
|
|
5410
|
+
--wx-line-height-md: 24px;
|
|
5411
|
+
--wx-font-size-hd: 16px;
|
|
5412
|
+
--wx-line-height-hd: 30px;
|
|
5413
|
+
--wx-font-size-sm: 12px;
|
|
5414
|
+
--wx-line-height-sm: 16px;
|
|
5415
|
+
--wx-font-weight: 400;
|
|
5416
|
+
--wx-font-weight-md: 600;
|
|
5417
|
+
--wx-font-weight-b: 700;
|
|
5418
|
+
--wx-icon-color: #9fa1ae;
|
|
5419
|
+
--wx-icon-size: var(--wx-line-height);
|
|
5420
|
+
--wx-button-pressed: #d7dde3;
|
|
5421
|
+
--wx-button-danger-pressed: #cb4e46;
|
|
5422
|
+
--wx-button-primary-pressed: #098cdc;
|
|
5423
|
+
--wx-button-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, .56) inset, 2px 2px 3px 1px rgba(0, 0, 0, .12) inset;
|
|
5424
|
+
--wx-button-primary-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, .26) inset, 2px 2px 3px 1px rgba(0, 0, 0, .16) inset;
|
|
5425
|
+
--wx-border: 1px solid #e6e6e6;
|
|
5426
|
+
--wx-border-radius: 3px;
|
|
5427
|
+
--wx-radius-major: 6px;
|
|
5428
|
+
--wx-border-light: none;
|
|
5429
|
+
--wx-border-medium: 1px solid #eaedf5;
|
|
5430
|
+
--wx-shadow-light: 0px 3px 10px 0px rgba(44, 47, 60, .12), 0px 1px 2px 0px rgba(44, 47, 60, .06);
|
|
5431
|
+
--wx-shadow-medium: 0px 4px 20px 0px rgba(44, 47, 60, .12);
|
|
5432
|
+
--wx-box-shadow: 0px 1px 2px rgba(44, 47, 60, .06), 0px 3px 10px rgba(44, 47, 60, .12);
|
|
5433
|
+
--wx-box-shadow-strong: 0px 4px 20px rgba(44, 47, 60, .16);
|
|
5434
|
+
--wx-padding: 8px;
|
|
5435
|
+
--wx-field-gutter: 16px;
|
|
5436
|
+
--wx-field-width: 400px;
|
|
5437
|
+
--wx-input-font-family: var(--wx-font-family);
|
|
5438
|
+
--wx-input-font-size: var(--wx-font-size);
|
|
5439
|
+
--wx-input-line-height: var(--wx-line-height);
|
|
5440
|
+
--wx-input-font-weight: var(--wx-font-weight);
|
|
5441
|
+
--wx-input-text-align: left;
|
|
5442
|
+
--wx-input-font-color: var(--wx-color-font);
|
|
5443
|
+
--wx-input-background: var(--wx-background);
|
|
5444
|
+
--wx-input-background-disabled: var(--wx-color-disabled);
|
|
5445
|
+
--wx-input-placeholder-color: var(--wx-color-font-alt);
|
|
5446
|
+
--wx-input-border: var(--wx-border);
|
|
5447
|
+
--wx-input-border-focus: 1px solid var(--wx-color-primary);
|
|
5448
|
+
--wx-input-border-disabled: var(--wx-border);
|
|
5449
|
+
--wx-input-border-radius: 3px;
|
|
5450
|
+
--wx-input-height: 32px;
|
|
5451
|
+
--wx-input-width: 100%;
|
|
5452
|
+
--wx-input-padding: 5px 8px;
|
|
5453
|
+
--wx-input-icon-indent: 6px;
|
|
5454
|
+
--wx-input-icon-color: var(--wx-icon-color);
|
|
5455
|
+
--wx-input-icon-size: var(--wx-icon-size);
|
|
5456
|
+
--wx-multicombo-tag-gap: 3px;
|
|
5457
|
+
--wx-multicombo-tag-border: none;
|
|
5458
|
+
--wx-multicombo-tag-border-radius: var(--wx-input-border-radius);
|
|
5459
|
+
--wx-multicombo-tag-pading: 2px 8px;
|
|
5460
|
+
--wx-multicombo-tag-background: var(--wx-background-alt);
|
|
5461
|
+
--wx-checkbox-height: var(--wx-line-height);
|
|
5462
|
+
--wx-checkbox-size: var(--wx-checkbox-height);
|
|
5463
|
+
--wx-checkbox-border-width: 2px;
|
|
5464
|
+
--wx-checkbox-border-color: var(--wx-color-font-alt);
|
|
5465
|
+
--wx-checkbox-border-color-disabled: var(--wx-color-disabled);
|
|
5466
|
+
--wx-checkbox-border-radius: var(--wx-input-border-radius);
|
|
5467
|
+
--wx-checkbox-font-family: var(--wx-font-family);
|
|
5468
|
+
--wx-checkbox-font-size: var(--wx-font-size);
|
|
5469
|
+
--wx-checkbox-line-height: var(--wx-line-height);
|
|
5470
|
+
--wx-checkbox-font-weight: var(--wx-font-weight);
|
|
5471
|
+
--wx-checkbox-font-color: var(--wx-color-font);
|
|
5472
|
+
--wx-label-width: 100px;
|
|
5473
|
+
--wx-label-margin: 0 0 4px;
|
|
5474
|
+
--wx-label-padding: 0;
|
|
5475
|
+
--wx-label-font-family: var(--wx-font-family);
|
|
5476
|
+
--wx-label-font-size: var(--wx-font-size);
|
|
5477
|
+
--wx-label-line-height: var(--wx-line-height);
|
|
5478
|
+
--wx-label-font-weight: var(--wx-font-weight-md);
|
|
5479
|
+
--wx-label-font-color: var(--wx-color-font);
|
|
5480
|
+
--wx-button-font-family: var(--wx-font-family);
|
|
5481
|
+
--wx-button-font-size: var(--wx-font-size-md);
|
|
5482
|
+
--wx-button-line-height: var(--wx-line-height);
|
|
5483
|
+
--wx-button-font-weight: var(--wx-font-weight-md);
|
|
5484
|
+
--wx-button-text-transform: none;
|
|
5485
|
+
--wx-button-font-color: var(--wx-color-font);
|
|
5486
|
+
--wx-button-danger-font-color: #fff;
|
|
5487
|
+
--wx-button-background: var(--wx-background-alt);
|
|
5488
|
+
--wx-button-border: 1px solid transparent;
|
|
5489
|
+
--wx-button-border-radius: var(--wx-border-radius);
|
|
5490
|
+
--wx-button-height: 32px;
|
|
5491
|
+
--wx-button-padding: 5px 16px;
|
|
5492
|
+
--wx-button-icon-indent: 5px;
|
|
5493
|
+
--wx-button-icon-size: 20px;
|
|
5494
|
+
--wx-segmented-background: var(--wx-background-alt);
|
|
5495
|
+
--wx-segmented-background-hover: var(--wx-background-hover);
|
|
5496
|
+
--wx-segmented-border: none;
|
|
5497
|
+
--wx-segmented-border-radius: 6px;
|
|
5498
|
+
--wx-segmented-padding: 0px;
|
|
5499
|
+
--wx-tabs-background: var(--wx-background);
|
|
5500
|
+
--wx-tabs-background-hover: transparent;
|
|
5501
|
+
--wx-tabs-hover-border: #9fa1ae;
|
|
5502
|
+
--wx-tabs-border-width: 1px;
|
|
5503
|
+
--wx-tabs-border-radius: var(--wx-border-radius);
|
|
5504
|
+
--wx-tabs-divider-width: 1px;
|
|
5505
|
+
--wx-tabs-divider-height: 60%;
|
|
5506
|
+
--wx-tabs-divider-color: transparent;
|
|
5507
|
+
--wx-tabs-cell-min-width: 100px;
|
|
5508
|
+
--wx-tabs-active-background: transparent;
|
|
5509
|
+
--wx-tabs-active-color: var(--wx-color-primary);
|
|
5510
|
+
--wx-tabs-active-border: var(--wx-tabs-active-color);
|
|
5511
|
+
--wx-slider-height: 14px;
|
|
5512
|
+
--wx-slider-primary: var(--wx-color-primary);
|
|
5513
|
+
--wx-slider-background: var(--wx-background-alt);
|
|
5514
|
+
--wx-slider-track-height: 4px;
|
|
5515
|
+
--wx-slider-track-border-radius: 2px;
|
|
5516
|
+
--wx-slider-thumb-size: var(--wx-slider-height);
|
|
5517
|
+
--wx-slider-thumb-border: none;
|
|
5518
|
+
--wx-slider-thumb-border-disabled: none;
|
|
5519
|
+
--wx-slider-thumb-shadow: var(--wx-box-shadow-strong);
|
|
5520
|
+
--wx-slider-label-margin: 0 0 5px;
|
|
5521
|
+
--wx-slider-label-font-family: var(--wx-font-family);
|
|
5522
|
+
--wx-slider-label-font-size: var(--wx-font-size);
|
|
5523
|
+
--wx-slider-label-line-height: var(--wx-line-height);
|
|
5524
|
+
--wx-slider-label-font-weight: var(--wx-font-weight-md);
|
|
5525
|
+
--wx-slider-label-font-color: var(--wx-color-font);
|
|
5526
|
+
--wx-switch-primary: var(--wx-color-primary);
|
|
5527
|
+
--wx-switch-background: #9fa1ae;
|
|
5528
|
+
--wx-switch-width: 48px;
|
|
5529
|
+
--wx-switch-height: 24px;
|
|
5530
|
+
--wx-switch-border-width: 0px;
|
|
5531
|
+
--wx-switch-border-color: transparent;
|
|
5532
|
+
--wx-switch-border-color-disabled: transparent;
|
|
5533
|
+
--wx-switch-thumb-offset: 1px;
|
|
5534
|
+
--wx-switch-thumb-border: none;
|
|
5535
|
+
--wx-switch-thumb-border-disabled: 1px solid #c0c3ce;
|
|
5536
|
+
--wx-switch-thumb-background: var(--wx-background);
|
|
5537
|
+
--wx-switch-thumb-background-disabled: var(--wx-color-disabled);
|
|
5538
|
+
--wx-switch-thumb-shadow: none;
|
|
5539
|
+
--wx-popup-z-index: 100;
|
|
5540
|
+
--wx-popup-background: var(--wx-background);
|
|
5541
|
+
--wx-popup-shadow: var(--wx-shadow-light);
|
|
5542
|
+
--wx-popup-border: 1px solid transparent;
|
|
5543
|
+
--wx-popup-border-radius: var(--wx-border-radius);
|
|
5544
|
+
--wx-modal-z-index: 1000;
|
|
5545
|
+
--wx-modal-background: var(--wx-background);
|
|
5546
|
+
--wx-modal-shadow: var(--wx-shadow-medium);
|
|
5547
|
+
--wx-modal-border: none;
|
|
5548
|
+
--wx-modal-border-radius: var(--wx-border-radius);
|
|
5549
|
+
--wx-modal-width: 280px;
|
|
5550
|
+
--wx-modal-padding: 16px 20px;
|
|
5551
|
+
--wx-modal-gutter: 14px;
|
|
5552
|
+
--wx-modal-backdrop: rgba(108, 114, 131, .2);
|
|
5553
|
+
--wx-modal-header-font-family: var(--wx-font-family);
|
|
5554
|
+
--wx-modal-header-font-size: var(--wx-font-size-hd);
|
|
5555
|
+
--wx-modal-header-line-height: var(--wx-line-height-hd);
|
|
5556
|
+
--wx-modal-header-font-weight: var(--wx-font-weight-b);
|
|
5557
|
+
--wx-modal-header-font-color: #000;
|
|
5558
|
+
--wx-notice-z-index: 1010;
|
|
5559
|
+
--wx-notice-background: var(--wx-background);
|
|
5560
|
+
--wx-notice-shadow: var(--wx-shadow-medium);
|
|
5561
|
+
--wx-notice-border: none;
|
|
5562
|
+
--wx-notice-border-radius: 0 var(--wx-border-radius) var(--wx-border-radius) 0;
|
|
5563
|
+
--wx-notice-margin: 6px 12px;
|
|
5564
|
+
--wx-notice-font-family: var(--wx-font-family);
|
|
5565
|
+
--wx-notice-font-size: var(--wx-font-size);
|
|
5566
|
+
--wx-notice-line-height: var(--wx-line-height);
|
|
5567
|
+
--wx-notice-font-weight: var(--wx-font-weight);
|
|
5568
|
+
--wx-notice-font-color: var(--wx-color-font);
|
|
5569
|
+
--wx-notice-padding: 14px;
|
|
5570
|
+
--wx-notice-width: 240px;
|
|
5571
|
+
--wx-notice-icon-size: var(--wx-icon-size);
|
|
5572
|
+
--wx-notice-icon-color: var(--wx-icon-color);
|
|
5573
|
+
--wx-notice-type-border-width: 4px;
|
|
5574
|
+
--wx-notice-type-border-color: var(--wx-icon-color);
|
|
5575
|
+
--wx-notice-type-font-color: var(--wx-color-font);
|
|
5576
|
+
--wx-notice-type-icon-color: var(--wx-icon-color);
|
|
5577
|
+
--wx-notice-type-background-opacity: 0;
|
|
5578
|
+
--wx-notice-type-close-hover-opacity: 1;
|
|
5579
|
+
--wx-calendar-padding: 16px;
|
|
5580
|
+
--wx-calendar-cell-size: 32px;
|
|
5581
|
+
--wx-calendar-gap: 4px;
|
|
5582
|
+
--wx-calendar-line-gap: 4px;
|
|
5583
|
+
--wx-calendar-border-radius: var(--wx-border-radius);
|
|
5584
|
+
--wx-calendar-font-family: var(--wx-font-family);
|
|
5585
|
+
--wx-calendar-font-size: var(--wx-font-size);
|
|
5586
|
+
--wx-calendar-line-height: var(--wx-line-height);
|
|
5587
|
+
--wx-calendar-font-weight: var(--wx-font-weight);
|
|
5588
|
+
--wx-calendar-font-color: var(--wx-color-font);
|
|
5589
|
+
--wx-calendar-icon-color: var(--wx-icon-color);
|
|
5590
|
+
--wx-calendar-icon-size: var(--wx-icon-size);
|
|
5591
|
+
--wx-calendar-header-font-size: var(--wx-font-size);
|
|
5592
|
+
--wx-calendar-header-line-height: var(--wx-line-height);
|
|
5593
|
+
--wx-calendar-header-font-weight: var(--wx-font-weight-md);
|
|
5594
|
+
--wx-calendar-controls-font-family: var(--wx-button-font-family);
|
|
5595
|
+
--wx-calendar-controls-font-size: var(--wx-font-size);
|
|
5596
|
+
--wx-calendar-controls-line-height: var(--wx-line-height);
|
|
5597
|
+
--wx-calendar-controls-font-weight: var(--wx-font-weight);
|
|
5598
|
+
--wx-calendar-controls-font-color: var(--wx-color-font);
|
|
5599
|
+
}
|
|
5600
|
+
.wx-willow-theme {
|
|
5601
|
+
font-family: var(--wx-font-family);
|
|
5602
|
+
font-size: var(--wx-font-size);
|
|
5603
|
+
line-height: var(--wx-line-height);
|
|
5604
|
+
font-weight: var(--wx-font-weight);
|
|
5605
|
+
font-style: normal;
|
|
5606
|
+
letter-spacing: normal;
|
|
5607
|
+
text-align: left;
|
|
5608
|
+
color: var(--wx-color-font);
|
|
5609
|
+
background: var(--wx-background);
|
|
5610
|
+
}
|
|
5611
|
+
.wx-willow-theme *,
|
|
5612
|
+
.wx-willow-theme *:before,
|
|
5613
|
+
.wx-willow-theme *:after {
|
|
5614
|
+
box-sizing: border-box;
|
|
5615
|
+
}
|
|
5616
|
+
.wx-willow-dark-theme {
|
|
5617
|
+
--wx-color-primary: #7a67eb;
|
|
5618
|
+
--wx-color-primary-selected: rgba(122, 103, 235, .3);
|
|
5619
|
+
--wx-color-primary-font: #fff;
|
|
5620
|
+
--wx-color-secondary: transparent;
|
|
5621
|
+
--wx-color-secondary-hover: rgba(122, 103, 235, .12);
|
|
5622
|
+
--wx-color-secondary-font: var(--wx-color-primary);
|
|
5623
|
+
--wx-color-secondary-font-hover: var(--wx-color-primary);
|
|
5624
|
+
--wx-color-secondary-border: var(--wx-color-primary);
|
|
5625
|
+
--wx-color-secondary-border-disabled: #9fa1ae;
|
|
5626
|
+
--wx-color-success: #77d257;
|
|
5627
|
+
--wx-color-warning: #fcba2e;
|
|
5628
|
+
--wx-color-info: var(--wx-color-primary);
|
|
5629
|
+
--wx-color-danger: #fe6158;
|
|
5630
|
+
--wx-color-disabled: #384047;
|
|
5631
|
+
--wx-color-disabled-alt: #44474a;
|
|
5632
|
+
--wx-color-font: rgba(255, 255, 255, .9);
|
|
5633
|
+
--wx-color-font-alt: #9fa1ae;
|
|
5634
|
+
--wx-color-font-disabled: #9fa1ae;
|
|
5635
|
+
--wx-color-link: var(--wx-color-primary);
|
|
5636
|
+
--wx-background: #2a2b2d;
|
|
5637
|
+
--wx-background-alt: #384047;
|
|
5638
|
+
--wx-background-hover: #20262b;
|
|
5639
|
+
--wx-font-family:
|
|
5640
|
+
"Open Sans",
|
|
5641
|
+
Arial,
|
|
5642
|
+
Helvetica,
|
|
5643
|
+
sans-serif;
|
|
5644
|
+
--wx-font-size: 14px;
|
|
5645
|
+
--wx-line-height: 20px;
|
|
5646
|
+
--wx-font-size-md: 14px;
|
|
5647
|
+
--wx-line-height-md: 24px;
|
|
5648
|
+
--wx-font-size-hd: 16px;
|
|
5649
|
+
--wx-line-height-hd: 30px;
|
|
5650
|
+
--wx-font-size-sm: 12px;
|
|
5651
|
+
--wx-line-height-sm: 16px;
|
|
5652
|
+
--wx-font-weight: 400;
|
|
5653
|
+
--wx-font-weight-md: 600;
|
|
5654
|
+
--wx-font-weight-b: 700;
|
|
5655
|
+
--wx-icon-color: #c0c3ce;
|
|
5656
|
+
--wx-icon-size: var(--wx-line-height);
|
|
5657
|
+
--wx-border: 1px solid #384047;
|
|
5658
|
+
--wx-border-radius: 3px;
|
|
5659
|
+
--wx-radius-major: 6px;
|
|
5660
|
+
--wx-border-light: 1px solid #384047;
|
|
5661
|
+
--wx-border-medium: 1px solid #384047;
|
|
5662
|
+
--wx-shadow-light: 0px 4px 20px 0px rgba(44, 47, 60, .12);
|
|
5663
|
+
--wx-shadow-medium: none;
|
|
5664
|
+
--wx-box-shadow: 0px 4px 48px rgba(44, 47, 60, .18);
|
|
5665
|
+
--wx-box-shadow-strong: 0px 4px 48px rgba(44, 47, 60, .18), 0px 4px 8px rgba(14, 14, 15, .3);
|
|
5666
|
+
--wx-padding: 8px;
|
|
5667
|
+
--wx-field-gutter: 16px;
|
|
5668
|
+
--wx-field-width: 400px;
|
|
5669
|
+
--wx-input-font-family: var(--wx-font-family);
|
|
5670
|
+
--wx-input-font-size: var(--wx-font-size);
|
|
5671
|
+
--wx-input-line-height: var(--wx-line-height);
|
|
5672
|
+
--wx-input-font-weight: var(--wx-font-weight);
|
|
5673
|
+
--wx-input-text-align: left;
|
|
5674
|
+
--wx-input-font-color: var(--wx-color-font);
|
|
5675
|
+
--wx-input-background: var(--wx-background);
|
|
5676
|
+
--wx-input-background-disabled: var(--wx-color-disabled);
|
|
5677
|
+
--wx-input-placeholder-color: var(--wx-color-font-alt);
|
|
5678
|
+
--wx-input-border: var(--wx-border);
|
|
5679
|
+
--wx-input-border-focus: 1px solid var(--wx-color-primary);
|
|
5680
|
+
--wx-input-border-disabled: var(--wx-border);
|
|
5681
|
+
--wx-input-border-radius: 3px;
|
|
5682
|
+
--wx-input-height: 32px;
|
|
5683
|
+
--wx-input-width: 100%;
|
|
5684
|
+
--wx-input-padding: 5px 8px;
|
|
5685
|
+
--wx-input-icon-indent: 6px;
|
|
5686
|
+
--wx-input-icon-color: var(--wx-icon-color);
|
|
5687
|
+
--wx-input-icon-size: var(--wx-icon-size);
|
|
5688
|
+
--wx-multicombo-tag-gap: 3px;
|
|
5689
|
+
--wx-multicombo-tag-border: none;
|
|
5690
|
+
--wx-multicombo-tag-border-radius: var(--wx-input-border-radius);
|
|
5691
|
+
--wx-multicombo-tag-pading: 2px 8px;
|
|
5692
|
+
--wx-multicombo-tag-background: var(--wx-background-alt);
|
|
5693
|
+
--wx-checkbox-height: var(--wx-line-height);
|
|
5694
|
+
--wx-checkbox-size: var(--wx-checkbox-height);
|
|
5695
|
+
--wx-checkbox-border-width: 2px;
|
|
5696
|
+
--wx-checkbox-border-color: var(--wx-color-font-alt);
|
|
5697
|
+
--wx-checkbox-border-color-disabled: var(--wx-color-disabled);
|
|
5698
|
+
--wx-checkbox-border-radius: var(--wx-input-border-radius);
|
|
5699
|
+
--wx-checkbox-font-family: var(--wx-font-family);
|
|
5700
|
+
--wx-checkbox-font-size: var(--wx-font-size);
|
|
5701
|
+
--wx-checkbox-line-height: var(--wx-line-height);
|
|
5702
|
+
--wx-checkbox-font-weight: var(--wx-font-weight);
|
|
5703
|
+
--wx-checkbox-font-color: var(--wx-color-font);
|
|
5704
|
+
--wx-label-width: 100px;
|
|
5705
|
+
--wx-label-margin: 0 0 4px;
|
|
5706
|
+
--wx-label-padding: 0;
|
|
5707
|
+
--wx-label-font-family: var(--wx-font-family);
|
|
5708
|
+
--wx-label-font-size: var(--wx-font-size);
|
|
5709
|
+
--wx-label-line-height: var(--wx-line-height);
|
|
5710
|
+
--wx-label-font-weight: var(--wx-font-weight-md);
|
|
5711
|
+
--wx-label-font-color: var(--wx-color-font);
|
|
5712
|
+
--wx-button-font-family: var(--wx-font-family);
|
|
5713
|
+
--wx-button-font-size: var(--wx-font-size-md);
|
|
5714
|
+
--wx-button-line-height: var(--wx-line-height);
|
|
5715
|
+
--wx-button-font-weight: var(--wx-font-weight-md);
|
|
5716
|
+
--wx-button-text-transform: none;
|
|
5717
|
+
--wx-button-background: var(--wx-background-alt);
|
|
5718
|
+
--wx-button-font-color: var(--wx-color-font);
|
|
5719
|
+
--wx-button-danger-font-color: #fff;
|
|
5720
|
+
--wx-button-border: 1px solid transparent;
|
|
5721
|
+
--wx-button-border-radius: var(--wx-border-radius);
|
|
5722
|
+
--wx-button-height: 32px;
|
|
5723
|
+
--wx-button-padding: 5px 16px;
|
|
5724
|
+
--wx-button-icon-indent: 5px;
|
|
5725
|
+
--wx-button-icon-size: 20px;
|
|
5726
|
+
--wx-button-pressed: #353d44;
|
|
5727
|
+
--wx-button-danger-pressed: #cb4e46;
|
|
5728
|
+
--wx-button-primary-pressed: #5643c7;
|
|
5729
|
+
--wx-button-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, .06) inset, 2px 2px 3px 1px rgba(0, 0, 0, .16) inset;
|
|
5730
|
+
--wx-button-primary-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, .12) inset, 2px 2px 3px 1px rgba(0, 0, 0, .2) inset;
|
|
5731
|
+
--wx-segmented-background: var(--wx-background-alt);
|
|
5732
|
+
--wx-segmented-background-hover: var(--wx-background-hover);
|
|
5733
|
+
--wx-segmented-border: none;
|
|
5734
|
+
--wx-segmented-border-radius: 6px;
|
|
5735
|
+
--wx-segmented-padding: 0px;
|
|
5736
|
+
--wx-tabs-background: var(--wx-background);
|
|
5737
|
+
--wx-tabs-background-hover: transparent;
|
|
5738
|
+
--wx-tabs-hover-border: #9fa1ae;
|
|
5739
|
+
--wx-tabs-border-width: 1px;
|
|
5740
|
+
--wx-tabs-border-radius: var(--wx-border-radius);
|
|
5741
|
+
--wx-tabs-divider-width: 1px;
|
|
5742
|
+
--wx-tabs-divider-height: 60%;
|
|
5743
|
+
--wx-tabs-divider-color: transparent;
|
|
5744
|
+
--wx-tabs-cell-min-width: 100px;
|
|
5745
|
+
--wx-tabs-active-background: transparent;
|
|
5746
|
+
--wx-tabs-active-color: var(--wx-color-primary);
|
|
5747
|
+
--wx-tabs-active-border: var(--wx-tabs-active-color);
|
|
5748
|
+
--wx-slider-height: 14px;
|
|
5749
|
+
--wx-slider-primary: var(--wx-color-primary);
|
|
5750
|
+
--wx-slider-background: var(--wx-background-alt);
|
|
5751
|
+
--wx-slider-track-height: 4px;
|
|
5752
|
+
--wx-slider-track-border-radius: 2px;
|
|
5753
|
+
--wx-slider-thumb-size: var(--wx-slider-height);
|
|
5754
|
+
--wx-slider-thumb-border: none;
|
|
5755
|
+
--wx-slider-thumb-border-disabled: 1px solid var(--wx-color-disabled);
|
|
5756
|
+
--wx-slider-thumb-shadow: none;
|
|
5757
|
+
--wx-slider-label-margin: 0 0 5px;
|
|
5758
|
+
--wx-slider-label-font-family: var(--wx-font-family);
|
|
5759
|
+
--wx-slider-label-font-size: var(--wx-font-size);
|
|
5760
|
+
--wx-slider-label-line-height: var(--wx-line-height);
|
|
5761
|
+
--wx-slider-label-font-weight: var(--wx-font-weight-md);
|
|
5762
|
+
--wx-slider-label-font-color: var(--wx-color-font);
|
|
5763
|
+
--wx-switch-primary: var(--wx-color-primary);
|
|
5764
|
+
--wx-switch-background: #384047;
|
|
5765
|
+
--wx-switch-width: 48px;
|
|
5766
|
+
--wx-switch-height: 24px;
|
|
5767
|
+
--wx-switch-border-width: 0px;
|
|
5768
|
+
--wx-switch-border-color: transparent;
|
|
5769
|
+
--wx-switch-border-color-disabled: transparent;
|
|
5770
|
+
--wx-switch-thumb-offset: 1px;
|
|
5771
|
+
--wx-switch-thumb-border: none;
|
|
5772
|
+
--wx-switch-thumb-border-disabled: 1px solid rgba(255, 255, 255, .7);
|
|
5773
|
+
--wx-switch-thumb-background: rgba(255, 255, 255, .9);
|
|
5774
|
+
--wx-switch-thumb-background-disabled: var(--wx-color-disabled);
|
|
5775
|
+
--wx-switch-thumb-shadow: none;
|
|
5776
|
+
--wx-popup-z-index: 100;
|
|
5777
|
+
--wx-popup-background: var(--wx-background);
|
|
5778
|
+
--wx-popup-shadow: var(--wx-shadow-light);
|
|
5779
|
+
--wx-popup-border: 1px solid rgba(255, 255, 255, .26);
|
|
5780
|
+
--wx-popup-border-radius: var(--wx-border-radius);
|
|
5781
|
+
--wx-modal-z-index: 1000;
|
|
5782
|
+
--wx-modal-background: var(--wx-background);
|
|
5783
|
+
--wx-modal-shadow: var(--wx-shadow-medium);
|
|
5784
|
+
--wx-modal-border: 1px solid #ffffff42;
|
|
5785
|
+
--wx-modal-border-radius: var(--wx-border-radius);
|
|
5786
|
+
--wx-modal-width: 280px;
|
|
5787
|
+
--wx-modal-padding: 16px 20px;
|
|
5788
|
+
--wx-modal-gutter: 14px;
|
|
5789
|
+
--wx-modal-backdrop: rgba(108, 114, 131, .2);
|
|
5790
|
+
--wx-modal-header-font-family: var(--wx-font-family);
|
|
5791
|
+
--wx-modal-header-font-size: var(--wx-font-size-hd);
|
|
5792
|
+
--wx-modal-header-line-height: var(--wx-line-height-hd);
|
|
5793
|
+
--wx-modal-header-font-weight: var(--wx-font-weight-b);
|
|
5794
|
+
--wx-modal-header-font-color: #fff;
|
|
5795
|
+
--wx-notice-z-index: 1010;
|
|
5796
|
+
--wx-notice-background: var(--wx-background-alt);
|
|
5797
|
+
--wx-notice-shadow: var(--wx-shadow-medium);
|
|
5798
|
+
--wx-notice-border: none;
|
|
5799
|
+
--wx-notice-border-radius: 0 var(--wx-border-radius) var(--wx-border-radius) 0;
|
|
5800
|
+
--wx-notice-margin: 6px 12px;
|
|
5801
|
+
--wx-notice-font-family: var(--wx-font-family);
|
|
5802
|
+
--wx-notice-font-size: var(--wx-font-size);
|
|
5803
|
+
--wx-notice-line-height: var(--wx-line-height);
|
|
5804
|
+
--wx-notice-font-weight: var(--wx-font-weight);
|
|
5805
|
+
--wx-notice-font-color: var(--wx-color-font);
|
|
5806
|
+
--wx-notice-padding: 14px;
|
|
5807
|
+
--wx-notice-width: 240px;
|
|
5808
|
+
--wx-notice-icon-size: var(--wx-icon-size);
|
|
5809
|
+
--wx-notice-icon-color: var(--wx-icon-color);
|
|
5810
|
+
--wx-notice-type-border-width: 4px;
|
|
5811
|
+
--wx-notice-type-border-color: var(--wx-icon-color);
|
|
5812
|
+
--wx-notice-type-font-color: var(--wx-color-font);
|
|
5813
|
+
--wx-notice-type-icon-color: #9fa1ae;
|
|
5814
|
+
--wx-notice-type-background-opacity: 0;
|
|
5815
|
+
--wx-notice-type-close-hover-opacity: 1;
|
|
5816
|
+
--wx-calendar-padding: 16px;
|
|
5817
|
+
--wx-calendar-cell-size: 32px;
|
|
5818
|
+
--wx-calendar-gap: 4px;
|
|
5819
|
+
--wx-calendar-line-gap: 4px;
|
|
5820
|
+
--wx-calendar-border-radius: var(--wx-border-radius);
|
|
5821
|
+
--wx-calendar-font-family: var(--wx-font-family);
|
|
5822
|
+
--wx-calendar-font-size: var(--wx-font-size);
|
|
5823
|
+
--wx-calendar-line-height: var(--wx-line-height);
|
|
5824
|
+
--wx-calendar-font-weight: var(--wx-font-weight);
|
|
5825
|
+
--wx-calendar-font-color: var(--wx-color-font);
|
|
5826
|
+
--wx-calendar-icon-color: var(--wx-icon-color);
|
|
5827
|
+
--wx-calendar-icon-size: var(--wx-icon-size);
|
|
5828
|
+
--wx-calendar-header-font-size: var(--wx-font-size);
|
|
5829
|
+
--wx-calendar-header-line-height: var(--wx-line-height);
|
|
5830
|
+
--wx-calendar-header-font-weight: var(--wx-font-weight-md);
|
|
5831
|
+
--wx-calendar-controls-font-family: var(--wx-button-font-family);
|
|
5832
|
+
--wx-calendar-controls-font-size: var(--wx-font-size);
|
|
5833
|
+
--wx-calendar-controls-line-height: var(--wx-line-height);
|
|
5834
|
+
--wx-calendar-controls-font-weight: var(--wx-font-weight);
|
|
5835
|
+
--wx-calendar-controls-font-color: var(--wx-color-font);
|
|
5836
|
+
}
|
|
5837
|
+
.wx-willow-dark-theme {
|
|
5838
|
+
font-family: var(--wx-font-family);
|
|
5839
|
+
font-size: var(--wx-font-size);
|
|
5840
|
+
line-height: var(--wx-line-height);
|
|
5841
|
+
font-weight: var(--wx-font-weight);
|
|
5842
|
+
font-style: normal;
|
|
5843
|
+
letter-spacing: normal;
|
|
5844
|
+
text-align: left;
|
|
5845
|
+
color: var(--wx-color-font);
|
|
5846
|
+
background: var(--wx-background);
|
|
5847
|
+
}
|
|
5848
|
+
.wx-willow-dark-theme *,
|
|
5849
|
+
.wx-willow-dark-theme *:before,
|
|
5850
|
+
.wx-willow-dark-theme *:after {
|
|
5851
|
+
box-sizing: border-box;
|
|
5852
|
+
}
|
|
5853
|
+
.wx-option.wx-cDCz9rZQ {
|
|
5854
|
+
display: flex;
|
|
5855
|
+
align-items: center;
|
|
5856
|
+
box-sizing: border-box;
|
|
5857
|
+
height: 36px;
|
|
5858
|
+
line-height: 36px;
|
|
5859
|
+
padding: 2px 12px;
|
|
5860
|
+
font-family: var(--wx-font-family);
|
|
5861
|
+
font-weight: var(--wx-font-weight);
|
|
5862
|
+
font-size: var(--wx-font-size);
|
|
5863
|
+
background-color: var(--wx-background);
|
|
5864
|
+
cursor: pointer;
|
|
5865
|
+
}
|
|
5866
|
+
.wx-option.wx-cDCz9rZQ:hover {
|
|
5867
|
+
background: var(--wx-background-alt);
|
|
5868
|
+
}
|
|
5869
|
+
.wx-option.wx-cDCz9rZQ:first-child {
|
|
5870
|
+
border-top-left-radius: inherit;
|
|
5871
|
+
border-top-right-radius: inherit;
|
|
5872
|
+
}
|
|
5873
|
+
.wx-option.wx-cDCz9rZQ:last-child {
|
|
5874
|
+
border-bottom-left-radius: inherit;
|
|
5875
|
+
border-bottom-right-radius: inherit;
|
|
5876
|
+
}
|
|
5877
|
+
.wx-value.wx-cDCz9rZQ {
|
|
5878
|
+
flex-grow: 1;
|
|
5879
|
+
white-space: nowrap;
|
|
5880
|
+
color: var(--wx-color-font);
|
|
5881
|
+
}
|
|
5882
|
+
.wx-icon.wx-cDCz9rZQ,
|
|
5883
|
+
.wx-sub-icon.wx-cDCz9rZQ {
|
|
5884
|
+
vertical-align: middle;
|
|
5885
|
+
height: inherit;
|
|
5886
|
+
line-height: inherit;
|
|
5887
|
+
font-size: var(--wx-icon-size);
|
|
5888
|
+
color: var(--wx-icon-color);
|
|
5889
|
+
}
|
|
5890
|
+
.wx-icon.wx-cDCz9rZQ {
|
|
5891
|
+
margin-right: 8px;
|
|
5892
|
+
}
|
|
5893
|
+
.wx-subtext.wx-cDCz9rZQ {
|
|
5894
|
+
color: var(--wx-color-font-disabled);
|
|
5895
|
+
margin-left: 20px;
|
|
5896
|
+
white-space: nowrap;
|
|
5897
|
+
}
|
|
5898
|
+
.wx-disabled.wx-cDCz9rZQ {
|
|
5899
|
+
pointer-events: none;
|
|
5900
|
+
}
|
|
5901
|
+
.wx-disabled.wx-cDCz9rZQ .wx-value,
|
|
5902
|
+
.wx-disabled.wx-cDCz9rZQ .wx-icon,
|
|
5903
|
+
.wx-disabled.wx-cDCz9rZQ .wx-sub-icon {
|
|
5904
|
+
color: var(--wx-color-font-disabled);
|
|
5905
|
+
}
|
|
5906
|
+
.wx-menu.wx-XMmAGqVx {
|
|
5907
|
+
position: absolute;
|
|
5908
|
+
box-shadow: var(--wx-shadow-light);
|
|
5909
|
+
min-width: 125px;
|
|
5910
|
+
display: flex;
|
|
5911
|
+
flex-direction: column;
|
|
5912
|
+
z-index: 20;
|
|
5913
|
+
border-radius: var(--wx-border-radius);
|
|
5914
|
+
background-color: var(--wx-background);
|
|
5915
|
+
padding: 4px 0;
|
|
5916
|
+
}
|
|
5917
|
+
.wx-separator.wx-XMmAGqVx {
|
|
5918
|
+
width: 100%;
|
|
5919
|
+
border-top: var(--wx-border-medium);
|
|
5920
|
+
}
|
|
5921
|
+
.wx-menubar.wx-UfhPCLL4 {
|
|
5922
|
+
display: flex;
|
|
5923
|
+
position: relative;
|
|
5924
|
+
width: fit-content;
|
|
5925
|
+
}
|
|
5926
|
+
.wx-option.wx-UfhPCLL4 {
|
|
5927
|
+
background-color: transparent;
|
|
5928
|
+
border: none;
|
|
5929
|
+
color: var(--wx-color-font);
|
|
5930
|
+
box-sizing: border-box;
|
|
5931
|
+
height: 36px;
|
|
5932
|
+
line-height: 30px;
|
|
5933
|
+
padding: 2px 12px;
|
|
5934
|
+
font-family: var(--wx-font-family);
|
|
5935
|
+
font-weight: var(--wx-font-weight);
|
|
5936
|
+
font-size: var(--wx-font-size);
|
|
5937
|
+
cursor: pointer;
|
|
5938
|
+
outline: none;
|
|
5939
|
+
white-space: nowrap;
|
|
5940
|
+
}
|
|
5941
|
+
.wx-active.wx-UfhPCLL4,
|
|
5942
|
+
.wx-option.wx-UfhPCLL4:hover {
|
|
5943
|
+
background-color: var(--wx-background-alt);
|
|
5944
|
+
border-radius: var(--wx-button-border-radius);
|
|
5945
|
+
}
|
|
5946
|
+
.wx-disabled.wx-UfhPCLL4 {
|
|
5947
|
+
pointer-events: none;
|
|
5948
|
+
color: var(--wx-color-font-disabled);
|
|
5949
|
+
}
|
|
5950
|
+
.wx-sections.wx-s2aE1xdZ {
|
|
5951
|
+
text-align: left;
|
|
5952
|
+
--wx-field-width: 600px;
|
|
5953
|
+
margin: 12px 20px 0;
|
|
5954
|
+
}
|
|
5955
|
+
.wx-message.wx-s2aE1xdZ {
|
|
5956
|
+
margin-top: calc(var(--wx-field-gutter) * -1);
|
|
5957
|
+
font-size: 12px;
|
|
5958
|
+
line-height: var(--wx-field-gutter);
|
|
5959
|
+
color: var(--wx-color-danger);
|
|
5960
|
+
width: inherit;
|
|
5961
|
+
}
|
|
5962
|
+
.wx-overlay.wx-s2aE1xdZ {
|
|
5963
|
+
font-weight: 600;
|
|
5964
|
+
}
|
|
5965
|
+
.wx-content.wx-H902AF2Y {
|
|
5966
|
+
height: 100%;
|
|
5967
|
+
overflow-y: auto;
|
|
5968
|
+
}
|
|
5969
|
+
.wx-cols.wx-bNrSbszs {
|
|
5970
|
+
max-height: 100%;
|
|
5971
|
+
display: flex;
|
|
5972
|
+
flex-direction: row;
|
|
5973
|
+
justify-content: space-between;
|
|
5974
|
+
}
|
|
5975
|
+
.wx-left.wx-bNrSbszs {
|
|
5976
|
+
min-width: 640px;
|
|
5977
|
+
overflow-y: auto;
|
|
5978
|
+
}
|
|
5979
|
+
.wx-right.wx-bNrSbszs {
|
|
5980
|
+
width: 364px;
|
|
5981
|
+
min-height: 400px;
|
|
5982
|
+
margin-left: 30px;
|
|
5983
|
+
background: var(--wx-background-alt);
|
|
5984
|
+
overflow-y: auto;
|
|
5985
|
+
}
|
|
5986
|
+
.wx-editor-toolbar.wx-66OW1j0R {
|
|
5987
|
+
padding: 0 20px;
|
|
5988
|
+
}
|
|
5989
|
+
.wx-editor-toolbar .toolbar {
|
|
5990
|
+
padding: 0;
|
|
5991
|
+
gap: 4px;
|
|
5992
|
+
}
|
|
5993
|
+
.wx-editor-toolbar .toolbar .tb-element {
|
|
5994
|
+
padding: 0;
|
|
5995
|
+
}
|
|
5996
|
+
.wx-topbar.wx-66OW1j0R {
|
|
5997
|
+
margin-bottom: 10px;
|
|
5998
|
+
}
|
|
5999
|
+
.wx-bottom.wx-66OW1j0R {
|
|
6000
|
+
margin-top: 10px;
|
|
6001
|
+
}
|
|
6002
|
+
.wx-panel.wx-85HDaNoA {
|
|
6003
|
+
padding: 16px 0;
|
|
6004
|
+
max-height: 100vh;
|
|
6005
|
+
display: grid;
|
|
6006
|
+
height: 100%;
|
|
6007
|
+
grid-template-rows: auto 1fr;
|
|
6008
|
+
}
|
|
6009
|
+
.wx-content.wx-85HDaNoA {
|
|
6010
|
+
height: 100%;
|
|
6011
|
+
overflow-y: auto;
|
|
6012
|
+
}
|
|
6013
|
+
.wx-inline-form.wx-85HDaNoA,
|
|
6014
|
+
.wx-inline-form.wx-85HDaNoA .wx-content.wx-85HDaNoA {
|
|
6015
|
+
overflow: visible;
|
|
6016
|
+
}
|
|
6017
|
+
.wx-content.wx-layout-columns.wx-85HDaNoA {
|
|
6018
|
+
overflow-y: hidden;
|
|
6019
|
+
display: grid;
|
|
6020
|
+
grid-template-rows: minmax(0, auto) 1fr;
|
|
6021
|
+
}
|
|
6022
|
+
.wx-panel.wx-Ps8Vyc31 {
|
|
6023
|
+
padding: 16px 0;
|
|
6024
|
+
max-height: 100vh;
|
|
6025
|
+
display: grid;
|
|
6026
|
+
height: 100%;
|
|
6027
|
+
grid-template-rows: auto 1fr;
|
|
6028
|
+
}
|
|
6029
|
+
.wx-content.wx-Ps8Vyc31 {
|
|
6030
|
+
height: 100%;
|
|
6031
|
+
overflow-y: auto;
|
|
6032
|
+
}
|
|
6033
|
+
.wx-inline-form.wx-Ps8Vyc31,
|
|
6034
|
+
.wx-inline-form.wx-Ps8Vyc31 .wx-content {
|
|
6035
|
+
overflow: visible;
|
|
6036
|
+
}
|
|
6037
|
+
.wx-content.wx-layout-columns.wx-Ps8Vyc31 {
|
|
6038
|
+
overflow-y: hidden;
|
|
6039
|
+
display: grid;
|
|
6040
|
+
grid-template-rows: minmax(0, auto) 1fr;
|
|
6041
|
+
}
|
|
6042
|
+
.wx-sidearea {
|
|
6043
|
+
position: fixed !important;
|
|
6044
|
+
}
|
|
6045
|
+
.wx-section.wx-OmgQq65I {
|
|
6046
|
+
position: relative;
|
|
6047
|
+
border-bottom: 1px solid #ccc;
|
|
6048
|
+
cursor: pointer;
|
|
6049
|
+
padding: 6px;
|
|
6050
|
+
}
|
|
6051
|
+
.wx-section-active.wx-OmgQq65I {
|
|
6052
|
+
background-color: var(--wx-background-alt);
|
|
6053
|
+
padding-bottom: 0;
|
|
6054
|
+
margin-bottom: 10px;
|
|
6055
|
+
}
|
|
6056
|
+
.wx-section.wx-OmgQq65I .wx-icon.wx-OmgQq65I {
|
|
6057
|
+
position: absolute;
|
|
6058
|
+
right: 10px;
|
|
6059
|
+
top: 20px;
|
|
6060
|
+
font-size: 25px;
|
|
6061
|
+
}
|
|
6062
|
+
.wx-z1qpqrvg.wx-separator {
|
|
6063
|
+
width: 1px;
|
|
6064
|
+
min-height: 100%;
|
|
6065
|
+
border-left: 1px solid rgba(0, 0, 0, .07);
|
|
6066
|
+
border-right: var(--wx-border);
|
|
6067
|
+
margin: 6px 4px;
|
|
6068
|
+
box-sizing: border-box;
|
|
6069
|
+
}
|
|
6070
|
+
.wx-column > .wx-tb-body > .wx-z1qpqrvg.wx-separator,
|
|
6071
|
+
.wx-z1qpqrvg.wx-separator-menu {
|
|
6072
|
+
height: 1px;
|
|
6073
|
+
width: 100%;
|
|
6074
|
+
border-top: var(--wx-border-medium);
|
|
6075
|
+
align-self: center;
|
|
6076
|
+
}
|
|
6077
|
+
.wx-spacer.wx-1IhFzpJV {
|
|
6078
|
+
flex-grow: 1;
|
|
6079
|
+
}
|
|
6080
|
+
.wx-spacer.wx-KVAsgMam {
|
|
6081
|
+
flex: 1;
|
|
6082
|
+
}
|
|
6083
|
+
.wx-tb-element.wx-KVAsgMam {
|
|
6084
|
+
padding: 4px;
|
|
6085
|
+
flex-shrink: 0;
|
|
6086
|
+
align-self: center;
|
|
6087
|
+
display: flex;
|
|
6088
|
+
}
|
|
6089
|
+
.wx-menu.wx-tb-element.wx-KVAsgMam {
|
|
6090
|
+
height: 36px;
|
|
6091
|
+
line-height: 36px;
|
|
6092
|
+
padding: 2px 8px;
|
|
6093
|
+
background-color: var(--wx-background);
|
|
6094
|
+
}
|
|
6095
|
+
.wx-menu button {
|
|
6096
|
+
width: 100%;
|
|
6097
|
+
background: transparent;
|
|
6098
|
+
text-align: left;
|
|
6099
|
+
padding-left: 0;
|
|
6100
|
+
font-weight: var(--wx-font-weight);
|
|
6101
|
+
font-size: var(--wx-font-size);
|
|
6102
|
+
}
|
|
6103
|
+
.wx-menu .wx-tb-element {
|
|
6104
|
+
align-self: stretch;
|
|
6105
|
+
}
|
|
6106
|
+
.wx-menu.wx-tb-element button:hover {
|
|
6107
|
+
background: var(--wx-background-alt);
|
|
6108
|
+
}
|
|
6109
|
+
.wx-menu button i {
|
|
6110
|
+
margin-right: 4px;
|
|
6111
|
+
font-size: var(--wx-icon-size);
|
|
6112
|
+
}
|
|
6113
|
+
.wx-menu.wx-tb-element:hover {
|
|
6114
|
+
background: var(--wx-background-alt);
|
|
6115
|
+
}
|
|
6116
|
+
.wx-tb-group.wx-wSVFAGym {
|
|
6117
|
+
position: relative;
|
|
6118
|
+
display: flex;
|
|
6119
|
+
flex-flow: column;
|
|
6120
|
+
}
|
|
6121
|
+
.wx-group-collapsed.wx-wSVFAGym {
|
|
6122
|
+
flex-flow: row;
|
|
6123
|
+
}
|
|
6124
|
+
.wx-collapsed.wx-wSVFAGym {
|
|
6125
|
+
display: flex;
|
|
6126
|
+
padding: 10px;
|
|
6127
|
+
flex-flow: row;
|
|
6128
|
+
cursor: pointer;
|
|
6129
|
+
}
|
|
6130
|
+
.wx-group-collapsed.wx-wSVFAGym .wx-collapsed.wx-wSVFAGym {
|
|
6131
|
+
align-items: center;
|
|
6132
|
+
}
|
|
6133
|
+
.wx-label.wx-wSVFAGym {
|
|
6134
|
+
font-weight: var(--wx-label-font-weight);
|
|
6135
|
+
font-size: var(--wx-font-size-sm);
|
|
6136
|
+
color: var(--wx-color-font);
|
|
6137
|
+
text-align: center;
|
|
6138
|
+
display: flex;
|
|
6139
|
+
padding: 4px 2px 4px 12px;
|
|
6140
|
+
align-items: center;
|
|
6141
|
+
justify-content: center;
|
|
6142
|
+
width: 100%;
|
|
6143
|
+
}
|
|
6144
|
+
.wx-tb-group .wx-dropdown {
|
|
6145
|
+
overflow: inherit;
|
|
6146
|
+
}
|
|
6147
|
+
.wx-column.wx-wSVFAGym {
|
|
6148
|
+
align-items: stretch;
|
|
6149
|
+
}
|
|
6150
|
+
.wx-column .wx-tb-element {
|
|
6151
|
+
align-self: stretch;
|
|
6152
|
+
}
|
|
6153
|
+
.wx-tb-body.wx-wSVFAGym {
|
|
6154
|
+
height: 100%;
|
|
6155
|
+
display: flex;
|
|
6156
|
+
}
|
|
6157
|
+
.wx-column.wx-wSVFAGym > .wx-tb-body.wx-wSVFAGym {
|
|
6158
|
+
flex-flow: column;
|
|
6159
|
+
}
|
|
6160
|
+
.wx-menu.wx-Yo6BuX0p {
|
|
6161
|
+
position: absolute;
|
|
6162
|
+
overflow: visible;
|
|
6163
|
+
padding: 4px;
|
|
6164
|
+
right: 4px;
|
|
6165
|
+
}
|
|
6166
|
+
.wx-menu.wx-Yo6BuX0p .wx-dropdown {
|
|
6167
|
+
overflow: visible;
|
|
6168
|
+
}
|
|
6169
|
+
.wx-drop-menu.wx-Yo6BuX0p {
|
|
6170
|
+
padding: 4px;
|
|
6171
|
+
}
|
|
6172
|
+
.wx-toolbar.wx-VdPSJj8y {
|
|
6173
|
+
width: 100%;
|
|
6174
|
+
flex-wrap: nowrap;
|
|
6175
|
+
display: flex;
|
|
6176
|
+
align-items: stretch;
|
|
6177
|
+
padding: 4px;
|
|
6178
|
+
position: relative;
|
|
6179
|
+
}
|
|
6180
|
+
.wx-toolbar.wx-wrap.wx-VdPSJj8y {
|
|
6181
|
+
flex-wrap: wrap;
|
|
6182
|
+
}
|
|
6183
|
+
i.wx-HXpG4gnx {
|
|
6184
|
+
margin-right: 8px;
|
|
6185
|
+
font-size: var(--wx-button-icon-size);
|
|
6186
|
+
color: var(--wx-icon-color);
|
|
6187
|
+
}
|
|
6188
|
+
.wx-item.wx-HXpG4gnx {
|
|
6189
|
+
cursor: pointer;
|
|
6190
|
+
white-space: nowrap;
|
|
6191
|
+
line-height: 26px;
|
|
6192
|
+
}
|
|
6193
|
+
.wx-label.wx-PTEZGYcj {
|
|
6194
|
+
width: auto;
|
|
6195
|
+
font-weight: var(--wx-label-font-weight);
|
|
6196
|
+
color: var(--wx-input-font-color);
|
|
6197
|
+
padding: var(--wx-input-padding);
|
|
6198
|
+
overflow: hidden;
|
|
6199
|
+
}
|
|
6200
|
+
i.wx-3cuSqONJ {
|
|
6201
|
+
margin-right: 8px;
|
|
6202
|
+
font-size: var(--wx-icon-size);
|
|
6203
|
+
color: var(--wx-color-font);
|
|
6204
|
+
}
|
|
6205
|
+
.wx-item.wx-3cuSqONJ {
|
|
6206
|
+
cursor: pointer;
|
|
6207
|
+
white-space: nowrap;
|
|
6208
|
+
line-height: 36px;
|
|
6209
|
+
height: 36px;
|
|
6210
|
+
box-sizing: border-box;
|
|
6211
|
+
display: flex;
|
|
6212
|
+
align-items: center;
|
|
6213
|
+
}
|
|
6214
|
+
.wx-label.wx-U0Bx7pIR {
|
|
6215
|
+
width: 100%;
|
|
6216
|
+
white-space: nowrap;
|
|
6217
|
+
color: var(--wx-input-font-color);
|
|
6218
|
+
padding: var(--wx-input-padding);
|
|
6219
|
+
overflow: hidden;
|
|
6220
|
+
cursor: pointer;
|
|
6221
|
+
display: flex;
|
|
6222
|
+
align-items: center;
|
|
6223
|
+
}
|
|
6224
|
+
i.wx-U0Bx7pIR {
|
|
6225
|
+
margin-right: 8px;
|
|
6226
|
+
font-size: var(--wx-icon-size);
|
|
6227
|
+
}
|
|
6228
|
+
.wx-label.wx-U0Bx7pIR:hover {
|
|
6229
|
+
background-image: linear-gradient(#0000001a 0% 100%);
|
|
6230
|
+
}
|
|
6231
|
+
.wx-user.wx-cyzBpibr {
|
|
6232
|
+
font-size: 12px;
|
|
6233
|
+
font-weight: 500;
|
|
6234
|
+
line-height: 12px;
|
|
6235
|
+
border-radius: 50%;
|
|
6236
|
+
display: flex;
|
|
6237
|
+
justify-content: center;
|
|
6238
|
+
align-items: center;
|
|
6239
|
+
overflow: hidden;
|
|
6240
|
+
background-color: #ca9cec;
|
|
6241
|
+
color: var(--wx-color-font);
|
|
6242
|
+
}
|
|
6243
|
+
.wx-user.wx-normal.wx-cyzBpibr {
|
|
6244
|
+
width: 36px;
|
|
6245
|
+
height: 36px;
|
|
6246
|
+
font-size: var(--wx-font-size);
|
|
6247
|
+
}
|
|
6248
|
+
.wx-user.wx-small.wx-cyzBpibr {
|
|
6249
|
+
width: 24px;
|
|
6250
|
+
height: 24px;
|
|
6251
|
+
font-size: var(--wx-font-size-sm);
|
|
6252
|
+
}
|
|
6253
|
+
.wx-user.wx-cyzBpibr img {
|
|
6254
|
+
display: block;
|
|
6255
|
+
width: 100%;
|
|
6256
|
+
height: 100%;
|
|
6257
|
+
object-fit: cover;
|
|
6258
|
+
}
|
|
6259
|
+
.wx-user.wx-cyzBpibr:not(:first-child) {
|
|
6260
|
+
margin-left: -15px;
|
|
6261
|
+
}
|
|
6262
|
+
.wx-user.wx-comments-avatar-color-light.wx-cyzBpibr {
|
|
6263
|
+
color: var(--wx-color-primary-font);
|
|
6264
|
+
}
|
|
6265
|
+
.wx-user.wx-comments-avatar-color-dark.wx-cyzBpibr {
|
|
6266
|
+
color: var(--wx-avatar-color-dark);
|
|
6267
|
+
}
|
|
6268
|
+
.wx-comments-textarea.wx-v2rD0VHO {
|
|
6269
|
+
width: 100%;
|
|
6270
|
+
background-color: inherit;
|
|
6271
|
+
display: flex;
|
|
6272
|
+
flex-direction: column;
|
|
6273
|
+
gap: 12px;
|
|
6274
|
+
}
|
|
6275
|
+
.wx-textarea-wrapper.wx-v2rD0VHO {
|
|
6276
|
+
position: relative;
|
|
6277
|
+
display: flex;
|
|
6278
|
+
gap: 8px;
|
|
6279
|
+
}
|
|
6280
|
+
.wx-comments-textarea.wx-flow .wx-textarea-avatar.wx-v2rD0VHO {
|
|
6281
|
+
margin-left: 20px;
|
|
6282
|
+
}
|
|
6283
|
+
.wx-textarea-bottombar.wx-v2rD0VHO {
|
|
6284
|
+
text-align: right;
|
|
6285
|
+
}
|
|
6286
|
+
.wx-textarea-bottombar button {
|
|
6287
|
+
padding: 6px 16px;
|
|
6288
|
+
font-weight: 600;
|
|
6289
|
+
line-height: 20px;
|
|
6290
|
+
}
|
|
6291
|
+
.wx-bubble.wx-aluyyvxH {
|
|
6292
|
+
width: 100%;
|
|
6293
|
+
display: flex;
|
|
6294
|
+
justify-content: end;
|
|
6295
|
+
}
|
|
6296
|
+
.wx-bubble.wx-owned.wx-aluyyvxH {
|
|
6297
|
+
justify-content: start;
|
|
6298
|
+
}
|
|
6299
|
+
.wx-bubble-wrapper.wx-aluyyvxH {
|
|
6300
|
+
width: 65%;
|
|
6301
|
+
display: flex;
|
|
6302
|
+
justify-content: end;
|
|
6303
|
+
gap: 8px;
|
|
6304
|
+
}
|
|
6305
|
+
.wx-aluyyvxH .wx-owned .wx-bubble-wrapper {
|
|
6306
|
+
width: calc(65% + 28px);
|
|
6307
|
+
justify-content: start;
|
|
6308
|
+
}
|
|
6309
|
+
.wx-author-name.wx-aluyyvxH {
|
|
6310
|
+
margin-left: auto;
|
|
6311
|
+
}
|
|
6312
|
+
.wx-aluyyvxH .wx-owned .wx-author-name {
|
|
6313
|
+
margin-left: 0;
|
|
6314
|
+
}
|
|
6315
|
+
.wx-message.wx-aluyyvxH {
|
|
6316
|
+
background-color: var(--wx-comments-msg-background);
|
|
6317
|
+
padding: 8px 12px;
|
|
6318
|
+
white-space: pre-wrap;
|
|
6319
|
+
line-height: 24px;
|
|
6320
|
+
border-radius: 6px 0 6px 6px;
|
|
6321
|
+
width: 100%;
|
|
6322
|
+
display: flex;
|
|
6323
|
+
flex-direction: column;
|
|
6324
|
+
}
|
|
6325
|
+
.wx-aluyyvxH .wx-owned .wx-message {
|
|
6326
|
+
background-color: var(--wx-comments-msg-background-agent);
|
|
6327
|
+
border-radius: 0 6px 6px;
|
|
6328
|
+
width: 100%;
|
|
6329
|
+
}
|
|
6330
|
+
.wx-author-name.wx-aluyyvxH {
|
|
6331
|
+
font-weight: 600;
|
|
6332
|
+
font-size: 14px;
|
|
6333
|
+
line-height: 24px;
|
|
6334
|
+
}
|
|
6335
|
+
.wx-agent-message.wx-aluyyvxH {
|
|
6336
|
+
display: flex;
|
|
6337
|
+
align-items: flex-end;
|
|
6338
|
+
gap: 4px;
|
|
6339
|
+
cursor: pointer;
|
|
6340
|
+
}
|
|
6341
|
+
.wx-menu-icon.wx-aluyyvxH {
|
|
6342
|
+
opacity: 0;
|
|
6343
|
+
height: 24px;
|
|
6344
|
+
color: #9fa1ae;
|
|
6345
|
+
cursor: pointer;
|
|
6346
|
+
height: 100%;
|
|
6347
|
+
}
|
|
6348
|
+
.wx-aluyyvxH .wx-menu-icon i {
|
|
6349
|
+
font-size: 24px;
|
|
6350
|
+
line-height: 24px;
|
|
6351
|
+
}
|
|
6352
|
+
.wx-aluyyvxH .wx-menu-icon:hover {
|
|
6353
|
+
color: var(--wx-color-primary);
|
|
6354
|
+
}
|
|
6355
|
+
.wx-aluyyvxH .wx-agent-message:hover .wx-menu-icon {
|
|
6356
|
+
opacity: 1;
|
|
6357
|
+
transition: all .2s linear;
|
|
6358
|
+
}
|
|
6359
|
+
.wx-main-bubble.wx-aluyyvxH {
|
|
6360
|
+
display: flex;
|
|
6361
|
+
flex-direction: column;
|
|
6362
|
+
gap: 4px;
|
|
6363
|
+
width: 100%;
|
|
6364
|
+
}
|
|
6365
|
+
.wx-avatar.wx-aluyyvxH {
|
|
6366
|
+
height: 32px;
|
|
6367
|
+
width: 32px;
|
|
6368
|
+
}
|
|
6369
|
+
.wx-bubble.wx-aluyyvxH:not(.wx-owned) .wx-bubble-wrapper {
|
|
6370
|
+
flex-direction: row-reverse;
|
|
6371
|
+
}
|
|
6372
|
+
.wx-comment-date.wx-aluyyvxH {
|
|
6373
|
+
font-size: var(--wx-font-size-sm);
|
|
6374
|
+
color: var(--wx-color-font-alt);
|
|
6375
|
+
display: flex;
|
|
6376
|
+
flex-direction: row-reverse;
|
|
6377
|
+
}
|
|
6378
|
+
.wx-flow.wx-N2LqQbZL {
|
|
6379
|
+
width: 100%;
|
|
6380
|
+
padding: 16px 20px;
|
|
6381
|
+
border-radius: 6px;
|
|
6382
|
+
}
|
|
6383
|
+
.wx-flow.wx-owned.wx-N2LqQbZL {
|
|
6384
|
+
background-color: var(--wx-comments-msg-background-agent);
|
|
6385
|
+
}
|
|
6386
|
+
.wx-flow.wx-N2LqQbZL:hover .wx-menu-icon.wx-N2LqQbZL {
|
|
6387
|
+
opacity: 1;
|
|
6388
|
+
transition: all .2s linear;
|
|
6389
|
+
}
|
|
6390
|
+
.wx-flow-toolbar.wx-N2LqQbZL {
|
|
6391
|
+
width: 100%;
|
|
6392
|
+
display: flex;
|
|
6393
|
+
gap: 8px;
|
|
6394
|
+
}
|
|
6395
|
+
.wx-message.wx-N2LqQbZL {
|
|
6396
|
+
margin-left: 32px;
|
|
6397
|
+
line-height: 24px;
|
|
6398
|
+
white-space: pre-wrap;
|
|
6399
|
+
}
|
|
6400
|
+
.wx-author-name.wx-N2LqQbZL {
|
|
6401
|
+
font-weight: 600;
|
|
6402
|
+
font-size: 14px;
|
|
6403
|
+
line-height: 24px;
|
|
6404
|
+
}
|
|
6405
|
+
.wx-menu-icon.wx-N2LqQbZL {
|
|
6406
|
+
color: #9fa1ae;
|
|
6407
|
+
cursor: pointer;
|
|
6408
|
+
margin-left: auto;
|
|
6409
|
+
opacity: 0;
|
|
6410
|
+
height: 24px;
|
|
6411
|
+
}
|
|
6412
|
+
.wx-menu-icon.wx-N2LqQbZL:hover {
|
|
6413
|
+
color: var(--wx-color-primary);
|
|
6414
|
+
}
|
|
6415
|
+
.wx-menu-icon.wx-N2LqQbZL i.wx-N2LqQbZL {
|
|
6416
|
+
font-size: 24px;
|
|
6417
|
+
line-height: 24px;
|
|
6418
|
+
}
|
|
6419
|
+
.wx-comment-date.wx-N2LqQbZL {
|
|
6420
|
+
margin-left: 32px;
|
|
6421
|
+
font-size: var(--wx-font-size-sm);
|
|
6422
|
+
color: var(--wx-color-font-alt);
|
|
6423
|
+
}
|
|
6424
|
+
.wx-messages.wx-6HAxmtjJ {
|
|
6425
|
+
padding: 10px 0;
|
|
6426
|
+
display: flex;
|
|
6427
|
+
flex-direction: column;
|
|
6428
|
+
}
|
|
6429
|
+
.wx-messages.wx-bubbles.wx-6HAxmtjJ {
|
|
6430
|
+
gap: 24px;
|
|
6431
|
+
}
|
|
6432
|
+
.wx-messages.wx-cards.wx-6HAxmtjJ {
|
|
6433
|
+
gap: 16px;
|
|
6434
|
+
}
|
|
6435
|
+
.wx-messages.wx-blocks.wx-6HAxmtjJ {
|
|
6436
|
+
gap: 24px;
|
|
6437
|
+
}
|
|
6438
|
+
.wx-comments-list.wx-8ZGHQX6e {
|
|
6439
|
+
height: 100%;
|
|
6440
|
+
width: 100%;
|
|
6441
|
+
display: flex;
|
|
6442
|
+
flex-direction: column;
|
|
6443
|
+
}
|
|
6444
|
+
.wx-list.wx-8ZGHQX6e {
|
|
6445
|
+
display: flex;
|
|
6446
|
+
flex-direction: column;
|
|
6447
|
+
margin-bottom: 4px;
|
|
6448
|
+
overflow-y: auto;
|
|
6449
|
+
flex: 1;
|
|
6450
|
+
}
|
|
6451
|
+
.wx-willow-theme {
|
|
6452
|
+
--wx-theme-name: willow;
|
|
6453
|
+
--wx-comments-msg-background: #d5eaf7;
|
|
6454
|
+
--wx-comments-msg-background-agent: #f4f5f9;
|
|
6455
|
+
--wx-avatar-color-dark: #2a2b2d;
|
|
6456
|
+
}
|
|
6457
|
+
.wx-willow-dark-theme {
|
|
6458
|
+
--wx-theme-name: willow-dark;
|
|
6459
|
+
--wx-comments-msg-background: rgba(122, 102, 235, .2);
|
|
6460
|
+
--wx-comments-msg-background-agent: #384047;
|
|
6461
|
+
--wx-avatar-color-dark: #2a2b2d;
|
|
6462
|
+
}
|
|
6463
|
+
.wx-task.wx-OQDwWK17 {
|
|
6464
|
+
display: flex;
|
|
6465
|
+
padding: 8px 0 4px;
|
|
6466
|
+
height: fit-content;
|
|
6467
|
+
}
|
|
6468
|
+
.wx-task.wx-OQDwWK17 {
|
|
6469
|
+
border-top: 1px solid var(--wx-color-disabled);
|
|
6470
|
+
}
|
|
6471
|
+
.wx-task.wx-OQDwWK17:last-child {
|
|
6472
|
+
border-bottom: 1px solid var(--wx-color-disabled);
|
|
6473
|
+
}
|
|
6474
|
+
.wx-checkbox-wrapper label span:first-child:before {
|
|
6475
|
+
border-radius: 50%;
|
|
6476
|
+
}
|
|
6477
|
+
.wx-task.wx-done.wx-OQDwWK17 .wx-checkbox-wrapper input:checked ~ label span.wx-before:first-child:before {
|
|
6478
|
+
background: #00d19a;
|
|
6479
|
+
}
|
|
6480
|
+
.wx-wrapper.wx-OQDwWK17 {
|
|
6481
|
+
flex: 1;
|
|
6482
|
+
min-height: 20px;
|
|
6483
|
+
margin-left: 16px;
|
|
6484
|
+
min-height: 30px;
|
|
6485
|
+
height: fit-content;
|
|
6486
|
+
overflow: hidden;
|
|
6487
|
+
margin-top: -5px;
|
|
6488
|
+
}
|
|
6489
|
+
.wx-texarea.wx-OQDwWK17 {
|
|
6490
|
+
display: block;
|
|
6491
|
+
width: 100%;
|
|
6492
|
+
resize: none;
|
|
6493
|
+
outline: none;
|
|
6494
|
+
height: 30px;
|
|
6495
|
+
font-family: var(--wx-input-font-family);
|
|
6496
|
+
font-size: var(--wx-input-font-size);
|
|
6497
|
+
line-height: var(--wx-input-line-height);
|
|
6498
|
+
font-weight: var(--wx-input-font-weigth);
|
|
6499
|
+
text-align: var(--wx-input-text-align);
|
|
6500
|
+
color: var(--wx-input-font-color);
|
|
6501
|
+
border: var(--wx-input-border);
|
|
6502
|
+
border-radius: var(--wx-input-border-radius);
|
|
6503
|
+
background: var(--wx-input-background);
|
|
6504
|
+
padding: var(--wx-input-padding);
|
|
6505
|
+
box-sizing: border-box;
|
|
6506
|
+
word-wrap: break-word;
|
|
6507
|
+
overflow: hidden;
|
|
6508
|
+
}
|
|
6509
|
+
.wx-texarea.wx-OQDwWK17:focus {
|
|
6510
|
+
border: var(--wx-input-border-focus);
|
|
6511
|
+
}
|
|
6512
|
+
.wx-texarea.wx-OQDwWK17::placeholder {
|
|
6513
|
+
color: var(--wx-input-placeholder-color);
|
|
6514
|
+
}
|
|
6515
|
+
.wx-text-wrapper.wx-OQDwWK17 {
|
|
6516
|
+
padding: var(--wx-input-padding);
|
|
6517
|
+
border: var(--wx-input-border);
|
|
6518
|
+
border: 1px solid transparent;
|
|
6519
|
+
border-radius: 3px;
|
|
6520
|
+
width: 100%;
|
|
6521
|
+
min-height: 30px;
|
|
6522
|
+
}
|
|
6523
|
+
.wx-text.wx-OQDwWK17 {
|
|
6524
|
+
word-wrap: break-word;
|
|
6525
|
+
}
|
|
6526
|
+
.wx-done.wx-OQDwWK17 .wx-text.wx-OQDwWK17 {
|
|
6527
|
+
text-decoration: line-through;
|
|
6528
|
+
opacity: .6;
|
|
6529
|
+
}
|
|
6530
|
+
.wx-task.wx-OQDwWK17:hover .wx-icon-close.wx-OQDwWK17 {
|
|
6531
|
+
opacity: 1;
|
|
6532
|
+
}
|
|
6533
|
+
.wx-icon-add.wx-OQDwWK17 {
|
|
6534
|
+
font-size: var(--wx-checkbox-size);
|
|
6535
|
+
color: var(--wx-color-font-alt);
|
|
6536
|
+
}
|
|
6537
|
+
.wx-icon-close.wx-OQDwWK17 {
|
|
6538
|
+
color: var(--wx-color-font-alt);
|
|
6539
|
+
margin-left: 8px;
|
|
6540
|
+
font-size: 20px;
|
|
6541
|
+
height: 20px;
|
|
6542
|
+
width: 20px;
|
|
6543
|
+
opacity: 0;
|
|
6544
|
+
transition: .3s linear;
|
|
6545
|
+
}
|
|
6546
|
+
.wx-icon-close.wx-OQDwWK17 .wxi-close {
|
|
6547
|
+
cursor: pointer;
|
|
6548
|
+
}
|
|
6549
|
+
.wx-icon-close.wx-OQDwWK17 .wxi-close:hover {
|
|
6550
|
+
color: var(--wx-color-danger);
|
|
6551
|
+
}
|
|
6552
|
+
.wx-tasks-list.wx-kro6Nsfl {
|
|
6553
|
+
height: 100%;
|
|
6554
|
+
width: 100%;
|
|
6555
|
+
display: flex;
|
|
6556
|
+
flex-direction: column;
|
|
6557
|
+
}
|
|
6558
|
+
.wx-button.wx-kro6Nsfl {
|
|
6559
|
+
width: 100%;
|
|
6560
|
+
}
|
|
6561
|
+
.wx-list.wx-kro6Nsfl {
|
|
6562
|
+
display: flex;
|
|
6563
|
+
flex-direction: column;
|
|
6564
|
+
margin-bottom: 4px;
|
|
6565
|
+
overflow-y: auto;
|
|
6566
|
+
flex: 1;
|
|
6567
|
+
}
|
|
6568
|
+
.wx-filter-editor.wx-3z8r9Oys {
|
|
6569
|
+
--wx-input-border: var(--wx-filter-border);
|
|
6570
|
+
}
|
|
6571
|
+
.wx-wrapper.wx-3z8r9Oys {
|
|
6572
|
+
display: flex;
|
|
6573
|
+
justify-content: right;
|
|
6574
|
+
gap: 10px;
|
|
6575
|
+
align-items: center;
|
|
6576
|
+
margin: 8px 0;
|
|
6577
|
+
}
|
|
6578
|
+
.wx-cell.wx-3z8r9Oys {
|
|
6579
|
+
flex: 1;
|
|
6580
|
+
}
|
|
6581
|
+
.wx-list.wx-3z8r9Oys {
|
|
6582
|
+
height: 150px;
|
|
6583
|
+
overflow-y: auto;
|
|
6584
|
+
margin: 8px 0;
|
|
6585
|
+
border: var(--wx-filter-border);
|
|
6586
|
+
}
|
|
6587
|
+
.wx-item.wx-3z8r9Oys {
|
|
6588
|
+
-webkit-user-select: none;
|
|
6589
|
+
user-select: none;
|
|
6590
|
+
padding: 8px 12px;
|
|
6591
|
+
border-bottom: var(--wx-filter-border);
|
|
6592
|
+
}
|
|
6593
|
+
.wx-item label > span + span {
|
|
6594
|
+
white-space: nowrap;
|
|
6595
|
+
overflow: hidden;
|
|
6596
|
+
text-overflow: ellipsis;
|
|
6597
|
+
}
|
|
6598
|
+
.wx-panel.wx-uOIGm7Ce {
|
|
6599
|
+
padding-top: 15px;
|
|
6600
|
+
}
|
|
6601
|
+
.wx-rule.wx-5GeVl88l {
|
|
6602
|
+
background: var(--wx-background-alt);
|
|
6603
|
+
border-radius: var(--wx-border-radius);
|
|
6604
|
+
white-space: nowrap;
|
|
6605
|
+
position: relative;
|
|
6606
|
+
display: flex;
|
|
6607
|
+
align-items: center;
|
|
6608
|
+
}
|
|
6609
|
+
.wx-rule.wx-list.wx-5GeVl88l {
|
|
6610
|
+
padding: 12px 8px;
|
|
6611
|
+
margin: 10px 0;
|
|
6612
|
+
}
|
|
6613
|
+
.wx-rule.wx-line.wx-5GeVl88l {
|
|
6614
|
+
height: 36px;
|
|
6615
|
+
padding: 8px;
|
|
6616
|
+
}
|
|
6617
|
+
.wx-field.wx-5GeVl88l {
|
|
6618
|
+
font-weight: var(--wx-font-weight-md);
|
|
6619
|
+
}
|
|
6620
|
+
.wx-filter.wx-5GeVl88l {
|
|
6621
|
+
display: inline-block;
|
|
6622
|
+
max-width: 90%;
|
|
6623
|
+
overflow: hidden;
|
|
6624
|
+
text-overflow: ellipsis;
|
|
6625
|
+
margin-right: 45px;
|
|
6626
|
+
}
|
|
6627
|
+
.wx-value.wx-5GeVl88l {
|
|
6628
|
+
color: var(--wx-filter-value-color);
|
|
6629
|
+
}
|
|
6630
|
+
.wx-menu-icon.wx-5GeVl88l {
|
|
6631
|
+
position: absolute;
|
|
6632
|
+
right: 8px;
|
|
6633
|
+
cursor: pointer;
|
|
6634
|
+
width: var(--wx-line-height);
|
|
6635
|
+
height: var(--wx-line-height);
|
|
6636
|
+
line-height: var(--wx-line-height);
|
|
6637
|
+
text-align: center;
|
|
6638
|
+
border-radius: var(--wx-line-height);
|
|
6639
|
+
}
|
|
6640
|
+
.wx-menu-icon.wxi-dots-h.wx-5GeVl88l {
|
|
6641
|
+
background: var(--wx-background);
|
|
6642
|
+
}
|
|
6643
|
+
.wx-menu-icon.wx-5GeVl88l:hover {
|
|
6644
|
+
background-image: linear-gradient(#0000001a 0% 100%);
|
|
6645
|
+
}
|
|
6646
|
+
.wx-glue.wx-XRdDajFX {
|
|
6647
|
+
cursor: pointer;
|
|
6648
|
+
border-radius: var(--wx-line-height);
|
|
6649
|
+
display: inline-block;
|
|
6650
|
+
line-height: var(--wx-line-height);
|
|
6651
|
+
width: 40px;
|
|
6652
|
+
text-align: center;
|
|
6653
|
+
-webkit-user-select: none;
|
|
6654
|
+
user-select: none;
|
|
6655
|
+
}
|
|
6656
|
+
.wx-glue.wx-XRdDajFX:hover {
|
|
6657
|
+
background-image: linear-gradient(#0000001a 0% 100%);
|
|
6658
|
+
}
|
|
6659
|
+
.wx-and.wx-XRdDajFX {
|
|
6660
|
+
background-color: var(--wx-filter-and-background);
|
|
6661
|
+
color: var(--wx-filter-and-font-color);
|
|
6662
|
+
}
|
|
6663
|
+
.wx-or.wx-XRdDajFX {
|
|
6664
|
+
background-color: var(--wx-filter-or-background);
|
|
6665
|
+
color: var(--wx-filter-or-font-color);
|
|
6666
|
+
}
|
|
6667
|
+
.wx-group.wx-inner.wx-list.wx-3udP2tTA {
|
|
6668
|
+
margin-left: 20px;
|
|
6669
|
+
padding: 4px 0 0 8px;
|
|
6670
|
+
border-left: var(--wx-border);
|
|
6671
|
+
}
|
|
6672
|
+
.wx-group.wx-inner.wx-line.wx-3udP2tTA:before,
|
|
6673
|
+
.wx-group.wx-inner.wx-line.wx-3udP2tTA:after {
|
|
6674
|
+
content: "(";
|
|
6675
|
+
margin: 0 2px 0 -4px;
|
|
6676
|
+
display: inline-flex;
|
|
6677
|
+
justify-content: center;
|
|
6678
|
+
align-items: center;
|
|
6679
|
+
transform: scaleX(.75);
|
|
6680
|
+
font-size: 30px;
|
|
6681
|
+
position: relative;
|
|
6682
|
+
top: -2px;
|
|
6683
|
+
}
|
|
6684
|
+
.wx-group.wx-inner.wx-line.wx-3udP2tTA:after {
|
|
6685
|
+
content: ")";
|
|
6686
|
+
margin: 0 -4px 0 2px;
|
|
6687
|
+
}
|
|
6688
|
+
.wx-group.wx-line.wx-3udP2tTA {
|
|
6689
|
+
display: flex;
|
|
6690
|
+
gap: 10px;
|
|
6691
|
+
padding: 4px;
|
|
6692
|
+
}
|
|
6693
|
+
.wx-line.wx-3udP2tTA .wx-rule-wrapper.wx-3udP2tTA,
|
|
6694
|
+
.wx-line.wx-3udP2tTA .wx-glue-wrapper.wx-3udP2tTA {
|
|
6695
|
+
display: flex;
|
|
6696
|
+
flex-direction: column;
|
|
6697
|
+
justify-content: center;
|
|
6698
|
+
}
|
|
6699
|
+
.wx-editor-wrapper.wx-3udP2tTA {
|
|
6700
|
+
padding: 0 10px;
|
|
6701
|
+
min-width: 280px;
|
|
6702
|
+
max-width: 320px;
|
|
6703
|
+
}
|
|
6704
|
+
.wx-popup:has(.wx-editor-wrapper) {
|
|
6705
|
+
overflow: visible !important;
|
|
6706
|
+
position: absolute !important;
|
|
6707
|
+
}
|
|
6708
|
+
.wx-filter-builder.wx-VDDi7d7g {
|
|
6709
|
+
background-color: var(--wx-background);
|
|
6710
|
+
}
|
|
6711
|
+
.wx-filter-builder.wx-list.wx-VDDi7d7g {
|
|
6712
|
+
padding: 0;
|
|
6713
|
+
max-width: 470px;
|
|
6714
|
+
}
|
|
6715
|
+
.wx-button.wx-VDDi7d7g {
|
|
6716
|
+
display: flex;
|
|
6717
|
+
flex-direction: column;
|
|
6718
|
+
justify-content: center;
|
|
6719
|
+
}
|
|
6720
|
+
.wx-toolbar.wx-line.wx-VDDi7d7g,
|
|
6721
|
+
.wx-toolbar.wx-simple.wx-VDDi7d7g {
|
|
6722
|
+
display: flex;
|
|
6723
|
+
flex-direction: row;
|
|
6724
|
+
gap: 20px;
|
|
6725
|
+
height: 67px;
|
|
6726
|
+
}
|
|
6727
|
+
.wx-toolbar.wx-line.wx-VDDi7d7g {
|
|
6728
|
+
justify-content: space-between;
|
|
6729
|
+
}
|
|
6730
|
+
.wx-filters.wx-VDDi7d7g {
|
|
6731
|
+
overflow-x: auto;
|
|
6732
|
+
display: flex;
|
|
6733
|
+
}
|
|
6734
|
+
.wx-filter-bar.wx-gWqAfosQ {
|
|
6735
|
+
display: flex;
|
|
6736
|
+
padding: 14px 2px;
|
|
6737
|
+
width: 610px;
|
|
6738
|
+
gap: 10px;
|
|
6739
|
+
}
|
|
6740
|
+
.wx-label.wx-gWqAfosQ {
|
|
6741
|
+
font-family: var(--wx-label-font-family);
|
|
6742
|
+
font-size: var(--wx-label-font-size);
|
|
6743
|
+
line-height: var(--wx-label-line-height);
|
|
6744
|
+
font-weight: var(--wx-label-font-weight);
|
|
6745
|
+
color: var(--wx-label-font-color);
|
|
6746
|
+
align-content: center;
|
|
6747
|
+
max-width: 160px;
|
|
6748
|
+
white-space: nowrap;
|
|
6749
|
+
overflow: hidden;
|
|
6750
|
+
text-overflow: ellipsis;
|
|
6751
|
+
}
|
|
6752
|
+
.wx-select.wx-gWqAfosQ {
|
|
6753
|
+
flex: 1;
|
|
6754
|
+
}
|
|
6755
|
+
.wx-text.wx-gWqAfosQ,
|
|
6756
|
+
.wx-date.wx-gWqAfosQ {
|
|
6757
|
+
flex: 2;
|
|
6758
|
+
}
|
|
6759
|
+
.wx-oUdfahW2 .wx-material-theme {
|
|
6760
|
+
--wx-filter-value-color: var(--wx-color-primary);
|
|
6761
|
+
--wx-filter-and-background: #ffc975;
|
|
6762
|
+
--wx-filter-or-background: #00d19a;
|
|
6763
|
+
--wx-filter-and-font-color: var(--wx-color-font);
|
|
6764
|
+
--wx-filter-or-font-color: var(--wx-color-font);
|
|
6765
|
+
--wx-filter-border: var(--wx-border);
|
|
6766
|
+
}
|
|
6767
|
+
.wx-willow-theme {
|
|
6768
|
+
--wx-filter-value-color: var(--wx-color-primary);
|
|
6769
|
+
--wx-filter-and-background: #fcba2e;
|
|
6770
|
+
--wx-filter-or-background: #77d257;
|
|
6771
|
+
--wx-filter-and-font-color: var(--wx-color-font);
|
|
6772
|
+
--wx-filter-or-font-color: var(--wx-color-font);
|
|
6773
|
+
--wx-filter-border: 1px solid #e6e6e6;
|
|
6774
|
+
}
|
|
6775
|
+
:global(.wx-willow-dark-theme) {
|
|
6776
|
+
color-scheme: dark;
|
|
6777
|
+
--wx-filter-value-color: #ac9eff;
|
|
6778
|
+
--wx-filter-and-background: #fcba2e;
|
|
6779
|
+
--wx-filter-or-background: #77d257;
|
|
6780
|
+
--wx-filter-and-font-color: #000000b3;
|
|
6781
|
+
--wx-filter-or-font-color: #000000b3;
|
|
6782
|
+
--wx-filter-border: var(--wx-border);
|
|
6783
|
+
}
|
|
6784
|
+
.wx-measure-cell-body,
|
|
6785
|
+
.wx-print-cell,
|
|
6786
|
+
.wx-cell.wx-TSCaXsGV {
|
|
6787
|
+
background: inherit;
|
|
6788
|
+
box-sizing: border-box;
|
|
6789
|
+
padding: 8px;
|
|
6790
|
+
overflow: hidden;
|
|
6791
|
+
text-overflow: ellipsis;
|
|
6792
|
+
white-space: nowrap;
|
|
6793
|
+
}
|
|
6794
|
+
.wx-print-tree-cell,
|
|
6795
|
+
.wx-tree-cell.wx-TSCaXsGV {
|
|
6796
|
+
display: flex;
|
|
6797
|
+
}
|
|
6798
|
+
.wx-measure-cell-body,
|
|
6799
|
+
.wx-cell.wx-TSCaXsGV:not(:last-child) {
|
|
6800
|
+
border-right: var(--wx-table-cell-border);
|
|
6801
|
+
}
|
|
6802
|
+
.wx-print-draggable,
|
|
6803
|
+
.wx-draggable.wx-TSCaXsGV,
|
|
6804
|
+
.wx-draggable-stub.wx-TSCaXsGV {
|
|
6805
|
+
display: inline-block;
|
|
6806
|
+
vertical-align: middle;
|
|
6807
|
+
margin-right: 3px;
|
|
6808
|
+
font-size: 20px;
|
|
6809
|
+
height: 20px;
|
|
6810
|
+
width: 20px;
|
|
6811
|
+
}
|
|
6812
|
+
.wx-draggable.wx-TSCaXsGV {
|
|
6813
|
+
cursor: move;
|
|
6814
|
+
}
|
|
6815
|
+
.wx-shadow.wx-cell.wx-TSCaXsGV {
|
|
6816
|
+
border-right: var(--wx-table-fixed-column-border);
|
|
6817
|
+
clip-path: inset(0px -15px 0px 0px);
|
|
6818
|
+
z-index: 1;
|
|
6819
|
+
}
|
|
6820
|
+
.wx-fixed-right.wx-shadow.wx-cell.wx-TSCaXsGV {
|
|
6821
|
+
border-right: var(--wx-table-cell-border);
|
|
6822
|
+
border-left: var(--wx-table-fixed-column-border);
|
|
6823
|
+
}
|
|
6824
|
+
.wx-fixed-right.wx-shadow.wx-cell.wx-TSCaXsGV:last-child {
|
|
6825
|
+
border-right: none;
|
|
6826
|
+
}
|
|
6827
|
+
.wx-print-grid-tree-toggle,
|
|
6828
|
+
.wx-table-tree-toggle.wx-TSCaXsGV {
|
|
6829
|
+
font-size: 20px;
|
|
6830
|
+
cursor: pointer;
|
|
6831
|
+
margin: 0 4px 0 0;
|
|
6832
|
+
display: inline-block;
|
|
6833
|
+
}
|
|
6834
|
+
.wx-cell.wx-TSCaXsGV[tabindex="0"]:focus {
|
|
6835
|
+
outline: 1px solid var(--wx-color-primary);
|
|
6836
|
+
outline-offset: -1px;
|
|
6837
|
+
}
|
|
6838
|
+
.wx-search.wx-TSCaXsGV {
|
|
6839
|
+
background-color: #ffeb3b;
|
|
6840
|
+
}
|
|
6841
|
+
.wx-print-filter,
|
|
6842
|
+
.wx-cell.wx-filter > .wx-text > input {
|
|
6843
|
+
height: 28px;
|
|
6844
|
+
padding: 4px 8px;
|
|
6845
|
+
}
|
|
6846
|
+
.wx-print-filter {
|
|
6847
|
+
border: var(--wx-table-border);
|
|
6848
|
+
background: var(--wx-background);
|
|
6849
|
+
border-radius: var(--wx-input-border-radius);
|
|
6850
|
+
font-weight: 400;
|
|
6851
|
+
width: 100%;
|
|
6852
|
+
white-space: nowrap;
|
|
6853
|
+
overflow: hidden;
|
|
6854
|
+
text-overflow: ellipsis;
|
|
6855
|
+
}
|
|
6856
|
+
.wx-cell.wx-filter.wx-D3voQpJs div.wx-richselect {
|
|
6857
|
+
min-height: 28px;
|
|
6858
|
+
height: 28px;
|
|
6859
|
+
padding: 4px 8px;
|
|
6860
|
+
}
|
|
6861
|
+
.wx-cell.wx-filter.wx-D3voQpJs div.wx-richselect .wx-label {
|
|
6862
|
+
padding: 0;
|
|
6863
|
+
}
|
|
6864
|
+
.wx-measure-cell-header,
|
|
6865
|
+
.wx-print-cell-header,
|
|
6866
|
+
.wx-cell.wx-RsQD74qC {
|
|
6867
|
+
padding: 8px;
|
|
6868
|
+
position: relative;
|
|
6869
|
+
display: flex;
|
|
6870
|
+
align-items: center;
|
|
6871
|
+
font-weight: var(--wx-header-font-weight);
|
|
6872
|
+
background: var(--wx-table-header-background);
|
|
6873
|
+
line-height: 20px;
|
|
6874
|
+
}
|
|
6875
|
+
.wx-cell.wx-RsQD74qC:focus {
|
|
6876
|
+
outline: 1px solid var(--wx-color-primary);
|
|
6877
|
+
outline-offset: -1px;
|
|
6878
|
+
}
|
|
6879
|
+
.wx-print-cell-header {
|
|
6880
|
+
display: table-cell;
|
|
6881
|
+
position: static;
|
|
6882
|
+
}
|
|
6883
|
+
.wx-cell.wx-RsQD74qC.wx-vertical {
|
|
6884
|
+
align-items: flex-end;
|
|
6885
|
+
}
|
|
6886
|
+
.wx-measure-cell-header,
|
|
6887
|
+
.wx-cell.wx-RsQD74qC:not(:last-child) {
|
|
6888
|
+
border-right: var(--wx-table-header-cell-border);
|
|
6889
|
+
}
|
|
6890
|
+
.wx-print-cell-filter.wx-RsQD74qC,
|
|
6891
|
+
.wx-cell.wx-filter.wx-RsQD74qC {
|
|
6892
|
+
padding: 4px;
|
|
6893
|
+
z-index: 8;
|
|
6894
|
+
}
|
|
6895
|
+
.wx-print-cell-header .wx-text,
|
|
6896
|
+
.wx-text.wx-RsQD74qC {
|
|
6897
|
+
text-overflow: ellipsis;
|
|
6898
|
+
white-space: nowrap;
|
|
6899
|
+
overflow: hidden;
|
|
6900
|
+
}
|
|
6901
|
+
.wx-print-cell-header.wx-vertical .wx-text,
|
|
6902
|
+
.wx-vertical.wx-RsQD74qC .wx-text.wx-RsQD74qC {
|
|
6903
|
+
height: 100%;
|
|
6904
|
+
transform: rotate(-180deg);
|
|
6905
|
+
writing-mode: vertical-lr;
|
|
6906
|
+
text-overflow: ellipsis;
|
|
6907
|
+
overflow: hidden;
|
|
6908
|
+
}
|
|
6909
|
+
.wx-print-cell-header.wx-vertical .wx-text {
|
|
6910
|
+
display: block;
|
|
6911
|
+
}
|
|
6912
|
+
.wx-cell.wx-shadow.wx-RsQD74qC {
|
|
6913
|
+
clip-path: inset(0px -15px 0px 0px);
|
|
6914
|
+
border-right: var(--wx-table-fixed-column-border);
|
|
6915
|
+
}
|
|
6916
|
+
.wx-cell.wx-fixed-right.wx-shadow.wx-RsQD74qC {
|
|
6917
|
+
border-right: var(--wx-table-cell-border);
|
|
6918
|
+
border-left: var(--wx-table-fixed-column-border);
|
|
6919
|
+
}
|
|
6920
|
+
.wx-cell.wx-fixed-right.wx-cell.wx-RsQD74qC:last-child {
|
|
6921
|
+
border-right: none;
|
|
6922
|
+
}
|
|
6923
|
+
.wx-shadow.wx-RsQD74qC,
|
|
6924
|
+
.wx-fixed.wx-RsQD74qC {
|
|
6925
|
+
z-index: 7;
|
|
6926
|
+
}
|
|
6927
|
+
.wx-shadow.wx-rowspan.wx-RsQD74qC,
|
|
6928
|
+
.wx-shadow.wx-colspan.wx-RsQD74qC,
|
|
6929
|
+
.wx-fixed.wx-rowspan.wx-RsQD74qC,
|
|
6930
|
+
.wx-fixed.wx-colspan.wx-RsQD74qC {
|
|
6931
|
+
z-index: 8;
|
|
6932
|
+
}
|
|
6933
|
+
.wx-grip.wx-RsQD74qC {
|
|
6934
|
+
box-sizing: border-box;
|
|
6935
|
+
position: absolute;
|
|
6936
|
+
top: 0;
|
|
6937
|
+
bottom: 0;
|
|
6938
|
+
right: -4px;
|
|
6939
|
+
width: 9px;
|
|
6940
|
+
background-color: transparent;
|
|
6941
|
+
opacity: 0;
|
|
6942
|
+
cursor: ew-resize;
|
|
6943
|
+
z-index: 8;
|
|
6944
|
+
}
|
|
6945
|
+
.wx-grip.wx-RsQD74qC div {
|
|
6946
|
+
margin-left: 5px;
|
|
6947
|
+
width: 1px;
|
|
6948
|
+
height: 100%;
|
|
6949
|
+
background-color: var(--wx-color-primary);
|
|
6950
|
+
}
|
|
6951
|
+
.wx-cell.wx-RsQD74qC:last-child .wx-grip.wx-RsQD74qC {
|
|
6952
|
+
width: 5px;
|
|
6953
|
+
right: 0;
|
|
6954
|
+
}
|
|
6955
|
+
.wx-cell.wx-RsQD74qC:last-child .wx-grip.wx-RsQD74qC div {
|
|
6956
|
+
margin-left: 4px;
|
|
6957
|
+
}
|
|
6958
|
+
.wx-grip.wx-RsQD74qC:before,
|
|
6959
|
+
.wx-cell.wx-RsQD74qC:not(:last-child) .wx-grip.wx-RsQD74qC:after {
|
|
6960
|
+
content: "";
|
|
6961
|
+
position: absolute;
|
|
6962
|
+
top: 0;
|
|
6963
|
+
bottom: 0;
|
|
6964
|
+
width: 0;
|
|
6965
|
+
height: 0;
|
|
6966
|
+
margin: auto;
|
|
6967
|
+
}
|
|
6968
|
+
.wx-grip.wx-RsQD74qC:before {
|
|
6969
|
+
border: 3px dashed transparent;
|
|
6970
|
+
border-right: 3px solid var(--wx-color-primary);
|
|
6971
|
+
right: 7px;
|
|
6972
|
+
}
|
|
6973
|
+
.wx-cell.wx-RsQD74qC:last-child .wx-grip.wx-RsQD74qC:before {
|
|
6974
|
+
right: 3px;
|
|
6975
|
+
}
|
|
6976
|
+
.wx-cell.wx-RsQD74qC:not(:last-child) .wx-grip.wx-RsQD74qC:after {
|
|
6977
|
+
border: 3px dashed transparent;
|
|
6978
|
+
border-left: 3px solid var(--wx-color-primary);
|
|
6979
|
+
left: 9px;
|
|
6980
|
+
}
|
|
6981
|
+
.wx-cell.wx-RsQD74qC:has(.wx-grip.wx-RsQD74qC:hover) {
|
|
6982
|
+
z-index: 9;
|
|
6983
|
+
}
|
|
6984
|
+
.wx-grip.wx-RsQD74qC:hover {
|
|
6985
|
+
opacity: 1;
|
|
6986
|
+
}
|
|
6987
|
+
.wx-sort.wx-RsQD74qC {
|
|
6988
|
+
height: 100%;
|
|
6989
|
+
margin-left: auto;
|
|
6990
|
+
display: flex;
|
|
6991
|
+
align-items: center;
|
|
6992
|
+
}
|
|
6993
|
+
.wx-order.wx-RsQD74qC {
|
|
6994
|
+
width: 16px;
|
|
6995
|
+
height: 16px;
|
|
6996
|
+
line-height: 16px;
|
|
6997
|
+
border-radius: 50%;
|
|
6998
|
+
font-size: 12px;
|
|
6999
|
+
text-align: center;
|
|
7000
|
+
color: #fff;
|
|
7001
|
+
background-color: #3498ff;
|
|
7002
|
+
}
|
|
7003
|
+
.wx-collapse.wx-RsQD74qC:focus {
|
|
7004
|
+
outline: none;
|
|
7005
|
+
}
|
|
7006
|
+
.wx-collapse.wx-RsQD74qC:focus i,
|
|
7007
|
+
.wx-collapse.wx-RsQD74qC:hover i {
|
|
7008
|
+
color: var(--wx-color-primary);
|
|
7009
|
+
}
|
|
7010
|
+
.wx-rowspan.wx-RsQD74qC,
|
|
7011
|
+
.wx-colspan.wx-RsQD74qC {
|
|
7012
|
+
z-index: 6;
|
|
7013
|
+
}
|
|
7014
|
+
.wx-collapse.wx-RsQD74qC,
|
|
7015
|
+
.wx-collapsed.wx-RsQD74qC {
|
|
7016
|
+
cursor: pointer;
|
|
7017
|
+
z-index: 1;
|
|
7018
|
+
}
|
|
7019
|
+
.wx-collapsed.wx-RsQD74qC {
|
|
7020
|
+
position: relative;
|
|
7021
|
+
}
|
|
7022
|
+
.wx-collapse.wx-RsQD74qC i {
|
|
7023
|
+
margin-right: 4px;
|
|
7024
|
+
}
|
|
7025
|
+
.wx-h-row:not(:last-child) .wx-cell.wx-RsQD74qC:not(.wx-rowspan.wx-RsQD74qC) {
|
|
7026
|
+
border-bottom: var(--wx-table-header-cell-border);
|
|
7027
|
+
}
|
|
7028
|
+
.wx-measure-cell-footer,
|
|
7029
|
+
.wx-print-cell-footer,
|
|
7030
|
+
.wx-cell.wx-6Sdi3Dfd {
|
|
7031
|
+
padding: 8px;
|
|
7032
|
+
display: flex;
|
|
7033
|
+
align-items: center;
|
|
7034
|
+
font-weight: var(--wx-header-font-weight);
|
|
7035
|
+
background: var(--wx-table-header-background);
|
|
7036
|
+
overflow: hidden;
|
|
7037
|
+
}
|
|
7038
|
+
.wx-print-cell-footer {
|
|
7039
|
+
display: table-cell;
|
|
7040
|
+
}
|
|
7041
|
+
.wx-cell.wx-6Sdi3Dfd:not(:last-child) {
|
|
7042
|
+
border-right: var(--wx-table-footer-cell-border);
|
|
7043
|
+
}
|
|
7044
|
+
.wx-cell.wx-vertical.wx-6Sdi3Dfd {
|
|
7045
|
+
align-items: flex-end;
|
|
7046
|
+
}
|
|
7047
|
+
.wx-print-cell-footer .wx-text,
|
|
7048
|
+
.wx-text.wx-6Sdi3Dfd {
|
|
7049
|
+
text-overflow: ellipsis;
|
|
7050
|
+
white-space: nowrap;
|
|
7051
|
+
overflow: hidden;
|
|
7052
|
+
}
|
|
7053
|
+
.wx-print-cell-footer.wx-vertical .wx-text,
|
|
7054
|
+
.wx-vertical.wx-6Sdi3Dfd .wx-text {
|
|
7055
|
+
transform: rotate(-90deg) translateY(100%);
|
|
7056
|
+
transform-origin: left bottom;
|
|
7057
|
+
text-overflow: clip;
|
|
7058
|
+
overflow: unset;
|
|
7059
|
+
}
|
|
7060
|
+
.wx-print-cell-footer.wx-vertical .wx-text {
|
|
7061
|
+
display: block;
|
|
7062
|
+
}
|
|
7063
|
+
.wx-cell.wx-shadow.wx-6Sdi3Dfd {
|
|
7064
|
+
clip-path: inset(0px -15px 0px 0px);
|
|
7065
|
+
border-right: var(--wx-table-fixed-column-border);
|
|
7066
|
+
}
|
|
7067
|
+
.wx-cell.wx-fixed-right.wx-shadow.wx-6Sdi3Dfd {
|
|
7068
|
+
border-right: var(--wx-table-cell-border);
|
|
7069
|
+
border-left: var(--wx-table-fixed-column-border);
|
|
7070
|
+
}
|
|
7071
|
+
.wx-cell.wx-fixed-right.wx-cell:last-child.wx-6Sdi3Dfd {
|
|
7072
|
+
border-right: none;
|
|
7073
|
+
}
|
|
7074
|
+
.wx-shadow.wx-6Sdi3Dfd,
|
|
7075
|
+
.wx-fixed.wx-6Sdi3Dfd {
|
|
7076
|
+
z-index: 3;
|
|
7077
|
+
}
|
|
7078
|
+
.wx-rowspan.wx-6Sdi3Dfd {
|
|
7079
|
+
z-index: 2;
|
|
7080
|
+
}
|
|
7081
|
+
.wx-rowspan.wx-shadow.wx-6Sdi3Dfd,
|
|
7082
|
+
.wx-rowspan.wx-fixed.wx-6Sdi3Dfd,
|
|
7083
|
+
.wx-colspan.wx-shadow.wx-6Sdi3Dfd,
|
|
7084
|
+
.wx-colspan.wx-fixed.wx-6Sdi3Dfd {
|
|
7085
|
+
z-index: 4;
|
|
7086
|
+
}
|
|
7087
|
+
.wx-f-row:not(:last-child) .wx-cell:not(.wx-rowspan).wx-6Sdi3Dfd {
|
|
7088
|
+
border-bottom: var(--wx-table-header-cell-border);
|
|
7089
|
+
}
|
|
7090
|
+
.wx-header.wx-sAsPVaUK,
|
|
7091
|
+
.wx-footer.wx-sAsPVaUK {
|
|
7092
|
+
font-weight: 500;
|
|
7093
|
+
}
|
|
7094
|
+
.wx-header.wx-sAsPVaUK {
|
|
7095
|
+
top: 0;
|
|
7096
|
+
border-bottom: var(--wx-table-header-border);
|
|
7097
|
+
}
|
|
7098
|
+
.wx-footer.wx-sAsPVaUK {
|
|
7099
|
+
position: sticky;
|
|
7100
|
+
z-index: 2;
|
|
7101
|
+
bottom: 0;
|
|
7102
|
+
border-top: var(--wx-table-header-border);
|
|
7103
|
+
}
|
|
7104
|
+
.wx-overlay.wx-1ty666CQ {
|
|
7105
|
+
width: 100%;
|
|
7106
|
+
height: 100%;
|
|
7107
|
+
position: absolute;
|
|
7108
|
+
z-index: 5;
|
|
7109
|
+
background-color: var(--wx-background);
|
|
7110
|
+
padding: 14px 8px;
|
|
7111
|
+
text-align: center;
|
|
7112
|
+
}
|
|
7113
|
+
.wx-text.wx-e7Ao5ejY {
|
|
7114
|
+
width: 100%;
|
|
7115
|
+
height: 100%;
|
|
7116
|
+
border: none;
|
|
7117
|
+
outline: none;
|
|
7118
|
+
padding-left: 8px;
|
|
7119
|
+
font: inherit;
|
|
7120
|
+
background: var(--wx-background);
|
|
7121
|
+
color: var(--wx-color-font);
|
|
7122
|
+
border: 1px solid var(--wx-color-primary);
|
|
7123
|
+
}
|
|
7124
|
+
.wx-input.wx-0UYfSd1x {
|
|
7125
|
+
height: 100%;
|
|
7126
|
+
width: 100%;
|
|
7127
|
+
border: none;
|
|
7128
|
+
outline: none;
|
|
7129
|
+
padding-left: 8px;
|
|
7130
|
+
font: inherit;
|
|
7131
|
+
background: var(--wx-background);
|
|
7132
|
+
color: var(--wx-color-font);
|
|
7133
|
+
border: 1px solid var(--wx-color-primary);
|
|
7134
|
+
}
|
|
7135
|
+
.wx-value.wx-lNWNYUb6 {
|
|
7136
|
+
width: 100%;
|
|
7137
|
+
height: 100%;
|
|
7138
|
+
padding: 8px;
|
|
7139
|
+
overflow: hidden;
|
|
7140
|
+
outline: none;
|
|
7141
|
+
border: 1px solid var(--wx-color-primary);
|
|
7142
|
+
}
|
|
7143
|
+
.wx-text.wx-lNWNYUb6 {
|
|
7144
|
+
width: 100%;
|
|
7145
|
+
white-space: nowrap;
|
|
7146
|
+
overflow: hidden;
|
|
7147
|
+
text-overflow: ellipsis;
|
|
7148
|
+
display: block;
|
|
7149
|
+
}
|
|
7150
|
+
.wx-value.wx-ywGRk611 {
|
|
7151
|
+
width: 100%;
|
|
7152
|
+
height: 100%;
|
|
7153
|
+
padding: 8px;
|
|
7154
|
+
overflow: hidden;
|
|
7155
|
+
outline: none;
|
|
7156
|
+
border: 1px solid var(--wx-color-primary);
|
|
7157
|
+
}
|
|
7158
|
+
.wx-text.wx-ywGRk611 {
|
|
7159
|
+
width: 100%;
|
|
7160
|
+
white-space: nowrap;
|
|
7161
|
+
overflow: hidden;
|
|
7162
|
+
text-overflow: ellipsis;
|
|
7163
|
+
}
|
|
7164
|
+
.wx-value.wx-ywGRk611:focus {
|
|
7165
|
+
outline: none;
|
|
7166
|
+
display: block;
|
|
7167
|
+
}
|
|
7168
|
+
.wx-8l724t2g.wx-cell {
|
|
7169
|
+
box-sizing: border-box;
|
|
7170
|
+
padding: 0;
|
|
7171
|
+
background-color: var(--wx-background);
|
|
7172
|
+
color: var(--wx-color-font);
|
|
7173
|
+
position: relative;
|
|
7174
|
+
z-index: 3;
|
|
7175
|
+
}
|
|
7176
|
+
.wx-8l724t2g.wx-cell .wx-dropdown {
|
|
7177
|
+
border: var(--wx-table-editor-dropdown-border);
|
|
7178
|
+
box-shadow: var(--wx-table-editor-dropdown-shadow);
|
|
7179
|
+
}
|
|
7180
|
+
.wx-print-grid .wx-vertical.wx-Gy81xq2u {
|
|
7181
|
+
vertical-align: bottom;
|
|
7182
|
+
}
|
|
7183
|
+
.wx-flex-columns.wx-8NTMLH0z {
|
|
7184
|
+
width: 100%;
|
|
7185
|
+
}
|
|
7186
|
+
.wx-print-container {
|
|
7187
|
+
display: none;
|
|
7188
|
+
}
|
|
7189
|
+
.wx-print-grid {
|
|
7190
|
+
border-collapse: collapse;
|
|
7191
|
+
table-layout: fixed;
|
|
7192
|
+
border: var(--wx-table-border);
|
|
7193
|
+
border-spacing: 0;
|
|
7194
|
+
text-indent: initial;
|
|
7195
|
+
print-color-adjust: exact;
|
|
7196
|
+
-webkit-print-color-adjust: exact;
|
|
7197
|
+
}
|
|
7198
|
+
.wx-print-grid tr,
|
|
7199
|
+
.wx-print-grid th,
|
|
7200
|
+
.wx-print-grid td {
|
|
7201
|
+
border: var(--wx-table-border);
|
|
7202
|
+
}
|
|
7203
|
+
@media print {
|
|
7204
|
+
.wx-print > * {
|
|
7205
|
+
display: none !important;
|
|
7206
|
+
}
|
|
7207
|
+
.wx-print-container > .wx-print-grid-wrapper {
|
|
7208
|
+
page-break-after: always;
|
|
7209
|
+
break-after: page;
|
|
7210
|
+
}
|
|
7211
|
+
.wx-print-container {
|
|
7212
|
+
display: block !important;
|
|
7213
|
+
}
|
|
7214
|
+
}
|
|
7215
|
+
.wx-grid.wx-4VuBwK2D {
|
|
7216
|
+
height: 100%;
|
|
7217
|
+
}
|
|
7218
|
+
.wx-table-box.wx-4VuBwK2D {
|
|
7219
|
+
outline: none;
|
|
7220
|
+
position: relative;
|
|
7221
|
+
display: flex;
|
|
7222
|
+
flex-direction: column;
|
|
7223
|
+
height: 100%;
|
|
7224
|
+
border: var(--wx-table-cell-border);
|
|
7225
|
+
overflow: hidden;
|
|
7226
|
+
box-sizing: content-box;
|
|
7227
|
+
}
|
|
7228
|
+
.wx-header-wrapper.wx-4VuBwK2D {
|
|
7229
|
+
position: sticky;
|
|
7230
|
+
z-index: 3;
|
|
7231
|
+
top: 0;
|
|
7232
|
+
}
|
|
7233
|
+
.wx-body.wx-4VuBwK2D,
|
|
7234
|
+
.wx-data.wx-4VuBwK2D {
|
|
7235
|
+
position: relative;
|
|
7236
|
+
}
|
|
7237
|
+
.wx-scroll.wx-4VuBwK2D {
|
|
7238
|
+
position: relative;
|
|
7239
|
+
flex: 1;
|
|
7240
|
+
scroll-padding-top: var(--header-height);
|
|
7241
|
+
scroll-padding-bottom: var(--footer-height);
|
|
7242
|
+
}
|
|
7243
|
+
.wx-row.wx-4VuBwK2D {
|
|
7244
|
+
display: flex;
|
|
7245
|
+
box-sizing: border-box;
|
|
7246
|
+
background-color: var(--wx-background);
|
|
7247
|
+
}
|
|
7248
|
+
.wx-row.wx-4VuBwK2D:not(:last-child) {
|
|
7249
|
+
border-bottom: var(--wx-table-cell-border);
|
|
7250
|
+
}
|
|
7251
|
+
.wx-row.wx-autoheight.wx-4VuBwK2D .wx-cell {
|
|
7252
|
+
overflow: visible;
|
|
7253
|
+
text-overflow: initial;
|
|
7254
|
+
white-space: normal;
|
|
7255
|
+
word-break: break-all;
|
|
7256
|
+
}
|
|
7257
|
+
.wx-row.wx-autoheight.wx-4VuBwK2D {
|
|
7258
|
+
height: max-content;
|
|
7259
|
+
}
|
|
7260
|
+
.wx-selected.wx-4VuBwK2D {
|
|
7261
|
+
color: var(--wx-table-select-color);
|
|
7262
|
+
background-color: var(--wx-table-select-background);
|
|
7263
|
+
}
|
|
7264
|
+
.wx-selected.wx-4VuBwK2D .wx-cell:first-child {
|
|
7265
|
+
box-shadow: var(--wx-table-select-border);
|
|
7266
|
+
}
|
|
7267
|
+
.wx-inactive.wx-4VuBwK2D {
|
|
7268
|
+
color: var(--wx-table-drag-over-background);
|
|
7269
|
+
background-color: var(--wx-table-drag-over-background);
|
|
7270
|
+
--wx-table-select-border: none;
|
|
7271
|
+
}
|
|
7272
|
+
.wx-drag-zone {
|
|
7273
|
+
z-index: 10;
|
|
7274
|
+
position: absolute;
|
|
7275
|
+
pointer-events: none;
|
|
7276
|
+
overflow: hidden;
|
|
7277
|
+
box-shadow: var(--wx-table-drag-zone-shadow);
|
|
7278
|
+
}
|
|
7279
|
+
.wx-cell.wx-collapsed.wx-4VuBwK2D {
|
|
7280
|
+
width: 36px;
|
|
7281
|
+
border-right: var(--wx-table-cell-border);
|
|
7282
|
+
}
|
|
7283
|
+
.wx-icon.wx-v13lZxja {
|
|
7284
|
+
display: inline-block;
|
|
7285
|
+
vertical-align: middle;
|
|
7286
|
+
margin-right: 4px;
|
|
7287
|
+
}
|
|
7288
|
+
.wx-hidden.wx-v13lZxja {
|
|
7289
|
+
color: var(--wx-color-font-disabled);
|
|
7290
|
+
}
|
|
7291
|
+
.wx-area.wx-RYccULtD {
|
|
7292
|
+
position: relative;
|
|
7293
|
+
height: 100%;
|
|
7294
|
+
width: 100%;
|
|
7295
|
+
}
|
|
7296
|
+
.tooltip {
|
|
7297
|
+
padding: 2px 10px;
|
|
7298
|
+
border-radius: 2px;
|
|
7299
|
+
box-shadow: var(--wx-box-shadow);
|
|
7300
|
+
pointer-events: none;
|
|
7301
|
+
position: absolute;
|
|
7302
|
+
z-index: 10;
|
|
7303
|
+
font-size: var(--wx-font-size-sm);
|
|
7304
|
+
font-family: var(--wx-font-family);
|
|
7305
|
+
color: var(--wx-color-primary-font);
|
|
7306
|
+
background-color: #1a1e21;
|
|
7307
|
+
}
|
|
7308
|
+
.wx-menu .wx-option.wx-disabled {
|
|
7309
|
+
pointer-events: none;
|
|
7310
|
+
}
|
|
7311
|
+
.wx-menu .wx-option.wx-disabled .wx-value,
|
|
7312
|
+
.wx-menu .wx-option.wx-disabled .wx-icon {
|
|
7313
|
+
color: var(--wx-color-font-disabled);
|
|
7314
|
+
}
|
|
7315
|
+
.wx-material-theme {
|
|
7316
|
+
--wx-table-select-background: #f0f0f0;
|
|
7317
|
+
--wx-table-select-color: var(--wx-color-font);
|
|
7318
|
+
--wx-table-border: 1px solid #dfdfdf;
|
|
7319
|
+
--wx-table-select-border: none;
|
|
7320
|
+
--wx-table-header-border: var(--wx-table-border);
|
|
7321
|
+
--wx-table-header-cell-border: var(--wx-table-border);
|
|
7322
|
+
--wx-table-footer-cell-border: var(--wx-table-border);
|
|
7323
|
+
--wx-table-cell-border: var(--wx-table-border);
|
|
7324
|
+
--wx-header-font-weight: 500;
|
|
7325
|
+
--wx-table-header-background: #fafafb;
|
|
7326
|
+
--wx-table-fixed-column-border: 3px solid #dfdfdf;
|
|
7327
|
+
--wx-table-editor-dropdown-border: none;
|
|
7328
|
+
--wx-table-editor-dropdown-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .3);
|
|
7329
|
+
--wx-table-drag-over-background: var(--wx-background-alt);
|
|
7330
|
+
--wx-table-drag-zone-shadow: var(--wx-box-shadow);
|
|
7331
|
+
}
|
|
7332
|
+
.wx-material-theme .wx-table-menu {
|
|
7333
|
+
box-shadow: 0 2px 5px #0000004d;
|
|
7334
|
+
outline: none;
|
|
7335
|
+
}
|
|
7336
|
+
.wx-willow-theme {
|
|
7337
|
+
--wx-table-select-background: #eaedf5;
|
|
7338
|
+
--wx-table-select-color: var(--wx-color-font);
|
|
7339
|
+
--wx-table-border: 1px solid #e6e6e6;
|
|
7340
|
+
--wx-table-select-border: inset 3px 0 var(--wx-color-primary);
|
|
7341
|
+
--wx-table-header-border: var(--wx-table-border);
|
|
7342
|
+
--wx-table-header-cell-border: var(--wx-table-border);
|
|
7343
|
+
--wx-table-footer-cell-border: var(--wx-table-border);
|
|
7344
|
+
--wx-table-cell-border: var(--wx-table-border);
|
|
7345
|
+
--wx-header-font-weight: 600;
|
|
7346
|
+
--wx-table-header-background: #f2f3f7;
|
|
7347
|
+
--wx-table-fixed-column-border: 3px solid #e6e6e6;
|
|
7348
|
+
--wx-table-editor-dropdown-border: var(--wx-table-border);
|
|
7349
|
+
--wx-table-editor-dropdown-shadow: 0px 4px 20px 0px rgba(44, 47, 60, .12);
|
|
7350
|
+
--wx-table-drag-over-background: var(--wx-background-alt);
|
|
7351
|
+
--wx-table-drag-zone-shadow: var(--wx-box-shadow);
|
|
7352
|
+
}
|
|
7353
|
+
.wx-willow-theme .wx-table-menu {
|
|
7354
|
+
box-shadow: 0 4px 20px #2c2f3c1f;
|
|
7355
|
+
outline: 1px solid #e6e6e6;
|
|
7356
|
+
}
|
|
7357
|
+
.wx-willow-dark-theme {
|
|
7358
|
+
color-scheme: dark;
|
|
7359
|
+
--wx-table-select-background: #384047;
|
|
7360
|
+
--wx-table-select-color: var(--wx-color-font);
|
|
7361
|
+
--wx-table-border: var(--wx-border);
|
|
7362
|
+
--wx-table-select-border: inset 3px 0 var(--wx-color-primary);
|
|
7363
|
+
--wx-table-header-border: var(--wx-table-border);
|
|
7364
|
+
--wx-table-header-cell-border: var(--wx-table-border);
|
|
7365
|
+
--wx-table-footer-cell-border: var(--wx-table-border);
|
|
7366
|
+
--wx-table-cell-border: var(--wx-table-border);
|
|
7367
|
+
--wx-header-font-weight: 600;
|
|
7368
|
+
--wx-table-header-background: #20262b;
|
|
7369
|
+
--wx-table-fixed-column-border: 3px solid var(--wx-background-alt);
|
|
7370
|
+
--wx-table-editor-dropdown-border: var(--wx-border);
|
|
7371
|
+
--wx-table-editor-dropdown-shadow: 0px 4px 16px 0px rgba(0, 0, 0, .6);
|
|
7372
|
+
--wx-table-drag-over-background: var(--wx-background-alt);
|
|
7373
|
+
--wx-table-drag-zone-shadow: 0px 1px 2px var(--wx-background-hover), 0px 3px 10px var(--wx-background-hover);
|
|
7374
|
+
}
|
|
7375
|
+
.wx-willow-dark-theme .wx-table-menu {
|
|
7376
|
+
box-shadow: 0 4px 16px #0009;
|
|
7377
|
+
outline: var(--wx-border);
|
|
7378
|
+
}
|
|
7379
|
+
:root {
|
|
7380
|
+
--radius: 0.625rem;
|
|
7381
|
+
--background: oklch(0.2758 0.0182 262.2);
|
|
7382
|
+
--card: oklch(0.3378 0.0223 256.39);
|
|
7383
|
+
--card-foreground: oklch(0.3906 0.033 257.09);
|
|
7384
|
+
--popover: oklch(0.3906 0.033 257.09);
|
|
7385
|
+
--popover-foreground: oklch(0.9851 0 0);
|
|
7386
|
+
--foreground: oklch(0.9851 0 0);
|
|
7387
|
+
--primary: oklch(0.6437 0.1913 274.74);
|
|
7388
|
+
--primary-foreground: oklch(0.9851 0 0);
|
|
7389
|
+
--secondary: oklch(0.6437 0.1913 274.74);
|
|
7390
|
+
--secondary-foreground: oklch(0.9851 0 0);
|
|
7391
|
+
--muted: oklch(0.6437 0.1913 274.74);
|
|
7392
|
+
--muted-foreground: oklch(0.9851 0 0);
|
|
7393
|
+
--accent: oklch(0.6437 0.1913 274.74);
|
|
7394
|
+
--accent-foreground: oklch(0.9851 0 0);
|
|
7395
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
7396
|
+
--border: oklch(0.4448 0.0409 263.25);
|
|
7397
|
+
--input: oklch(0.4448 0.0409 263.25);
|
|
7398
|
+
--ring: oklch(0.7122 0 0);
|
|
7399
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
7400
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
7401
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
7402
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
7403
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
7404
|
+
--sidebar: oklch(0.3378 0.0223 256.39);
|
|
7405
|
+
--sidebar-foreground: oklch(0.9851 0 0);
|
|
7406
|
+
--sidebar-primary: oklch(0.6437 0.1913 274.74);
|
|
7407
|
+
--sidebar-primary-foreground: oklch(0.9851 0 0);
|
|
7408
|
+
--sidebar-accent: oklch(0.6437 0.1913 274.74);
|
|
7409
|
+
--sidebar-accent-foreground: oklch(0.9851 0 0);
|
|
7410
|
+
--sidebar-border: oklch(0.4448 0.0409 263.25);
|
|
7411
|
+
--sidebar-ring: oklch(0.7122 0 0);
|
|
7412
|
+
}
|
|
7413
|
+
.dark {
|
|
7414
|
+
--radius: 0.625rem;
|
|
7415
|
+
--background: oklch(0.2758 0.0182 262.2);
|
|
7416
|
+
--card: oklch(0.3378 0.0223 256.39);
|
|
7417
|
+
--card-foreground: oklch(0.3906 0.033 257.09);
|
|
7418
|
+
--popover: oklch(0.3906 0.033 257.09);
|
|
7419
|
+
--popover-foreground: oklch(0.9851 0 0);
|
|
7420
|
+
--foreground: oklch(0.9851 0 0);
|
|
7421
|
+
--primary: oklch(0.6437 0.1913 274.74);
|
|
7422
|
+
--primary-foreground: oklch(0.9851 0 0);
|
|
7423
|
+
--secondary: oklch(0.6437 0.1913 274.74);
|
|
7424
|
+
--secondary-foreground: oklch(0.9851 0 0);
|
|
7425
|
+
--muted: oklch(0.6437 0.1913 274.74);
|
|
7426
|
+
--muted-foreground: oklch(0.9851 0 0);
|
|
7427
|
+
--accent: oklch(0.6437 0.1913 274.74);
|
|
7428
|
+
--accent-foreground: oklch(0.9851 0 0);
|
|
7429
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
7430
|
+
--border: oklch(0.4448 0.0409 263.25);
|
|
7431
|
+
--input: oklch(0.4448 0.0409 263.25);
|
|
7432
|
+
--ring: oklch(0.7122 0 0);
|
|
7433
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
7434
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
7435
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
7436
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
7437
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
7438
|
+
--sidebar: oklch(0.3378 0.0223 256.39);
|
|
7439
|
+
--sidebar-foreground: oklch(0.9851 0 0);
|
|
7440
|
+
--sidebar-primary: oklch(0.6437 0.1913 274.74);
|
|
7441
|
+
--sidebar-primary-foreground: oklch(0.9851 0 0);
|
|
7442
|
+
--sidebar-accent: oklch(0.6437 0.1913 274.74);
|
|
7443
|
+
--sidebar-accent-foreground: oklch(0.9851 0 0);
|
|
7444
|
+
--sidebar-border: oklch(0.4448 0.0409 263.25);
|
|
7445
|
+
--sidebar-ring: oklch(0.7122 0 0);
|
|
7446
|
+
}
|
|
7447
|
+
@layer base {
|
|
7448
|
+
* {
|
|
7449
|
+
border-color: var(--border);
|
|
7450
|
+
outline-color: var(--ring);
|
|
7451
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
7452
|
+
outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
7453
|
+
}
|
|
7454
|
+
padding: 0;
|
|
7455
|
+
margin: 0;
|
|
7456
|
+
box-sizing: border-box;
|
|
7457
|
+
}
|
|
7458
|
+
:root {
|
|
7459
|
+
--font-poppins: "Poppins", sans-serif;
|
|
7460
|
+
}
|
|
7461
|
+
body {
|
|
7462
|
+
background-color: var(--background);
|
|
7463
|
+
color: var(--foreground);
|
|
7464
|
+
font-family: var(--font-poppins);
|
|
7465
|
+
}
|
|
7466
|
+
}
|
|
7467
|
+
@layer utilities {
|
|
7468
|
+
.subnav-clip {
|
|
7469
|
+
position: relative;
|
|
7470
|
+
overflow: hidden;
|
|
7471
|
+
}
|
|
7472
|
+
@keyframes subnavReveal {
|
|
7473
|
+
0% {
|
|
7474
|
+
opacity: 0;
|
|
7475
|
+
transform: translateY(-40px);
|
|
7476
|
+
}
|
|
7477
|
+
100% {
|
|
7478
|
+
opacity: 1;
|
|
7479
|
+
transform: translateY(0);
|
|
7480
|
+
}
|
|
7481
|
+
}
|
|
7482
|
+
.animate-subnavReveal {
|
|
7483
|
+
animation: subnavReveal 0.35s ease-out both;
|
|
7484
|
+
}
|
|
7485
|
+
}
|
|
7486
|
+
.wx-willow-dark-theme {
|
|
7487
|
+
--wx-table-header-background: var(--card);
|
|
7488
|
+
--wx-table-select-background: var(--popover);
|
|
7489
|
+
--wx-table-select-focus-background: var(--card-foreground);
|
|
7490
|
+
--wx-table-select-border: inset 3px 0 var(--primary);
|
|
7491
|
+
--wx-table-select-color: var(--wx-color-font);
|
|
7492
|
+
--wx-table-border: var(--wx-border);
|
|
7493
|
+
--wx-table-header-border: var(--wx-table-border);
|
|
7494
|
+
--wx-table-header-cell-border: var(--wx-table-border);
|
|
7495
|
+
--wx-table-footer-cell-border: var(--wx-table-border);
|
|
7496
|
+
--wx-table-cell-border: var(--wx-table-border);
|
|
7497
|
+
--wx-header-font-weight: 600;
|
|
7498
|
+
--wx-table-fixed-column-right-border: 3px solid var(--wx-background-alt);
|
|
7499
|
+
--wx-table-editor-dropdown-border: var(--wx-border);
|
|
7500
|
+
--wx-table-editor-dropdown-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.6);
|
|
7501
|
+
--wx-background: var(--background);
|
|
7502
|
+
}
|
|
7503
|
+
.wx-willow-dark-theme .menu {
|
|
7504
|
+
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.6);
|
|
7505
|
+
outline: var(--wx-border);
|
|
2818
7506
|
}
|
|
2819
7507
|
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
|
|
2820
7508
|
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
|