xmlui 0.9.19 → 0.9.21
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/{apiInterceptorWorker-BH8WAcl0.mjs → apiInterceptorWorker-7aKQ2rBj.mjs} +1 -1
- package/dist/{index-KE5HIbCX.mjs → index-B3CWFAxa.mjs} +1795 -2065
- package/dist/index.css +1892 -690
- package/dist/{lint-Cd70ckJ6.mjs → lint-EcgF-9Wr.mjs} +22 -46
- package/dist/scripts/src/components/ComponentProvider.js +16 -24
- package/dist/scripts/src/components/DropdownMenu/DropdownMenu.js +3 -1
- package/dist/scripts/src/components/DropdownMenu/DropdownMenuNative.js +10 -2
- package/dist/scripts/src/components/Form/FormContext.js +4 -0
- package/dist/scripts/src/components/Form/FormNative.js +6 -4
- package/dist/scripts/src/components/Form/formActions.js +2 -1
- package/dist/scripts/src/components/FormItem/FormItemNative.js +7 -0
- package/dist/scripts/src/components/Icon/MoonIcon.js +10 -0
- package/dist/scripts/src/components/Icon/StarsIcon.js +10 -0
- package/dist/scripts/src/components/IconProvider.js +4 -1
- package/dist/scripts/src/components/InspectButton/InspectButton.js +34 -0
- package/dist/scripts/src/components/ToneChangerButton/ToneChangerButton.js +1 -1
- package/dist/scripts/src/components-core/InspectorContext.js +86 -21
- package/dist/scripts/src/components-core/rendering/Container.js +1 -6
- package/dist/style.css +1837 -631
- package/dist/xmlui-metadata.mjs +1283 -1438
- package/dist/xmlui-metadata.umd.js +1282 -1437
- package/dist/xmlui-parser.mjs +17 -17
- package/dist/xmlui-standalone.umd.js +4063 -3150
- package/dist/xmlui.d.ts +1 -1
- package/dist/xmlui.mjs +1 -1
- package/package.json +2 -2
- package/dist/scripts/src/components/Alert/Alert.js +0 -61
- package/dist/scripts/src/components/Alert/AlertNative.js +0 -8
- package/dist/scripts/src/components/ButtonGroup/ButtonGroup.js +0 -55
- package/dist/scripts/src/components/ButtonGroup/ButtonGroupNative.js +0 -8
- package/dist/scripts/src/components/OffCanvas/OffCanvas.js +0 -57
- package/dist/scripts/src/components/OffCanvas/OffCanvasNative.js +0 -48
- package/dist/scripts/src/components/StateViewer/StateViewerNative.js +0 -19
- package/dist/scripts/src/components/SubNavPanel/SubNavPanel.js +0 -22
- package/dist/scripts/src/components/SubNavPanel/SubNavPanelNative.js +0 -9
package/dist/style.css
CHANGED
|
@@ -721,18 +721,97 @@
|
|
|
721
721
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
722
722
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
723
723
|
*/
|
|
724
|
-
.
|
|
724
|
+
._text_wtc9w_13 {
|
|
725
725
|
overflow: hidden;
|
|
726
726
|
text-overflow: ellipsis;
|
|
727
727
|
margin: 0;
|
|
728
728
|
padding: 0;
|
|
729
729
|
min-height: fit-content;
|
|
730
|
-
|
|
731
|
-
|
|
730
|
+
padding: var(--xmlui-padding-Text-default);
|
|
731
|
+
padding-left: var(--xmlui-paddingLeft-Text-default, var(--xmlui-paddingHorizontal-Text-default, var(--xmlui-padding-Text-default)));
|
|
732
|
+
padding-right: var(--xmlui-paddingRight-Text-default, var(--xmlui-paddingHorizontal-Text-default, var(--xmlui-padding-Text-default)));
|
|
733
|
+
padding-top: var(--xmlui-paddingTop-Text-default, var(--xmlui-paddingVertical-Text-default, var(--xmlui-padding-Text-default)));
|
|
734
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-default, var(--xmlui-paddingVertical-Text-default, var(--xmlui-padding-Text-default)));
|
|
735
|
+
border-left: var(--xmlui-borderLeft-Text-default, var(--xmlui-borderHorizontal-Text-default, var(--xmlui-border-Text-default)));
|
|
736
|
+
border-right: var(--xmlui-borderRight-Text-default, var(--xmlui-borderHorizontal-Text-default, var(--xmlui-border-Text-default)));
|
|
737
|
+
border-top: var(--xmlui-borderTop-Text-default, var(--xmlui-borderVertical-Text-default, var(--xmlui-border-Text-default)));
|
|
738
|
+
border-bottom: var(--xmlui-borderBottom-Text-default, var(--xmlui-borderVertical-Text-default, var(--xmlui-border-Text-default)));
|
|
739
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-default, var(--xmlui-borderHorizontalStyle-Text-default, var(--xmlui-borderStyle-Text-default)));
|
|
740
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-default, var(--xmlui-borderHorizontalStyle-Text-default, var(--xmlui-borderStyle-Text-default)));
|
|
741
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-default, var(--xmlui-borderVerticalStyle-Text-default, var(--xmlui-borderStyle-Text-default)));
|
|
742
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-default, var(--xmlui-borderVerticalStyle-Text-default, var(--xmlui-borderStyle-Text-default)));
|
|
743
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-default, var(--xmlui-borderHorizontalWidth-Text-default, var(--xmlui-borderWidth-Text-default)));
|
|
744
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-default, var(--xmlui-borderHorizontalWidth-Text-default, var(--xmlui-borderWidth-Text-default)));
|
|
745
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-default, var(--xmlui-borderVerticalWidth-Text-default, var(--xmlui-borderWidth-Text-default)));
|
|
746
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-default, var(--xmlui-borderVerticalWidth-Text-default, var(--xmlui-borderWidth-Text-default)));
|
|
747
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-default, var(--xmlui-borderHorizontalColor-Text-default, var(--xmlui-borderColor-Text-default)));
|
|
748
|
+
border-right-color: var(--xmlui-borderRightColor-Text-default, var(--xmlui-borderHorizontalColor-Text-default, var(--xmlui-borderColor-Text-default)));
|
|
749
|
+
border-top-color: var(--xmlui-borderTopColor-Text-default, var(--xmlui-borderVerticalColor-Text-default, var(--xmlui-borderColor-Text-default)));
|
|
750
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-default, var(--xmlui-borderVerticalColor-Text-default, var(--xmlui-borderColor-Text-default)));
|
|
751
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-default, var(--xmlui-borderRadius-Text-default));
|
|
752
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-default, var(--xmlui-borderRadius-Text-default));
|
|
753
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-default, var(--xmlui-borderRadius-Text-default));
|
|
754
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-default, var(--xmlui-borderRadius-Text-default));
|
|
755
|
+
color: var(--xmlui-textColor-Text-default);
|
|
756
|
+
font-family: var(--xmlui-fontFamily-Text-default);
|
|
757
|
+
font-size: var(--xmlui-fontSize-Text-default);
|
|
758
|
+
font-style: var(--xmlui-fontStyle-Text-default);
|
|
759
|
+
font-weight: var(--xmlui-fontWeight-Text-default);
|
|
760
|
+
font-stretch: var(--xmlui-fontStretch-Text-default);
|
|
761
|
+
text-decoration-line: var(--xmlui-textDecorationLine-Text-default);
|
|
762
|
+
text-decoration-color: var(--xmlui-textDecorationColor-Text-default);
|
|
763
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-Text-default);
|
|
764
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-default);
|
|
765
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-default);
|
|
766
|
+
line-height: var(--xmlui-lineHeight-Text-default);
|
|
767
|
+
background-color: var(--xmlui-backgroundColor-Text-default);
|
|
768
|
+
text-transform: var(--xmlui-textTransform-Text-default);
|
|
769
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-default);
|
|
770
|
+
word-spacing: var(--xmlui-wordSpacing-Text-default);
|
|
771
|
+
text-shadow: var(--xmlui-textShadow-Text-default);
|
|
772
|
+
text-indent: var(--xmlui-textIndent-Text-default);
|
|
773
|
+
text-align: var(--xmlui-textAlign-Text-default);
|
|
774
|
+
text-align-last: var(--xmlui-textAlignLast-Text-default);
|
|
775
|
+
word-break: var(--xmlui-wordBreak-Text-default);
|
|
776
|
+
word-wrap: var(--xmlui-wordWrap-Text-default);
|
|
777
|
+
direction: var(--xmlui-direction-Text-default);
|
|
778
|
+
writing-mode: var(--xmlui-writingMode-Text-default);
|
|
779
|
+
line-break: var(--xmlui-lineBreak-Text-default);
|
|
780
|
+
margin-top: var(--xmlui-marginTop-Text-default);
|
|
781
|
+
margin-bottom: var(--xmlui-marginBottom-Text-default);
|
|
782
|
+
vertical-align: var(--xmlui-verticalAlign-Text-default);
|
|
783
|
+
}
|
|
784
|
+
._text_wtc9w_13._markdown_wtc9w_73 {
|
|
785
|
+
padding: var(--xmlui-padding-Text-markdown);
|
|
786
|
+
padding-left: var(--xmlui-paddingLeft-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
787
|
+
padding-right: var(--xmlui-paddingRight-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
788
|
+
padding-top: var(--xmlui-paddingTop-Text-markdown, var(--xmlui-paddingVertical-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
789
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-markdown, var(--xmlui-paddingVertical-Text-markdown, var(--xmlui-padding-Text-markdown)));
|
|
790
|
+
border-left: var(--xmlui-borderLeft-Text-markdown, var(--xmlui-borderHorizontal-Text-markdown, var(--xmlui-border-Text-markdown)));
|
|
791
|
+
border-right: var(--xmlui-borderRight-Text-markdown, var(--xmlui-borderHorizontal-Text-markdown, var(--xmlui-border-Text-markdown)));
|
|
792
|
+
border-top: var(--xmlui-borderTop-Text-markdown, var(--xmlui-borderVertical-Text-markdown, var(--xmlui-border-Text-markdown)));
|
|
793
|
+
border-bottom: var(--xmlui-borderBottom-Text-markdown, var(--xmlui-borderVertical-Text-markdown, var(--xmlui-border-Text-markdown)));
|
|
794
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-markdown, var(--xmlui-borderHorizontalStyle-Text-markdown, var(--xmlui-borderStyle-Text-markdown)));
|
|
795
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-markdown, var(--xmlui-borderHorizontalStyle-Text-markdown, var(--xmlui-borderStyle-Text-markdown)));
|
|
796
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-markdown, var(--xmlui-borderVerticalStyle-Text-markdown, var(--xmlui-borderStyle-Text-markdown)));
|
|
797
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-markdown, var(--xmlui-borderVerticalStyle-Text-markdown, var(--xmlui-borderStyle-Text-markdown)));
|
|
798
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-markdown, var(--xmlui-borderHorizontalWidth-Text-markdown, var(--xmlui-borderWidth-Text-markdown)));
|
|
799
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-markdown, var(--xmlui-borderHorizontalWidth-Text-markdown, var(--xmlui-borderWidth-Text-markdown)));
|
|
800
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-markdown, var(--xmlui-borderVerticalWidth-Text-markdown, var(--xmlui-borderWidth-Text-markdown)));
|
|
801
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-markdown, var(--xmlui-borderVerticalWidth-Text-markdown, var(--xmlui-borderWidth-Text-markdown)));
|
|
802
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-markdown, var(--xmlui-borderHorizontalColor-Text-markdown, var(--xmlui-borderColor-Text-markdown)));
|
|
803
|
+
border-right-color: var(--xmlui-borderRightColor-Text-markdown, var(--xmlui-borderHorizontalColor-Text-markdown, var(--xmlui-borderColor-Text-markdown)));
|
|
804
|
+
border-top-color: var(--xmlui-borderTopColor-Text-markdown, var(--xmlui-borderVerticalColor-Text-markdown, var(--xmlui-borderColor-Text-markdown)));
|
|
805
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-markdown, var(--xmlui-borderVerticalColor-Text-markdown, var(--xmlui-borderColor-Text-markdown)));
|
|
806
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-markdown, var(--xmlui-borderRadius-Text-markdown));
|
|
807
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-markdown, var(--xmlui-borderRadius-Text-markdown));
|
|
808
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-markdown, var(--xmlui-borderRadius-Text-markdown));
|
|
809
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-markdown, var(--xmlui-borderRadius-Text-markdown));
|
|
810
|
+
color: var(--xmlui-textColor-Text-markdown);
|
|
732
811
|
font-family: var(--xmlui-fontFamily-Text-markdown);
|
|
733
812
|
font-size: var(--xmlui-fontSize-Text-markdown);
|
|
734
|
-
font-weight: var(--xmlui-fontWeight-Text-markdown);
|
|
735
813
|
font-style: var(--xmlui-fontStyle-Text-markdown);
|
|
814
|
+
font-weight: var(--xmlui-fontWeight-Text-markdown);
|
|
736
815
|
font-stretch: var(--xmlui-fontStretch-Text-markdown);
|
|
737
816
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-markdown);
|
|
738
817
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-markdown);
|
|
@@ -740,31 +819,57 @@
|
|
|
740
819
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-markdown);
|
|
741
820
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-markdown);
|
|
742
821
|
line-height: var(--xmlui-lineHeight-Text-markdown);
|
|
743
|
-
color: var(--xmlui-textColor-Text-markdown);
|
|
744
822
|
background-color: var(--xmlui-backgroundColor-Text-markdown);
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
823
|
+
text-transform: var(--xmlui-textTransform-Text-markdown);
|
|
824
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-markdown);
|
|
825
|
+
word-spacing: var(--xmlui-wordSpacing-Text-markdown);
|
|
826
|
+
text-shadow: var(--xmlui-textShadow-Text-markdown);
|
|
827
|
+
text-indent: var(--xmlui-textIndent-Text-markdown);
|
|
828
|
+
text-align: var(--xmlui-textAlign-Text-markdown);
|
|
829
|
+
text-align-last: var(--xmlui-textAlignLast-Text-markdown);
|
|
830
|
+
word-break: var(--xmlui-wordBreak-Text-markdown);
|
|
831
|
+
word-wrap: var(--xmlui-wordWrap-Text-markdown);
|
|
832
|
+
direction: var(--xmlui-direction-Text-markdown);
|
|
833
|
+
writing-mode: var(--xmlui-writingMode-Text-markdown);
|
|
834
|
+
line-break: var(--xmlui-lineBreak-Text-markdown);
|
|
754
835
|
margin-top: var(--xmlui-marginTop-Text-markdown);
|
|
755
836
|
margin-bottom: var(--xmlui-marginBottom-Text-markdown);
|
|
756
|
-
text-transform: var(--xmlui-textTransform-Text-markdown);
|
|
757
837
|
vertical-align: var(--xmlui-verticalAlign-Text-markdown);
|
|
758
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-markdown);
|
|
759
838
|
}
|
|
760
|
-
.
|
|
839
|
+
._text_wtc9w_13 ._text_wtc9w_13 {
|
|
761
840
|
display: inline;
|
|
762
841
|
}
|
|
763
|
-
.
|
|
842
|
+
._text_wtc9w_13._abbr_wtc9w_131 {
|
|
843
|
+
padding: var(--xmlui-padding-Text-abbr);
|
|
844
|
+
padding-left: var(--xmlui-paddingLeft-Text-abbr, var(--xmlui-paddingHorizontal-Text-abbr, var(--xmlui-padding-Text-abbr)));
|
|
845
|
+
padding-right: var(--xmlui-paddingRight-Text-abbr, var(--xmlui-paddingHorizontal-Text-abbr, var(--xmlui-padding-Text-abbr)));
|
|
846
|
+
padding-top: var(--xmlui-paddingTop-Text-abbr, var(--xmlui-paddingVertical-Text-abbr, var(--xmlui-padding-Text-abbr)));
|
|
847
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-abbr, var(--xmlui-paddingVertical-Text-abbr, var(--xmlui-padding-Text-abbr)));
|
|
848
|
+
border-left: var(--xmlui-borderLeft-Text-abbr, var(--xmlui-borderHorizontal-Text-abbr, var(--xmlui-border-Text-abbr)));
|
|
849
|
+
border-right: var(--xmlui-borderRight-Text-abbr, var(--xmlui-borderHorizontal-Text-abbr, var(--xmlui-border-Text-abbr)));
|
|
850
|
+
border-top: var(--xmlui-borderTop-Text-abbr, var(--xmlui-borderVertical-Text-abbr, var(--xmlui-border-Text-abbr)));
|
|
851
|
+
border-bottom: var(--xmlui-borderBottom-Text-abbr, var(--xmlui-borderVertical-Text-abbr, var(--xmlui-border-Text-abbr)));
|
|
852
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-abbr, var(--xmlui-borderHorizontalStyle-Text-abbr, var(--xmlui-borderStyle-Text-abbr)));
|
|
853
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-abbr, var(--xmlui-borderHorizontalStyle-Text-abbr, var(--xmlui-borderStyle-Text-abbr)));
|
|
854
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-abbr, var(--xmlui-borderVerticalStyle-Text-abbr, var(--xmlui-borderStyle-Text-abbr)));
|
|
855
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-abbr, var(--xmlui-borderVerticalStyle-Text-abbr, var(--xmlui-borderStyle-Text-abbr)));
|
|
856
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-abbr, var(--xmlui-borderHorizontalWidth-Text-abbr, var(--xmlui-borderWidth-Text-abbr)));
|
|
857
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-abbr, var(--xmlui-borderHorizontalWidth-Text-abbr, var(--xmlui-borderWidth-Text-abbr)));
|
|
858
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-abbr, var(--xmlui-borderVerticalWidth-Text-abbr, var(--xmlui-borderWidth-Text-abbr)));
|
|
859
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-abbr, var(--xmlui-borderVerticalWidth-Text-abbr, var(--xmlui-borderWidth-Text-abbr)));
|
|
860
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-abbr, var(--xmlui-borderHorizontalColor-Text-abbr, var(--xmlui-borderColor-Text-abbr)));
|
|
861
|
+
border-right-color: var(--xmlui-borderRightColor-Text-abbr, var(--xmlui-borderHorizontalColor-Text-abbr, var(--xmlui-borderColor-Text-abbr)));
|
|
862
|
+
border-top-color: var(--xmlui-borderTopColor-Text-abbr, var(--xmlui-borderVerticalColor-Text-abbr, var(--xmlui-borderColor-Text-abbr)));
|
|
863
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-abbr, var(--xmlui-borderVerticalColor-Text-abbr, var(--xmlui-borderColor-Text-abbr)));
|
|
864
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-abbr, var(--xmlui-borderRadius-Text-abbr));
|
|
865
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-abbr, var(--xmlui-borderRadius-Text-abbr));
|
|
866
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-abbr, var(--xmlui-borderRadius-Text-abbr));
|
|
867
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-abbr, var(--xmlui-borderRadius-Text-abbr));
|
|
868
|
+
color: var(--xmlui-textColor-Text-abbr);
|
|
764
869
|
font-family: var(--xmlui-fontFamily-Text-abbr);
|
|
765
870
|
font-size: var(--xmlui-fontSize-Text-abbr);
|
|
766
|
-
font-weight: var(--xmlui-fontWeight-Text-abbr);
|
|
767
871
|
font-style: var(--xmlui-fontStyle-Text-abbr);
|
|
872
|
+
font-weight: var(--xmlui-fontWeight-Text-abbr);
|
|
768
873
|
font-stretch: var(--xmlui-fontStretch-Text-abbr);
|
|
769
874
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-abbr);
|
|
770
875
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-abbr);
|
|
@@ -772,28 +877,54 @@
|
|
|
772
877
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-abbr);
|
|
773
878
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-abbr);
|
|
774
879
|
line-height: var(--xmlui-lineHeight-Text-abbr);
|
|
775
|
-
color: var(--xmlui-textColor-Text-abbr);
|
|
776
880
|
background-color: var(--xmlui-backgroundColor-Text-abbr);
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
881
|
+
text-transform: var(--xmlui-textTransform-Text-abbr);
|
|
882
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-abbr);
|
|
883
|
+
word-spacing: var(--xmlui-wordSpacing-Text-abbr);
|
|
884
|
+
text-shadow: var(--xmlui-textShadow-Text-abbr);
|
|
885
|
+
text-indent: var(--xmlui-textIndent-Text-abbr);
|
|
886
|
+
text-align: var(--xmlui-textAlign-Text-abbr);
|
|
887
|
+
text-align-last: var(--xmlui-textAlignLast-Text-abbr);
|
|
888
|
+
word-break: var(--xmlui-wordBreak-Text-abbr);
|
|
889
|
+
word-wrap: var(--xmlui-wordWrap-Text-abbr);
|
|
890
|
+
direction: var(--xmlui-direction-Text-abbr);
|
|
891
|
+
writing-mode: var(--xmlui-writingMode-Text-abbr);
|
|
892
|
+
line-break: var(--xmlui-lineBreak-Text-abbr);
|
|
786
893
|
margin-top: var(--xmlui-marginTop-Text-abbr);
|
|
787
894
|
margin-bottom: var(--xmlui-marginBottom-Text-abbr);
|
|
788
|
-
text-transform: var(--xmlui-textTransform-Text-abbr);
|
|
789
895
|
vertical-align: var(--xmlui-verticalAlign-Text-abbr);
|
|
790
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-abbr);
|
|
791
896
|
}
|
|
792
|
-
.
|
|
897
|
+
._text_wtc9w_13._cite_wtc9w_186 {
|
|
898
|
+
padding: var(--xmlui-padding-Text-cite);
|
|
899
|
+
padding-left: var(--xmlui-paddingLeft-Text-cite, var(--xmlui-paddingHorizontal-Text-cite, var(--xmlui-padding-Text-cite)));
|
|
900
|
+
padding-right: var(--xmlui-paddingRight-Text-cite, var(--xmlui-paddingHorizontal-Text-cite, var(--xmlui-padding-Text-cite)));
|
|
901
|
+
padding-top: var(--xmlui-paddingTop-Text-cite, var(--xmlui-paddingVertical-Text-cite, var(--xmlui-padding-Text-cite)));
|
|
902
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-cite, var(--xmlui-paddingVertical-Text-cite, var(--xmlui-padding-Text-cite)));
|
|
903
|
+
border-left: var(--xmlui-borderLeft-Text-cite, var(--xmlui-borderHorizontal-Text-cite, var(--xmlui-border-Text-cite)));
|
|
904
|
+
border-right: var(--xmlui-borderRight-Text-cite, var(--xmlui-borderHorizontal-Text-cite, var(--xmlui-border-Text-cite)));
|
|
905
|
+
border-top: var(--xmlui-borderTop-Text-cite, var(--xmlui-borderVertical-Text-cite, var(--xmlui-border-Text-cite)));
|
|
906
|
+
border-bottom: var(--xmlui-borderBottom-Text-cite, var(--xmlui-borderVertical-Text-cite, var(--xmlui-border-Text-cite)));
|
|
907
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-cite, var(--xmlui-borderHorizontalStyle-Text-cite, var(--xmlui-borderStyle-Text-cite)));
|
|
908
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-cite, var(--xmlui-borderHorizontalStyle-Text-cite, var(--xmlui-borderStyle-Text-cite)));
|
|
909
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-cite, var(--xmlui-borderVerticalStyle-Text-cite, var(--xmlui-borderStyle-Text-cite)));
|
|
910
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-cite, var(--xmlui-borderVerticalStyle-Text-cite, var(--xmlui-borderStyle-Text-cite)));
|
|
911
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-cite, var(--xmlui-borderHorizontalWidth-Text-cite, var(--xmlui-borderWidth-Text-cite)));
|
|
912
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-cite, var(--xmlui-borderHorizontalWidth-Text-cite, var(--xmlui-borderWidth-Text-cite)));
|
|
913
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-cite, var(--xmlui-borderVerticalWidth-Text-cite, var(--xmlui-borderWidth-Text-cite)));
|
|
914
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-cite, var(--xmlui-borderVerticalWidth-Text-cite, var(--xmlui-borderWidth-Text-cite)));
|
|
915
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-cite, var(--xmlui-borderHorizontalColor-Text-cite, var(--xmlui-borderColor-Text-cite)));
|
|
916
|
+
border-right-color: var(--xmlui-borderRightColor-Text-cite, var(--xmlui-borderHorizontalColor-Text-cite, var(--xmlui-borderColor-Text-cite)));
|
|
917
|
+
border-top-color: var(--xmlui-borderTopColor-Text-cite, var(--xmlui-borderVerticalColor-Text-cite, var(--xmlui-borderColor-Text-cite)));
|
|
918
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-cite, var(--xmlui-borderVerticalColor-Text-cite, var(--xmlui-borderColor-Text-cite)));
|
|
919
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-cite, var(--xmlui-borderRadius-Text-cite));
|
|
920
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-cite, var(--xmlui-borderRadius-Text-cite));
|
|
921
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-cite, var(--xmlui-borderRadius-Text-cite));
|
|
922
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-cite, var(--xmlui-borderRadius-Text-cite));
|
|
923
|
+
color: var(--xmlui-textColor-Text-cite);
|
|
793
924
|
font-family: var(--xmlui-fontFamily-Text-cite);
|
|
794
925
|
font-size: var(--xmlui-fontSize-Text-cite);
|
|
795
|
-
font-weight: var(--xmlui-fontWeight-Text-cite);
|
|
796
926
|
font-style: var(--xmlui-fontStyle-Text-cite);
|
|
927
|
+
font-weight: var(--xmlui-fontWeight-Text-cite);
|
|
797
928
|
font-stretch: var(--xmlui-fontStretch-Text-cite);
|
|
798
929
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-cite);
|
|
799
930
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-cite);
|
|
@@ -801,31 +932,57 @@
|
|
|
801
932
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-cite);
|
|
802
933
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-cite);
|
|
803
934
|
line-height: var(--xmlui-lineHeight-Text-cite);
|
|
804
|
-
color: var(--xmlui-textColor-Text-cite);
|
|
805
935
|
background-color: var(--xmlui-backgroundColor-Text-cite);
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
936
|
+
text-transform: var(--xmlui-textTransform-Text-cite);
|
|
937
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-cite);
|
|
938
|
+
word-spacing: var(--xmlui-wordSpacing-Text-cite);
|
|
939
|
+
text-shadow: var(--xmlui-textShadow-Text-cite);
|
|
940
|
+
text-indent: var(--xmlui-textIndent-Text-cite);
|
|
941
|
+
text-align: var(--xmlui-textAlign-Text-cite);
|
|
942
|
+
text-align-last: var(--xmlui-textAlignLast-Text-cite);
|
|
943
|
+
word-break: var(--xmlui-wordBreak-Text-cite);
|
|
944
|
+
word-wrap: var(--xmlui-wordWrap-Text-cite);
|
|
945
|
+
direction: var(--xmlui-direction-Text-cite);
|
|
946
|
+
writing-mode: var(--xmlui-writingMode-Text-cite);
|
|
947
|
+
line-break: var(--xmlui-lineBreak-Text-cite);
|
|
815
948
|
margin-top: var(--xmlui-marginTop-Text-cite);
|
|
816
949
|
margin-bottom: var(--xmlui-marginBottom-Text-cite);
|
|
817
|
-
text-transform: var(--xmlui-textTransform-Text-cite);
|
|
818
950
|
vertical-align: var(--xmlui-verticalAlign-Text-cite);
|
|
819
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-cite);
|
|
820
951
|
}
|
|
821
|
-
.
|
|
952
|
+
._text_wtc9w_13 ._text_wtc9w_13._codefence_wtc9w_241 {
|
|
822
953
|
display: block;
|
|
823
954
|
}
|
|
824
|
-
:not(.
|
|
955
|
+
:not(._text_wtc9w_13._codefence_wtc9w_241) > ._text_wtc9w_13._code_wtc9w_241 {
|
|
956
|
+
padding: var(--xmlui-padding-Text-code);
|
|
957
|
+
padding-left: var(--xmlui-paddingLeft-Text-code, var(--xmlui-paddingHorizontal-Text-code, var(--xmlui-padding-Text-code)));
|
|
958
|
+
padding-right: var(--xmlui-paddingRight-Text-code, var(--xmlui-paddingHorizontal-Text-code, var(--xmlui-padding-Text-code)));
|
|
959
|
+
padding-top: var(--xmlui-paddingTop-Text-code, var(--xmlui-paddingVertical-Text-code, var(--xmlui-padding-Text-code)));
|
|
960
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-code, var(--xmlui-paddingVertical-Text-code, var(--xmlui-padding-Text-code)));
|
|
961
|
+
border-left: var(--xmlui-borderLeft-Text-code, var(--xmlui-borderHorizontal-Text-code, var(--xmlui-border-Text-code)));
|
|
962
|
+
border-right: var(--xmlui-borderRight-Text-code, var(--xmlui-borderHorizontal-Text-code, var(--xmlui-border-Text-code)));
|
|
963
|
+
border-top: var(--xmlui-borderTop-Text-code, var(--xmlui-borderVertical-Text-code, var(--xmlui-border-Text-code)));
|
|
964
|
+
border-bottom: var(--xmlui-borderBottom-Text-code, var(--xmlui-borderVertical-Text-code, var(--xmlui-border-Text-code)));
|
|
965
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-code, var(--xmlui-borderHorizontalStyle-Text-code, var(--xmlui-borderStyle-Text-code)));
|
|
966
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-code, var(--xmlui-borderHorizontalStyle-Text-code, var(--xmlui-borderStyle-Text-code)));
|
|
967
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-code, var(--xmlui-borderVerticalStyle-Text-code, var(--xmlui-borderStyle-Text-code)));
|
|
968
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-code, var(--xmlui-borderVerticalStyle-Text-code, var(--xmlui-borderStyle-Text-code)));
|
|
969
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-code, var(--xmlui-borderHorizontalWidth-Text-code, var(--xmlui-borderWidth-Text-code)));
|
|
970
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-code, var(--xmlui-borderHorizontalWidth-Text-code, var(--xmlui-borderWidth-Text-code)));
|
|
971
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-code, var(--xmlui-borderVerticalWidth-Text-code, var(--xmlui-borderWidth-Text-code)));
|
|
972
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-code, var(--xmlui-borderVerticalWidth-Text-code, var(--xmlui-borderWidth-Text-code)));
|
|
973
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-code, var(--xmlui-borderHorizontalColor-Text-code, var(--xmlui-borderColor-Text-code)));
|
|
974
|
+
border-right-color: var(--xmlui-borderRightColor-Text-code, var(--xmlui-borderHorizontalColor-Text-code, var(--xmlui-borderColor-Text-code)));
|
|
975
|
+
border-top-color: var(--xmlui-borderTopColor-Text-code, var(--xmlui-borderVerticalColor-Text-code, var(--xmlui-borderColor-Text-code)));
|
|
976
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-code, var(--xmlui-borderVerticalColor-Text-code, var(--xmlui-borderColor-Text-code)));
|
|
977
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-code, var(--xmlui-borderRadius-Text-code));
|
|
978
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-code, var(--xmlui-borderRadius-Text-code));
|
|
979
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-code, var(--xmlui-borderRadius-Text-code));
|
|
980
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-code, var(--xmlui-borderRadius-Text-code));
|
|
981
|
+
color: var(--xmlui-textColor-Text-code);
|
|
825
982
|
font-family: var(--xmlui-fontFamily-Text-code);
|
|
826
983
|
font-size: var(--xmlui-fontSize-Text-code);
|
|
827
|
-
font-weight: var(--xmlui-fontWeight-Text-code);
|
|
828
984
|
font-style: var(--xmlui-fontStyle-Text-code);
|
|
985
|
+
font-weight: var(--xmlui-fontWeight-Text-code);
|
|
829
986
|
font-stretch: var(--xmlui-fontStretch-Text-code);
|
|
830
987
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-code);
|
|
831
988
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-code);
|
|
@@ -833,28 +990,54 @@
|
|
|
833
990
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-code);
|
|
834
991
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-code);
|
|
835
992
|
line-height: var(--xmlui-lineHeight-Text-code);
|
|
836
|
-
color: var(--xmlui-textColor-Text-code);
|
|
837
993
|
background-color: var(--xmlui-backgroundColor-Text-code);
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
994
|
+
text-transform: var(--xmlui-textTransform-Text-code);
|
|
995
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-code);
|
|
996
|
+
word-spacing: var(--xmlui-wordSpacing-Text-code);
|
|
997
|
+
text-shadow: var(--xmlui-textShadow-Text-code);
|
|
998
|
+
text-indent: var(--xmlui-textIndent-Text-code);
|
|
999
|
+
text-align: var(--xmlui-textAlign-Text-code);
|
|
1000
|
+
text-align-last: var(--xmlui-textAlignLast-Text-code);
|
|
1001
|
+
word-break: var(--xmlui-wordBreak-Text-code);
|
|
1002
|
+
word-wrap: var(--xmlui-wordWrap-Text-code);
|
|
1003
|
+
direction: var(--xmlui-direction-Text-code);
|
|
1004
|
+
writing-mode: var(--xmlui-writingMode-Text-code);
|
|
1005
|
+
line-break: var(--xmlui-lineBreak-Text-code);
|
|
847
1006
|
margin-top: var(--xmlui-marginTop-Text-code);
|
|
848
1007
|
margin-bottom: var(--xmlui-marginBottom-Text-code);
|
|
849
|
-
text-transform: var(--xmlui-textTransform-Text-code);
|
|
850
1008
|
vertical-align: var(--xmlui-verticalAlign-Text-code);
|
|
851
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-code);
|
|
852
1009
|
}
|
|
853
|
-
.
|
|
1010
|
+
._text_wtc9w_13._codefence_wtc9w_241:has(> ._text_wtc9w_13._code_wtc9w_241) {
|
|
1011
|
+
padding: var(--xmlui-padding-Text-codefence);
|
|
1012
|
+
padding-left: var(--xmlui-paddingLeft-Text-codefence, var(--xmlui-paddingHorizontal-Text-codefence, var(--xmlui-padding-Text-codefence)));
|
|
1013
|
+
padding-right: var(--xmlui-paddingRight-Text-codefence, var(--xmlui-paddingHorizontal-Text-codefence, var(--xmlui-padding-Text-codefence)));
|
|
1014
|
+
padding-top: var(--xmlui-paddingTop-Text-codefence, var(--xmlui-paddingVertical-Text-codefence, var(--xmlui-padding-Text-codefence)));
|
|
1015
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-codefence, var(--xmlui-paddingVertical-Text-codefence, var(--xmlui-padding-Text-codefence)));
|
|
1016
|
+
border-left: var(--xmlui-borderLeft-Text-codefence, var(--xmlui-borderHorizontal-Text-codefence, var(--xmlui-border-Text-codefence)));
|
|
1017
|
+
border-right: var(--xmlui-borderRight-Text-codefence, var(--xmlui-borderHorizontal-Text-codefence, var(--xmlui-border-Text-codefence)));
|
|
1018
|
+
border-top: var(--xmlui-borderTop-Text-codefence, var(--xmlui-borderVertical-Text-codefence, var(--xmlui-border-Text-codefence)));
|
|
1019
|
+
border-bottom: var(--xmlui-borderBottom-Text-codefence, var(--xmlui-borderVertical-Text-codefence, var(--xmlui-border-Text-codefence)));
|
|
1020
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-codefence, var(--xmlui-borderHorizontalStyle-Text-codefence, var(--xmlui-borderStyle-Text-codefence)));
|
|
1021
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-codefence, var(--xmlui-borderHorizontalStyle-Text-codefence, var(--xmlui-borderStyle-Text-codefence)));
|
|
1022
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-codefence, var(--xmlui-borderVerticalStyle-Text-codefence, var(--xmlui-borderStyle-Text-codefence)));
|
|
1023
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-codefence, var(--xmlui-borderVerticalStyle-Text-codefence, var(--xmlui-borderStyle-Text-codefence)));
|
|
1024
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-codefence, var(--xmlui-borderHorizontalWidth-Text-codefence, var(--xmlui-borderWidth-Text-codefence)));
|
|
1025
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-codefence, var(--xmlui-borderHorizontalWidth-Text-codefence, var(--xmlui-borderWidth-Text-codefence)));
|
|
1026
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-codefence, var(--xmlui-borderVerticalWidth-Text-codefence, var(--xmlui-borderWidth-Text-codefence)));
|
|
1027
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-codefence, var(--xmlui-borderVerticalWidth-Text-codefence, var(--xmlui-borderWidth-Text-codefence)));
|
|
1028
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-codefence, var(--xmlui-borderHorizontalColor-Text-codefence, var(--xmlui-borderColor-Text-codefence)));
|
|
1029
|
+
border-right-color: var(--xmlui-borderRightColor-Text-codefence, var(--xmlui-borderHorizontalColor-Text-codefence, var(--xmlui-borderColor-Text-codefence)));
|
|
1030
|
+
border-top-color: var(--xmlui-borderTopColor-Text-codefence, var(--xmlui-borderVerticalColor-Text-codefence, var(--xmlui-borderColor-Text-codefence)));
|
|
1031
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-codefence, var(--xmlui-borderVerticalColor-Text-codefence, var(--xmlui-borderColor-Text-codefence)));
|
|
1032
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-codefence, var(--xmlui-borderRadius-Text-codefence));
|
|
1033
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-codefence, var(--xmlui-borderRadius-Text-codefence));
|
|
1034
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-codefence, var(--xmlui-borderRadius-Text-codefence));
|
|
1035
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-codefence, var(--xmlui-borderRadius-Text-codefence));
|
|
1036
|
+
color: var(--xmlui-textColor-Text-codefence);
|
|
854
1037
|
font-family: var(--xmlui-fontFamily-Text-codefence);
|
|
855
1038
|
font-size: var(--xmlui-fontSize-Text-codefence);
|
|
856
|
-
font-weight: var(--xmlui-fontWeight-Text-codefence);
|
|
857
1039
|
font-style: var(--xmlui-fontStyle-Text-codefence);
|
|
1040
|
+
font-weight: var(--xmlui-fontWeight-Text-codefence);
|
|
858
1041
|
font-stretch: var(--xmlui-fontStretch-Text-codefence);
|
|
859
1042
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-codefence);
|
|
860
1043
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-codefence);
|
|
@@ -862,30 +1045,56 @@
|
|
|
862
1045
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-codefence);
|
|
863
1046
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-codefence);
|
|
864
1047
|
line-height: var(--xmlui-lineHeight-Text-codefence);
|
|
865
|
-
color: var(--xmlui-textColor-Text-codefence);
|
|
866
1048
|
background-color: var(--xmlui-backgroundColor-Text-codefence);
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
1049
|
+
text-transform: var(--xmlui-textTransform-Text-codefence);
|
|
1050
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-codefence);
|
|
1051
|
+
word-spacing: var(--xmlui-wordSpacing-Text-codefence);
|
|
1052
|
+
text-shadow: var(--xmlui-textShadow-Text-codefence);
|
|
1053
|
+
text-indent: var(--xmlui-textIndent-Text-codefence);
|
|
1054
|
+
text-align: var(--xmlui-textAlign-Text-codefence);
|
|
1055
|
+
text-align-last: var(--xmlui-textAlignLast-Text-codefence);
|
|
1056
|
+
word-break: var(--xmlui-wordBreak-Text-codefence);
|
|
1057
|
+
word-wrap: var(--xmlui-wordWrap-Text-codefence);
|
|
1058
|
+
direction: var(--xmlui-direction-Text-codefence);
|
|
1059
|
+
writing-mode: var(--xmlui-writingMode-Text-codefence);
|
|
1060
|
+
line-break: var(--xmlui-lineBreak-Text-codefence);
|
|
876
1061
|
margin-top: var(--xmlui-marginTop-Text-codefence);
|
|
877
1062
|
margin-bottom: var(--xmlui-marginBottom-Text-codefence);
|
|
878
|
-
text-transform: var(--xmlui-textTransform-Text-codefence);
|
|
879
1063
|
vertical-align: var(--xmlui-verticalAlign-Text-codefence);
|
|
880
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-codefence);
|
|
881
1064
|
overflow-x: auto;
|
|
882
1065
|
text-overflow: initial;
|
|
883
1066
|
}
|
|
884
|
-
.
|
|
1067
|
+
._text_wtc9w_13._deleted_wtc9w_356 {
|
|
1068
|
+
padding: var(--xmlui-padding-Text-deleted);
|
|
1069
|
+
padding-left: var(--xmlui-paddingLeft-Text-deleted, var(--xmlui-paddingHorizontal-Text-deleted, var(--xmlui-padding-Text-deleted)));
|
|
1070
|
+
padding-right: var(--xmlui-paddingRight-Text-deleted, var(--xmlui-paddingHorizontal-Text-deleted, var(--xmlui-padding-Text-deleted)));
|
|
1071
|
+
padding-top: var(--xmlui-paddingTop-Text-deleted, var(--xmlui-paddingVertical-Text-deleted, var(--xmlui-padding-Text-deleted)));
|
|
1072
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-deleted, var(--xmlui-paddingVertical-Text-deleted, var(--xmlui-padding-Text-deleted)));
|
|
1073
|
+
border-left: var(--xmlui-borderLeft-Text-deleted, var(--xmlui-borderHorizontal-Text-deleted, var(--xmlui-border-Text-deleted)));
|
|
1074
|
+
border-right: var(--xmlui-borderRight-Text-deleted, var(--xmlui-borderHorizontal-Text-deleted, var(--xmlui-border-Text-deleted)));
|
|
1075
|
+
border-top: var(--xmlui-borderTop-Text-deleted, var(--xmlui-borderVertical-Text-deleted, var(--xmlui-border-Text-deleted)));
|
|
1076
|
+
border-bottom: var(--xmlui-borderBottom-Text-deleted, var(--xmlui-borderVertical-Text-deleted, var(--xmlui-border-Text-deleted)));
|
|
1077
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-deleted, var(--xmlui-borderHorizontalStyle-Text-deleted, var(--xmlui-borderStyle-Text-deleted)));
|
|
1078
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-deleted, var(--xmlui-borderHorizontalStyle-Text-deleted, var(--xmlui-borderStyle-Text-deleted)));
|
|
1079
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-deleted, var(--xmlui-borderVerticalStyle-Text-deleted, var(--xmlui-borderStyle-Text-deleted)));
|
|
1080
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-deleted, var(--xmlui-borderVerticalStyle-Text-deleted, var(--xmlui-borderStyle-Text-deleted)));
|
|
1081
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-deleted, var(--xmlui-borderHorizontalWidth-Text-deleted, var(--xmlui-borderWidth-Text-deleted)));
|
|
1082
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-deleted, var(--xmlui-borderHorizontalWidth-Text-deleted, var(--xmlui-borderWidth-Text-deleted)));
|
|
1083
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-deleted, var(--xmlui-borderVerticalWidth-Text-deleted, var(--xmlui-borderWidth-Text-deleted)));
|
|
1084
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-deleted, var(--xmlui-borderVerticalWidth-Text-deleted, var(--xmlui-borderWidth-Text-deleted)));
|
|
1085
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-deleted, var(--xmlui-borderHorizontalColor-Text-deleted, var(--xmlui-borderColor-Text-deleted)));
|
|
1086
|
+
border-right-color: var(--xmlui-borderRightColor-Text-deleted, var(--xmlui-borderHorizontalColor-Text-deleted, var(--xmlui-borderColor-Text-deleted)));
|
|
1087
|
+
border-top-color: var(--xmlui-borderTopColor-Text-deleted, var(--xmlui-borderVerticalColor-Text-deleted, var(--xmlui-borderColor-Text-deleted)));
|
|
1088
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-deleted, var(--xmlui-borderVerticalColor-Text-deleted, var(--xmlui-borderColor-Text-deleted)));
|
|
1089
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-deleted, var(--xmlui-borderRadius-Text-deleted));
|
|
1090
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-deleted, var(--xmlui-borderRadius-Text-deleted));
|
|
1091
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-deleted, var(--xmlui-borderRadius-Text-deleted));
|
|
1092
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-deleted, var(--xmlui-borderRadius-Text-deleted));
|
|
1093
|
+
color: var(--xmlui-textColor-Text-deleted);
|
|
885
1094
|
font-family: var(--xmlui-fontFamily-Text-deleted);
|
|
886
1095
|
font-size: var(--xmlui-fontSize-Text-deleted);
|
|
887
|
-
font-weight: var(--xmlui-fontWeight-Text-deleted);
|
|
888
1096
|
font-style: var(--xmlui-fontStyle-Text-deleted);
|
|
1097
|
+
font-weight: var(--xmlui-fontWeight-Text-deleted);
|
|
889
1098
|
font-stretch: var(--xmlui-fontStretch-Text-deleted);
|
|
890
1099
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-deleted);
|
|
891
1100
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-deleted);
|
|
@@ -893,24 +1102,24 @@
|
|
|
893
1102
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-deleted);
|
|
894
1103
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-deleted);
|
|
895
1104
|
line-height: var(--xmlui-lineHeight-Text-deleted);
|
|
896
|
-
color: var(--xmlui-textColor-Text-deleted);
|
|
897
1105
|
background-color: var(--xmlui-backgroundColor-Text-deleted);
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
1106
|
+
text-transform: var(--xmlui-textTransform-Text-deleted);
|
|
1107
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-deleted);
|
|
1108
|
+
word-spacing: var(--xmlui-wordSpacing-Text-deleted);
|
|
1109
|
+
text-shadow: var(--xmlui-textShadow-Text-deleted);
|
|
1110
|
+
text-indent: var(--xmlui-textIndent-Text-deleted);
|
|
1111
|
+
text-align: var(--xmlui-textAlign-Text-deleted);
|
|
1112
|
+
text-align-last: var(--xmlui-textAlignLast-Text-deleted);
|
|
1113
|
+
word-break: var(--xmlui-wordBreak-Text-deleted);
|
|
1114
|
+
word-wrap: var(--xmlui-wordWrap-Text-deleted);
|
|
1115
|
+
direction: var(--xmlui-direction-Text-deleted);
|
|
1116
|
+
writing-mode: var(--xmlui-writingMode-Text-deleted);
|
|
1117
|
+
line-break: var(--xmlui-lineBreak-Text-deleted);
|
|
907
1118
|
margin-top: var(--xmlui-marginTop-Text-deleted);
|
|
908
1119
|
margin-bottom: var(--xmlui-marginBottom-Text-deleted);
|
|
909
|
-
text-transform: var(--xmlui-textTransform-Text-deleted);
|
|
910
1120
|
vertical-align: var(--xmlui-verticalAlign-Text-deleted);
|
|
911
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-deleted);
|
|
912
1121
|
}
|
|
913
|
-
.
|
|
1122
|
+
._text_wtc9w_13._deleted_wtc9w_356::before, ._text_wtc9w_13._deleted_wtc9w_356::after {
|
|
914
1123
|
clip-path: inset(100%);
|
|
915
1124
|
clip: rect(1px, 1px, 1px, 1px);
|
|
916
1125
|
height: 1px;
|
|
@@ -919,17 +1128,43 @@
|
|
|
919
1128
|
white-space: nowrap;
|
|
920
1129
|
width: 1px;
|
|
921
1130
|
}
|
|
922
|
-
.
|
|
1131
|
+
._text_wtc9w_13._deleted_wtc9w_356::before {
|
|
923
1132
|
content: " [deletion start] ";
|
|
924
1133
|
}
|
|
925
|
-
.
|
|
1134
|
+
._text_wtc9w_13._deleted_wtc9w_356::after {
|
|
926
1135
|
content: " [deletion end] ";
|
|
927
1136
|
}
|
|
928
|
-
.
|
|
1137
|
+
._text_wtc9w_13._inserted_wtc9w_426 {
|
|
1138
|
+
padding: var(--xmlui-padding-Text-inserted);
|
|
1139
|
+
padding-left: var(--xmlui-paddingLeft-Text-inserted, var(--xmlui-paddingHorizontal-Text-inserted, var(--xmlui-padding-Text-inserted)));
|
|
1140
|
+
padding-right: var(--xmlui-paddingRight-Text-inserted, var(--xmlui-paddingHorizontal-Text-inserted, var(--xmlui-padding-Text-inserted)));
|
|
1141
|
+
padding-top: var(--xmlui-paddingTop-Text-inserted, var(--xmlui-paddingVertical-Text-inserted, var(--xmlui-padding-Text-inserted)));
|
|
1142
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-inserted, var(--xmlui-paddingVertical-Text-inserted, var(--xmlui-padding-Text-inserted)));
|
|
1143
|
+
border-left: var(--xmlui-borderLeft-Text-inserted, var(--xmlui-borderHorizontal-Text-inserted, var(--xmlui-border-Text-inserted)));
|
|
1144
|
+
border-right: var(--xmlui-borderRight-Text-inserted, var(--xmlui-borderHorizontal-Text-inserted, var(--xmlui-border-Text-inserted)));
|
|
1145
|
+
border-top: var(--xmlui-borderTop-Text-inserted, var(--xmlui-borderVertical-Text-inserted, var(--xmlui-border-Text-inserted)));
|
|
1146
|
+
border-bottom: var(--xmlui-borderBottom-Text-inserted, var(--xmlui-borderVertical-Text-inserted, var(--xmlui-border-Text-inserted)));
|
|
1147
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-inserted, var(--xmlui-borderHorizontalStyle-Text-inserted, var(--xmlui-borderStyle-Text-inserted)));
|
|
1148
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-inserted, var(--xmlui-borderHorizontalStyle-Text-inserted, var(--xmlui-borderStyle-Text-inserted)));
|
|
1149
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-inserted, var(--xmlui-borderVerticalStyle-Text-inserted, var(--xmlui-borderStyle-Text-inserted)));
|
|
1150
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-inserted, var(--xmlui-borderVerticalStyle-Text-inserted, var(--xmlui-borderStyle-Text-inserted)));
|
|
1151
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-inserted, var(--xmlui-borderHorizontalWidth-Text-inserted, var(--xmlui-borderWidth-Text-inserted)));
|
|
1152
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-inserted, var(--xmlui-borderHorizontalWidth-Text-inserted, var(--xmlui-borderWidth-Text-inserted)));
|
|
1153
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-inserted, var(--xmlui-borderVerticalWidth-Text-inserted, var(--xmlui-borderWidth-Text-inserted)));
|
|
1154
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-inserted, var(--xmlui-borderVerticalWidth-Text-inserted, var(--xmlui-borderWidth-Text-inserted)));
|
|
1155
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-inserted, var(--xmlui-borderHorizontalColor-Text-inserted, var(--xmlui-borderColor-Text-inserted)));
|
|
1156
|
+
border-right-color: var(--xmlui-borderRightColor-Text-inserted, var(--xmlui-borderHorizontalColor-Text-inserted, var(--xmlui-borderColor-Text-inserted)));
|
|
1157
|
+
border-top-color: var(--xmlui-borderTopColor-Text-inserted, var(--xmlui-borderVerticalColor-Text-inserted, var(--xmlui-borderColor-Text-inserted)));
|
|
1158
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-inserted, var(--xmlui-borderVerticalColor-Text-inserted, var(--xmlui-borderColor-Text-inserted)));
|
|
1159
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-inserted, var(--xmlui-borderRadius-Text-inserted));
|
|
1160
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-inserted, var(--xmlui-borderRadius-Text-inserted));
|
|
1161
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-inserted, var(--xmlui-borderRadius-Text-inserted));
|
|
1162
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-inserted, var(--xmlui-borderRadius-Text-inserted));
|
|
1163
|
+
color: var(--xmlui-textColor-Text-inserted);
|
|
929
1164
|
font-family: var(--xmlui-fontFamily-Text-inserted);
|
|
930
1165
|
font-size: var(--xmlui-fontSize-Text-inserted);
|
|
931
|
-
font-weight: var(--xmlui-fontWeight-Text-inserted);
|
|
932
1166
|
font-style: var(--xmlui-fontStyle-Text-inserted);
|
|
1167
|
+
font-weight: var(--xmlui-fontWeight-Text-inserted);
|
|
933
1168
|
font-stretch: var(--xmlui-fontStretch-Text-inserted);
|
|
934
1169
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-inserted);
|
|
935
1170
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-inserted);
|
|
@@ -937,24 +1172,24 @@
|
|
|
937
1172
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-inserted);
|
|
938
1173
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-inserted);
|
|
939
1174
|
line-height: var(--xmlui-lineHeight-Text-inserted);
|
|
940
|
-
color: var(--xmlui-textColor-Text-inserted);
|
|
941
1175
|
background-color: var(--xmlui-backgroundColor-Text-inserted);
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
1176
|
+
text-transform: var(--xmlui-textTransform-Text-inserted);
|
|
1177
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-inserted);
|
|
1178
|
+
word-spacing: var(--xmlui-wordSpacing-Text-inserted);
|
|
1179
|
+
text-shadow: var(--xmlui-textShadow-Text-inserted);
|
|
1180
|
+
text-indent: var(--xmlui-textIndent-Text-inserted);
|
|
1181
|
+
text-align: var(--xmlui-textAlign-Text-inserted);
|
|
1182
|
+
text-align-last: var(--xmlui-textAlignLast-Text-inserted);
|
|
1183
|
+
word-break: var(--xmlui-wordBreak-Text-inserted);
|
|
1184
|
+
word-wrap: var(--xmlui-wordWrap-Text-inserted);
|
|
1185
|
+
direction: var(--xmlui-direction-Text-inserted);
|
|
1186
|
+
writing-mode: var(--xmlui-writingMode-Text-inserted);
|
|
1187
|
+
line-break: var(--xmlui-lineBreak-Text-inserted);
|
|
951
1188
|
margin-top: var(--xmlui-marginTop-Text-inserted);
|
|
952
1189
|
margin-bottom: var(--xmlui-marginBottom-Text-inserted);
|
|
953
|
-
text-transform: var(--xmlui-textTransform-Text-inserted);
|
|
954
1190
|
vertical-align: var(--xmlui-verticalAlign-Text-inserted);
|
|
955
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-inserted);
|
|
956
1191
|
}
|
|
957
|
-
.
|
|
1192
|
+
._text_wtc9w_13._inserted_wtc9w_426::before, ._text_wtc9w_13._inserted_wtc9w_426::after {
|
|
958
1193
|
clip-path: inset(100%);
|
|
959
1194
|
clip: rect(1px, 1px, 1px, 1px);
|
|
960
1195
|
height: 1px;
|
|
@@ -963,17 +1198,43 @@
|
|
|
963
1198
|
white-space: nowrap;
|
|
964
1199
|
width: 1px;
|
|
965
1200
|
}
|
|
966
|
-
.
|
|
1201
|
+
._text_wtc9w_13._inserted_wtc9w_426::before {
|
|
967
1202
|
content: " [insertion start] ";
|
|
968
1203
|
}
|
|
969
|
-
.
|
|
1204
|
+
._text_wtc9w_13._inserted_wtc9w_426::after {
|
|
970
1205
|
content: " [insertion end] ";
|
|
971
1206
|
}
|
|
972
|
-
.
|
|
1207
|
+
._text_wtc9w_13._keyboard_wtc9w_496 {
|
|
1208
|
+
padding: var(--xmlui-padding-Text-keyboard);
|
|
1209
|
+
padding-left: var(--xmlui-paddingLeft-Text-keyboard, var(--xmlui-paddingHorizontal-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
|
|
1210
|
+
padding-right: var(--xmlui-paddingRight-Text-keyboard, var(--xmlui-paddingHorizontal-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
|
|
1211
|
+
padding-top: var(--xmlui-paddingTop-Text-keyboard, var(--xmlui-paddingVertical-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
|
|
1212
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-keyboard, var(--xmlui-paddingVertical-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
|
|
1213
|
+
border-left: var(--xmlui-borderLeft-Text-keyboard, var(--xmlui-borderHorizontal-Text-keyboard, var(--xmlui-border-Text-keyboard)));
|
|
1214
|
+
border-right: var(--xmlui-borderRight-Text-keyboard, var(--xmlui-borderHorizontal-Text-keyboard, var(--xmlui-border-Text-keyboard)));
|
|
1215
|
+
border-top: var(--xmlui-borderTop-Text-keyboard, var(--xmlui-borderVertical-Text-keyboard, var(--xmlui-border-Text-keyboard)));
|
|
1216
|
+
border-bottom: var(--xmlui-borderBottom-Text-keyboard, var(--xmlui-borderVertical-Text-keyboard, var(--xmlui-border-Text-keyboard)));
|
|
1217
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-keyboard, var(--xmlui-borderHorizontalStyle-Text-keyboard, var(--xmlui-borderStyle-Text-keyboard)));
|
|
1218
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-keyboard, var(--xmlui-borderHorizontalStyle-Text-keyboard, var(--xmlui-borderStyle-Text-keyboard)));
|
|
1219
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-keyboard, var(--xmlui-borderVerticalStyle-Text-keyboard, var(--xmlui-borderStyle-Text-keyboard)));
|
|
1220
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-keyboard, var(--xmlui-borderVerticalStyle-Text-keyboard, var(--xmlui-borderStyle-Text-keyboard)));
|
|
1221
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-keyboard, var(--xmlui-borderHorizontalWidth-Text-keyboard, var(--xmlui-borderWidth-Text-keyboard)));
|
|
1222
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-keyboard, var(--xmlui-borderHorizontalWidth-Text-keyboard, var(--xmlui-borderWidth-Text-keyboard)));
|
|
1223
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-keyboard, var(--xmlui-borderVerticalWidth-Text-keyboard, var(--xmlui-borderWidth-Text-keyboard)));
|
|
1224
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-keyboard, var(--xmlui-borderVerticalWidth-Text-keyboard, var(--xmlui-borderWidth-Text-keyboard)));
|
|
1225
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-keyboard, var(--xmlui-borderHorizontalColor-Text-keyboard, var(--xmlui-borderColor-Text-keyboard)));
|
|
1226
|
+
border-right-color: var(--xmlui-borderRightColor-Text-keyboard, var(--xmlui-borderHorizontalColor-Text-keyboard, var(--xmlui-borderColor-Text-keyboard)));
|
|
1227
|
+
border-top-color: var(--xmlui-borderTopColor-Text-keyboard, var(--xmlui-borderVerticalColor-Text-keyboard, var(--xmlui-borderColor-Text-keyboard)));
|
|
1228
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-keyboard, var(--xmlui-borderVerticalColor-Text-keyboard, var(--xmlui-borderColor-Text-keyboard)));
|
|
1229
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-keyboard, var(--xmlui-borderRadius-Text-keyboard));
|
|
1230
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-keyboard, var(--xmlui-borderRadius-Text-keyboard));
|
|
1231
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-keyboard, var(--xmlui-borderRadius-Text-keyboard));
|
|
1232
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-keyboard, var(--xmlui-borderRadius-Text-keyboard));
|
|
1233
|
+
color: var(--xmlui-textColor-Text-keyboard);
|
|
973
1234
|
font-family: var(--xmlui-fontFamily-Text-keyboard);
|
|
974
1235
|
font-size: var(--xmlui-fontSize-Text-keyboard);
|
|
975
|
-
font-weight: var(--xmlui-fontWeight-Text-keyboard);
|
|
976
1236
|
font-style: var(--xmlui-fontStyle-Text-keyboard);
|
|
1237
|
+
font-weight: var(--xmlui-fontWeight-Text-keyboard);
|
|
977
1238
|
font-stretch: var(--xmlui-fontStretch-Text-keyboard);
|
|
978
1239
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-keyboard);
|
|
979
1240
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-keyboard);
|
|
@@ -981,28 +1242,54 @@
|
|
|
981
1242
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-keyboard);
|
|
982
1243
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-keyboard);
|
|
983
1244
|
line-height: var(--xmlui-lineHeight-Text-keyboard);
|
|
984
|
-
color: var(--xmlui-textColor-Text-keyboard);
|
|
985
1245
|
background-color: var(--xmlui-backgroundColor-Text-keyboard);
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
1246
|
+
text-transform: var(--xmlui-textTransform-Text-keyboard);
|
|
1247
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-keyboard);
|
|
1248
|
+
word-spacing: var(--xmlui-wordSpacing-Text-keyboard);
|
|
1249
|
+
text-shadow: var(--xmlui-textShadow-Text-keyboard);
|
|
1250
|
+
text-indent: var(--xmlui-textIndent-Text-keyboard);
|
|
1251
|
+
text-align: var(--xmlui-textAlign-Text-keyboard);
|
|
1252
|
+
text-align-last: var(--xmlui-textAlignLast-Text-keyboard);
|
|
1253
|
+
word-break: var(--xmlui-wordBreak-Text-keyboard);
|
|
1254
|
+
word-wrap: var(--xmlui-wordWrap-Text-keyboard);
|
|
1255
|
+
direction: var(--xmlui-direction-Text-keyboard);
|
|
1256
|
+
writing-mode: var(--xmlui-writingMode-Text-keyboard);
|
|
1257
|
+
line-break: var(--xmlui-lineBreak-Text-keyboard);
|
|
995
1258
|
margin-top: var(--xmlui-marginTop-Text-keyboard);
|
|
996
1259
|
margin-bottom: var(--xmlui-marginBottom-Text-keyboard);
|
|
997
|
-
text-transform: var(--xmlui-textTransform-Text-keyboard);
|
|
998
1260
|
vertical-align: var(--xmlui-verticalAlign-Text-keyboard);
|
|
999
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-keyboard);
|
|
1000
1261
|
}
|
|
1001
|
-
.
|
|
1262
|
+
._text_wtc9w_13._marked_wtc9w_551 {
|
|
1263
|
+
padding: var(--xmlui-padding-Text-marked);
|
|
1264
|
+
padding-left: var(--xmlui-paddingLeft-Text-marked, var(--xmlui-paddingHorizontal-Text-marked, var(--xmlui-padding-Text-marked)));
|
|
1265
|
+
padding-right: var(--xmlui-paddingRight-Text-marked, var(--xmlui-paddingHorizontal-Text-marked, var(--xmlui-padding-Text-marked)));
|
|
1266
|
+
padding-top: var(--xmlui-paddingTop-Text-marked, var(--xmlui-paddingVertical-Text-marked, var(--xmlui-padding-Text-marked)));
|
|
1267
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-marked, var(--xmlui-paddingVertical-Text-marked, var(--xmlui-padding-Text-marked)));
|
|
1268
|
+
border-left: var(--xmlui-borderLeft-Text-marked, var(--xmlui-borderHorizontal-Text-marked, var(--xmlui-border-Text-marked)));
|
|
1269
|
+
border-right: var(--xmlui-borderRight-Text-marked, var(--xmlui-borderHorizontal-Text-marked, var(--xmlui-border-Text-marked)));
|
|
1270
|
+
border-top: var(--xmlui-borderTop-Text-marked, var(--xmlui-borderVertical-Text-marked, var(--xmlui-border-Text-marked)));
|
|
1271
|
+
border-bottom: var(--xmlui-borderBottom-Text-marked, var(--xmlui-borderVertical-Text-marked, var(--xmlui-border-Text-marked)));
|
|
1272
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-marked, var(--xmlui-borderHorizontalStyle-Text-marked, var(--xmlui-borderStyle-Text-marked)));
|
|
1273
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-marked, var(--xmlui-borderHorizontalStyle-Text-marked, var(--xmlui-borderStyle-Text-marked)));
|
|
1274
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-marked, var(--xmlui-borderVerticalStyle-Text-marked, var(--xmlui-borderStyle-Text-marked)));
|
|
1275
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-marked, var(--xmlui-borderVerticalStyle-Text-marked, var(--xmlui-borderStyle-Text-marked)));
|
|
1276
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-marked, var(--xmlui-borderHorizontalWidth-Text-marked, var(--xmlui-borderWidth-Text-marked)));
|
|
1277
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-marked, var(--xmlui-borderHorizontalWidth-Text-marked, var(--xmlui-borderWidth-Text-marked)));
|
|
1278
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-marked, var(--xmlui-borderVerticalWidth-Text-marked, var(--xmlui-borderWidth-Text-marked)));
|
|
1279
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-marked, var(--xmlui-borderVerticalWidth-Text-marked, var(--xmlui-borderWidth-Text-marked)));
|
|
1280
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-marked, var(--xmlui-borderHorizontalColor-Text-marked, var(--xmlui-borderColor-Text-marked)));
|
|
1281
|
+
border-right-color: var(--xmlui-borderRightColor-Text-marked, var(--xmlui-borderHorizontalColor-Text-marked, var(--xmlui-borderColor-Text-marked)));
|
|
1282
|
+
border-top-color: var(--xmlui-borderTopColor-Text-marked, var(--xmlui-borderVerticalColor-Text-marked, var(--xmlui-borderColor-Text-marked)));
|
|
1283
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-marked, var(--xmlui-borderVerticalColor-Text-marked, var(--xmlui-borderColor-Text-marked)));
|
|
1284
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-marked, var(--xmlui-borderRadius-Text-marked));
|
|
1285
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-marked, var(--xmlui-borderRadius-Text-marked));
|
|
1286
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-marked, var(--xmlui-borderRadius-Text-marked));
|
|
1287
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-marked, var(--xmlui-borderRadius-Text-marked));
|
|
1288
|
+
color: var(--xmlui-textColor-Text-marked);
|
|
1002
1289
|
font-family: var(--xmlui-fontFamily-Text-marked);
|
|
1003
1290
|
font-size: var(--xmlui-fontSize-Text-marked);
|
|
1004
|
-
font-weight: var(--xmlui-fontWeight-Text-marked);
|
|
1005
1291
|
font-style: var(--xmlui-fontStyle-Text-marked);
|
|
1292
|
+
font-weight: var(--xmlui-fontWeight-Text-marked);
|
|
1006
1293
|
font-stretch: var(--xmlui-fontStretch-Text-marked);
|
|
1007
1294
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-marked);
|
|
1008
1295
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-marked);
|
|
@@ -1010,24 +1297,24 @@
|
|
|
1010
1297
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-marked);
|
|
1011
1298
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-marked);
|
|
1012
1299
|
line-height: var(--xmlui-lineHeight-Text-marked);
|
|
1013
|
-
color: var(--xmlui-textColor-Text-marked);
|
|
1014
1300
|
background-color: var(--xmlui-backgroundColor-Text-marked);
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1301
|
+
text-transform: var(--xmlui-textTransform-Text-marked);
|
|
1302
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-marked);
|
|
1303
|
+
word-spacing: var(--xmlui-wordSpacing-Text-marked);
|
|
1304
|
+
text-shadow: var(--xmlui-textShadow-Text-marked);
|
|
1305
|
+
text-indent: var(--xmlui-textIndent-Text-marked);
|
|
1306
|
+
text-align: var(--xmlui-textAlign-Text-marked);
|
|
1307
|
+
text-align-last: var(--xmlui-textAlignLast-Text-marked);
|
|
1308
|
+
word-break: var(--xmlui-wordBreak-Text-marked);
|
|
1309
|
+
word-wrap: var(--xmlui-wordWrap-Text-marked);
|
|
1310
|
+
direction: var(--xmlui-direction-Text-marked);
|
|
1311
|
+
writing-mode: var(--xmlui-writingMode-Text-marked);
|
|
1312
|
+
line-break: var(--xmlui-lineBreak-Text-marked);
|
|
1024
1313
|
margin-top: var(--xmlui-marginTop-Text-marked);
|
|
1025
1314
|
margin-bottom: var(--xmlui-marginBottom-Text-marked);
|
|
1026
|
-
text-transform: var(--xmlui-textTransform-Text-marked);
|
|
1027
1315
|
vertical-align: var(--xmlui-verticalAlign-Text-marked);
|
|
1028
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-marked);
|
|
1029
1316
|
}
|
|
1030
|
-
.
|
|
1317
|
+
._text_wtc9w_13._marked_wtc9w_551::before, ._text_wtc9w_13._marked_wtc9w_551::after {
|
|
1031
1318
|
clip-path: inset(100%);
|
|
1032
1319
|
clip: rect(1px, 1px, 1px, 1px);
|
|
1033
1320
|
height: 1px;
|
|
@@ -1036,17 +1323,43 @@
|
|
|
1036
1323
|
white-space: nowrap;
|
|
1037
1324
|
width: 1px;
|
|
1038
1325
|
}
|
|
1039
|
-
.
|
|
1326
|
+
._text_wtc9w_13._marked_wtc9w_551::before {
|
|
1040
1327
|
content: " [highlight start] ";
|
|
1041
1328
|
}
|
|
1042
|
-
.
|
|
1329
|
+
._text_wtc9w_13._marked_wtc9w_551::after {
|
|
1043
1330
|
content: " [highlight end] ";
|
|
1044
1331
|
}
|
|
1045
|
-
.
|
|
1332
|
+
._text_wtc9w_13._mono_wtc9w_621 {
|
|
1333
|
+
padding: var(--xmlui-padding-Text-mono);
|
|
1334
|
+
padding-left: var(--xmlui-paddingLeft-Text-mono, var(--xmlui-paddingHorizontal-Text-mono, var(--xmlui-padding-Text-mono)));
|
|
1335
|
+
padding-right: var(--xmlui-paddingRight-Text-mono, var(--xmlui-paddingHorizontal-Text-mono, var(--xmlui-padding-Text-mono)));
|
|
1336
|
+
padding-top: var(--xmlui-paddingTop-Text-mono, var(--xmlui-paddingVertical-Text-mono, var(--xmlui-padding-Text-mono)));
|
|
1337
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-mono, var(--xmlui-paddingVertical-Text-mono, var(--xmlui-padding-Text-mono)));
|
|
1338
|
+
border-left: var(--xmlui-borderLeft-Text-mono, var(--xmlui-borderHorizontal-Text-mono, var(--xmlui-border-Text-mono)));
|
|
1339
|
+
border-right: var(--xmlui-borderRight-Text-mono, var(--xmlui-borderHorizontal-Text-mono, var(--xmlui-border-Text-mono)));
|
|
1340
|
+
border-top: var(--xmlui-borderTop-Text-mono, var(--xmlui-borderVertical-Text-mono, var(--xmlui-border-Text-mono)));
|
|
1341
|
+
border-bottom: var(--xmlui-borderBottom-Text-mono, var(--xmlui-borderVertical-Text-mono, var(--xmlui-border-Text-mono)));
|
|
1342
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-mono, var(--xmlui-borderHorizontalStyle-Text-mono, var(--xmlui-borderStyle-Text-mono)));
|
|
1343
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-mono, var(--xmlui-borderHorizontalStyle-Text-mono, var(--xmlui-borderStyle-Text-mono)));
|
|
1344
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-mono, var(--xmlui-borderVerticalStyle-Text-mono, var(--xmlui-borderStyle-Text-mono)));
|
|
1345
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-mono, var(--xmlui-borderVerticalStyle-Text-mono, var(--xmlui-borderStyle-Text-mono)));
|
|
1346
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-mono, var(--xmlui-borderHorizontalWidth-Text-mono, var(--xmlui-borderWidth-Text-mono)));
|
|
1347
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-mono, var(--xmlui-borderHorizontalWidth-Text-mono, var(--xmlui-borderWidth-Text-mono)));
|
|
1348
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-mono, var(--xmlui-borderVerticalWidth-Text-mono, var(--xmlui-borderWidth-Text-mono)));
|
|
1349
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-mono, var(--xmlui-borderVerticalWidth-Text-mono, var(--xmlui-borderWidth-Text-mono)));
|
|
1350
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-mono, var(--xmlui-borderHorizontalColor-Text-mono, var(--xmlui-borderColor-Text-mono)));
|
|
1351
|
+
border-right-color: var(--xmlui-borderRightColor-Text-mono, var(--xmlui-borderHorizontalColor-Text-mono, var(--xmlui-borderColor-Text-mono)));
|
|
1352
|
+
border-top-color: var(--xmlui-borderTopColor-Text-mono, var(--xmlui-borderVerticalColor-Text-mono, var(--xmlui-borderColor-Text-mono)));
|
|
1353
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-mono, var(--xmlui-borderVerticalColor-Text-mono, var(--xmlui-borderColor-Text-mono)));
|
|
1354
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-mono, var(--xmlui-borderRadius-Text-mono));
|
|
1355
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-mono, var(--xmlui-borderRadius-Text-mono));
|
|
1356
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-mono, var(--xmlui-borderRadius-Text-mono));
|
|
1357
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-mono, var(--xmlui-borderRadius-Text-mono));
|
|
1358
|
+
color: var(--xmlui-textColor-Text-mono);
|
|
1046
1359
|
font-family: var(--xmlui-fontFamily-Text-mono);
|
|
1047
1360
|
font-size: var(--xmlui-fontSize-Text-mono);
|
|
1048
|
-
font-weight: var(--xmlui-fontWeight-Text-mono);
|
|
1049
1361
|
font-style: var(--xmlui-fontStyle-Text-mono);
|
|
1362
|
+
font-weight: var(--xmlui-fontWeight-Text-mono);
|
|
1050
1363
|
font-stretch: var(--xmlui-fontStretch-Text-mono);
|
|
1051
1364
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-mono);
|
|
1052
1365
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-mono);
|
|
@@ -1054,28 +1367,54 @@
|
|
|
1054
1367
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-mono);
|
|
1055
1368
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-mono);
|
|
1056
1369
|
line-height: var(--xmlui-lineHeight-Text-mono);
|
|
1057
|
-
color: var(--xmlui-textColor-Text-mono);
|
|
1058
1370
|
background-color: var(--xmlui-backgroundColor-Text-mono);
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1371
|
+
text-transform: var(--xmlui-textTransform-Text-mono);
|
|
1372
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-mono);
|
|
1373
|
+
word-spacing: var(--xmlui-wordSpacing-Text-mono);
|
|
1374
|
+
text-shadow: var(--xmlui-textShadow-Text-mono);
|
|
1375
|
+
text-indent: var(--xmlui-textIndent-Text-mono);
|
|
1376
|
+
text-align: var(--xmlui-textAlign-Text-mono);
|
|
1377
|
+
text-align-last: var(--xmlui-textAlignLast-Text-mono);
|
|
1378
|
+
word-break: var(--xmlui-wordBreak-Text-mono);
|
|
1379
|
+
word-wrap: var(--xmlui-wordWrap-Text-mono);
|
|
1380
|
+
direction: var(--xmlui-direction-Text-mono);
|
|
1381
|
+
writing-mode: var(--xmlui-writingMode-Text-mono);
|
|
1382
|
+
line-break: var(--xmlui-lineBreak-Text-mono);
|
|
1068
1383
|
margin-top: var(--xmlui-marginTop-Text-mono);
|
|
1069
1384
|
margin-bottom: var(--xmlui-marginBottom-Text-mono);
|
|
1070
|
-
text-transform: var(--xmlui-textTransform-Text-mono);
|
|
1071
1385
|
vertical-align: var(--xmlui-verticalAlign-Text-mono);
|
|
1072
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-mono);
|
|
1073
1386
|
}
|
|
1074
|
-
.
|
|
1387
|
+
._text_wtc9w_13._sample_wtc9w_676 {
|
|
1388
|
+
padding: var(--xmlui-padding-Text-sample);
|
|
1389
|
+
padding-left: var(--xmlui-paddingLeft-Text-sample, var(--xmlui-paddingHorizontal-Text-sample, var(--xmlui-padding-Text-sample)));
|
|
1390
|
+
padding-right: var(--xmlui-paddingRight-Text-sample, var(--xmlui-paddingHorizontal-Text-sample, var(--xmlui-padding-Text-sample)));
|
|
1391
|
+
padding-top: var(--xmlui-paddingTop-Text-sample, var(--xmlui-paddingVertical-Text-sample, var(--xmlui-padding-Text-sample)));
|
|
1392
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-sample, var(--xmlui-paddingVertical-Text-sample, var(--xmlui-padding-Text-sample)));
|
|
1393
|
+
border-left: var(--xmlui-borderLeft-Text-sample, var(--xmlui-borderHorizontal-Text-sample, var(--xmlui-border-Text-sample)));
|
|
1394
|
+
border-right: var(--xmlui-borderRight-Text-sample, var(--xmlui-borderHorizontal-Text-sample, var(--xmlui-border-Text-sample)));
|
|
1395
|
+
border-top: var(--xmlui-borderTop-Text-sample, var(--xmlui-borderVertical-Text-sample, var(--xmlui-border-Text-sample)));
|
|
1396
|
+
border-bottom: var(--xmlui-borderBottom-Text-sample, var(--xmlui-borderVertical-Text-sample, var(--xmlui-border-Text-sample)));
|
|
1397
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-sample, var(--xmlui-borderHorizontalStyle-Text-sample, var(--xmlui-borderStyle-Text-sample)));
|
|
1398
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-sample, var(--xmlui-borderHorizontalStyle-Text-sample, var(--xmlui-borderStyle-Text-sample)));
|
|
1399
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-sample, var(--xmlui-borderVerticalStyle-Text-sample, var(--xmlui-borderStyle-Text-sample)));
|
|
1400
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-sample, var(--xmlui-borderVerticalStyle-Text-sample, var(--xmlui-borderStyle-Text-sample)));
|
|
1401
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-sample, var(--xmlui-borderHorizontalWidth-Text-sample, var(--xmlui-borderWidth-Text-sample)));
|
|
1402
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-sample, var(--xmlui-borderHorizontalWidth-Text-sample, var(--xmlui-borderWidth-Text-sample)));
|
|
1403
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-sample, var(--xmlui-borderVerticalWidth-Text-sample, var(--xmlui-borderWidth-Text-sample)));
|
|
1404
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-sample, var(--xmlui-borderVerticalWidth-Text-sample, var(--xmlui-borderWidth-Text-sample)));
|
|
1405
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-sample, var(--xmlui-borderHorizontalColor-Text-sample, var(--xmlui-borderColor-Text-sample)));
|
|
1406
|
+
border-right-color: var(--xmlui-borderRightColor-Text-sample, var(--xmlui-borderHorizontalColor-Text-sample, var(--xmlui-borderColor-Text-sample)));
|
|
1407
|
+
border-top-color: var(--xmlui-borderTopColor-Text-sample, var(--xmlui-borderVerticalColor-Text-sample, var(--xmlui-borderColor-Text-sample)));
|
|
1408
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-sample, var(--xmlui-borderVerticalColor-Text-sample, var(--xmlui-borderColor-Text-sample)));
|
|
1409
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-sample, var(--xmlui-borderRadius-Text-sample));
|
|
1410
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-sample, var(--xmlui-borderRadius-Text-sample));
|
|
1411
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-sample, var(--xmlui-borderRadius-Text-sample));
|
|
1412
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-sample, var(--xmlui-borderRadius-Text-sample));
|
|
1413
|
+
color: var(--xmlui-textColor-Text-sample);
|
|
1075
1414
|
font-family: var(--xmlui-fontFamily-Text-sample);
|
|
1076
1415
|
font-size: var(--xmlui-fontSize-Text-sample);
|
|
1077
|
-
font-weight: var(--xmlui-fontWeight-Text-sample);
|
|
1078
1416
|
font-style: var(--xmlui-fontStyle-Text-sample);
|
|
1417
|
+
font-weight: var(--xmlui-fontWeight-Text-sample);
|
|
1079
1418
|
font-stretch: var(--xmlui-fontStretch-Text-sample);
|
|
1080
1419
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-sample);
|
|
1081
1420
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-sample);
|
|
@@ -1083,28 +1422,54 @@
|
|
|
1083
1422
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-sample);
|
|
1084
1423
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-sample);
|
|
1085
1424
|
line-height: var(--xmlui-lineHeight-Text-sample);
|
|
1086
|
-
color: var(--xmlui-textColor-Text-sample);
|
|
1087
1425
|
background-color: var(--xmlui-backgroundColor-Text-sample);
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1426
|
+
text-transform: var(--xmlui-textTransform-Text-sample);
|
|
1427
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-sample);
|
|
1428
|
+
word-spacing: var(--xmlui-wordSpacing-Text-sample);
|
|
1429
|
+
text-shadow: var(--xmlui-textShadow-Text-sample);
|
|
1430
|
+
text-indent: var(--xmlui-textIndent-Text-sample);
|
|
1431
|
+
text-align: var(--xmlui-textAlign-Text-sample);
|
|
1432
|
+
text-align-last: var(--xmlui-textAlignLast-Text-sample);
|
|
1433
|
+
word-break: var(--xmlui-wordBreak-Text-sample);
|
|
1434
|
+
word-wrap: var(--xmlui-wordWrap-Text-sample);
|
|
1435
|
+
direction: var(--xmlui-direction-Text-sample);
|
|
1436
|
+
writing-mode: var(--xmlui-writingMode-Text-sample);
|
|
1437
|
+
line-break: var(--xmlui-lineBreak-Text-sample);
|
|
1097
1438
|
margin-top: var(--xmlui-marginTop-Text-sample);
|
|
1098
1439
|
margin-bottom: var(--xmlui-marginBottom-Text-sample);
|
|
1099
|
-
text-transform: var(--xmlui-textTransform-Text-sample);
|
|
1100
1440
|
vertical-align: var(--xmlui-verticalAlign-Text-sample);
|
|
1101
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-sample);
|
|
1102
1441
|
}
|
|
1103
|
-
.
|
|
1442
|
+
._text_wtc9w_13._sup_wtc9w_731 {
|
|
1443
|
+
padding: var(--xmlui-padding-Text-sup);
|
|
1444
|
+
padding-left: var(--xmlui-paddingLeft-Text-sup, var(--xmlui-paddingHorizontal-Text-sup, var(--xmlui-padding-Text-sup)));
|
|
1445
|
+
padding-right: var(--xmlui-paddingRight-Text-sup, var(--xmlui-paddingHorizontal-Text-sup, var(--xmlui-padding-Text-sup)));
|
|
1446
|
+
padding-top: var(--xmlui-paddingTop-Text-sup, var(--xmlui-paddingVertical-Text-sup, var(--xmlui-padding-Text-sup)));
|
|
1447
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-sup, var(--xmlui-paddingVertical-Text-sup, var(--xmlui-padding-Text-sup)));
|
|
1448
|
+
border-left: var(--xmlui-borderLeft-Text-sup, var(--xmlui-borderHorizontal-Text-sup, var(--xmlui-border-Text-sup)));
|
|
1449
|
+
border-right: var(--xmlui-borderRight-Text-sup, var(--xmlui-borderHorizontal-Text-sup, var(--xmlui-border-Text-sup)));
|
|
1450
|
+
border-top: var(--xmlui-borderTop-Text-sup, var(--xmlui-borderVertical-Text-sup, var(--xmlui-border-Text-sup)));
|
|
1451
|
+
border-bottom: var(--xmlui-borderBottom-Text-sup, var(--xmlui-borderVertical-Text-sup, var(--xmlui-border-Text-sup)));
|
|
1452
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-sup, var(--xmlui-borderHorizontalStyle-Text-sup, var(--xmlui-borderStyle-Text-sup)));
|
|
1453
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-sup, var(--xmlui-borderHorizontalStyle-Text-sup, var(--xmlui-borderStyle-Text-sup)));
|
|
1454
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-sup, var(--xmlui-borderVerticalStyle-Text-sup, var(--xmlui-borderStyle-Text-sup)));
|
|
1455
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-sup, var(--xmlui-borderVerticalStyle-Text-sup, var(--xmlui-borderStyle-Text-sup)));
|
|
1456
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-sup, var(--xmlui-borderHorizontalWidth-Text-sup, var(--xmlui-borderWidth-Text-sup)));
|
|
1457
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-sup, var(--xmlui-borderHorizontalWidth-Text-sup, var(--xmlui-borderWidth-Text-sup)));
|
|
1458
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-sup, var(--xmlui-borderVerticalWidth-Text-sup, var(--xmlui-borderWidth-Text-sup)));
|
|
1459
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-sup, var(--xmlui-borderVerticalWidth-Text-sup, var(--xmlui-borderWidth-Text-sup)));
|
|
1460
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-sup, var(--xmlui-borderHorizontalColor-Text-sup, var(--xmlui-borderColor-Text-sup)));
|
|
1461
|
+
border-right-color: var(--xmlui-borderRightColor-Text-sup, var(--xmlui-borderHorizontalColor-Text-sup, var(--xmlui-borderColor-Text-sup)));
|
|
1462
|
+
border-top-color: var(--xmlui-borderTopColor-Text-sup, var(--xmlui-borderVerticalColor-Text-sup, var(--xmlui-borderColor-Text-sup)));
|
|
1463
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-sup, var(--xmlui-borderVerticalColor-Text-sup, var(--xmlui-borderColor-Text-sup)));
|
|
1464
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-sup, var(--xmlui-borderRadius-Text-sup));
|
|
1465
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-sup, var(--xmlui-borderRadius-Text-sup));
|
|
1466
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-sup, var(--xmlui-borderRadius-Text-sup));
|
|
1467
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-sup, var(--xmlui-borderRadius-Text-sup));
|
|
1468
|
+
color: var(--xmlui-textColor-Text-sup);
|
|
1104
1469
|
font-family: var(--xmlui-fontFamily-Text-sup);
|
|
1105
1470
|
font-size: var(--xmlui-fontSize-Text-sup);
|
|
1106
|
-
font-weight: var(--xmlui-fontWeight-Text-sup);
|
|
1107
1471
|
font-style: var(--xmlui-fontStyle-Text-sup);
|
|
1472
|
+
font-weight: var(--xmlui-fontWeight-Text-sup);
|
|
1108
1473
|
font-stretch: var(--xmlui-fontStretch-Text-sup);
|
|
1109
1474
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-sup);
|
|
1110
1475
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-sup);
|
|
@@ -1112,28 +1477,54 @@
|
|
|
1112
1477
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-sup);
|
|
1113
1478
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-sup);
|
|
1114
1479
|
line-height: var(--xmlui-lineHeight-Text-sup);
|
|
1115
|
-
color: var(--xmlui-textColor-Text-sup);
|
|
1116
1480
|
background-color: var(--xmlui-backgroundColor-Text-sup);
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1481
|
+
text-transform: var(--xmlui-textTransform-Text-sup);
|
|
1482
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-sup);
|
|
1483
|
+
word-spacing: var(--xmlui-wordSpacing-Text-sup);
|
|
1484
|
+
text-shadow: var(--xmlui-textShadow-Text-sup);
|
|
1485
|
+
text-indent: var(--xmlui-textIndent-Text-sup);
|
|
1486
|
+
text-align: var(--xmlui-textAlign-Text-sup);
|
|
1487
|
+
text-align-last: var(--xmlui-textAlignLast-Text-sup);
|
|
1488
|
+
word-break: var(--xmlui-wordBreak-Text-sup);
|
|
1489
|
+
word-wrap: var(--xmlui-wordWrap-Text-sup);
|
|
1490
|
+
direction: var(--xmlui-direction-Text-sup);
|
|
1491
|
+
writing-mode: var(--xmlui-writingMode-Text-sup);
|
|
1492
|
+
line-break: var(--xmlui-lineBreak-Text-sup);
|
|
1126
1493
|
margin-top: var(--xmlui-marginTop-Text-sup);
|
|
1127
1494
|
margin-bottom: var(--xmlui-marginBottom-Text-sup);
|
|
1128
|
-
text-transform: var(--xmlui-textTransform-Text-sup);
|
|
1129
1495
|
vertical-align: var(--xmlui-verticalAlign-Text-sup);
|
|
1130
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-sup);
|
|
1131
1496
|
}
|
|
1132
|
-
.
|
|
1497
|
+
._text_wtc9w_13._sub_wtc9w_786 {
|
|
1498
|
+
padding: var(--xmlui-padding-Text-sub);
|
|
1499
|
+
padding-left: var(--xmlui-paddingLeft-Text-sub, var(--xmlui-paddingHorizontal-Text-sub, var(--xmlui-padding-Text-sub)));
|
|
1500
|
+
padding-right: var(--xmlui-paddingRight-Text-sub, var(--xmlui-paddingHorizontal-Text-sub, var(--xmlui-padding-Text-sub)));
|
|
1501
|
+
padding-top: var(--xmlui-paddingTop-Text-sub, var(--xmlui-paddingVertical-Text-sub, var(--xmlui-padding-Text-sub)));
|
|
1502
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-sub, var(--xmlui-paddingVertical-Text-sub, var(--xmlui-padding-Text-sub)));
|
|
1503
|
+
border-left: var(--xmlui-borderLeft-Text-sub, var(--xmlui-borderHorizontal-Text-sub, var(--xmlui-border-Text-sub)));
|
|
1504
|
+
border-right: var(--xmlui-borderRight-Text-sub, var(--xmlui-borderHorizontal-Text-sub, var(--xmlui-border-Text-sub)));
|
|
1505
|
+
border-top: var(--xmlui-borderTop-Text-sub, var(--xmlui-borderVertical-Text-sub, var(--xmlui-border-Text-sub)));
|
|
1506
|
+
border-bottom: var(--xmlui-borderBottom-Text-sub, var(--xmlui-borderVertical-Text-sub, var(--xmlui-border-Text-sub)));
|
|
1507
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-sub, var(--xmlui-borderHorizontalStyle-Text-sub, var(--xmlui-borderStyle-Text-sub)));
|
|
1508
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-sub, var(--xmlui-borderHorizontalStyle-Text-sub, var(--xmlui-borderStyle-Text-sub)));
|
|
1509
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-sub, var(--xmlui-borderVerticalStyle-Text-sub, var(--xmlui-borderStyle-Text-sub)));
|
|
1510
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-sub, var(--xmlui-borderVerticalStyle-Text-sub, var(--xmlui-borderStyle-Text-sub)));
|
|
1511
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-sub, var(--xmlui-borderHorizontalWidth-Text-sub, var(--xmlui-borderWidth-Text-sub)));
|
|
1512
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-sub, var(--xmlui-borderHorizontalWidth-Text-sub, var(--xmlui-borderWidth-Text-sub)));
|
|
1513
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-sub, var(--xmlui-borderVerticalWidth-Text-sub, var(--xmlui-borderWidth-Text-sub)));
|
|
1514
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-sub, var(--xmlui-borderVerticalWidth-Text-sub, var(--xmlui-borderWidth-Text-sub)));
|
|
1515
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-sub, var(--xmlui-borderHorizontalColor-Text-sub, var(--xmlui-borderColor-Text-sub)));
|
|
1516
|
+
border-right-color: var(--xmlui-borderRightColor-Text-sub, var(--xmlui-borderHorizontalColor-Text-sub, var(--xmlui-borderColor-Text-sub)));
|
|
1517
|
+
border-top-color: var(--xmlui-borderTopColor-Text-sub, var(--xmlui-borderVerticalColor-Text-sub, var(--xmlui-borderColor-Text-sub)));
|
|
1518
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-sub, var(--xmlui-borderVerticalColor-Text-sub, var(--xmlui-borderColor-Text-sub)));
|
|
1519
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-sub, var(--xmlui-borderRadius-Text-sub));
|
|
1520
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-sub, var(--xmlui-borderRadius-Text-sub));
|
|
1521
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-sub, var(--xmlui-borderRadius-Text-sub));
|
|
1522
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-sub, var(--xmlui-borderRadius-Text-sub));
|
|
1523
|
+
color: var(--xmlui-textColor-Text-sub);
|
|
1133
1524
|
font-family: var(--xmlui-fontFamily-Text-sub);
|
|
1134
1525
|
font-size: var(--xmlui-fontSize-Text-sub);
|
|
1135
|
-
font-weight: var(--xmlui-fontWeight-Text-sub);
|
|
1136
1526
|
font-style: var(--xmlui-fontStyle-Text-sub);
|
|
1527
|
+
font-weight: var(--xmlui-fontWeight-Text-sub);
|
|
1137
1528
|
font-stretch: var(--xmlui-fontStretch-Text-sub);
|
|
1138
1529
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-sub);
|
|
1139
1530
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-sub);
|
|
@@ -1141,28 +1532,54 @@
|
|
|
1141
1532
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-sub);
|
|
1142
1533
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-sub);
|
|
1143
1534
|
line-height: var(--xmlui-lineHeight-Text-sub);
|
|
1144
|
-
color: var(--xmlui-textColor-Text-sub);
|
|
1145
1535
|
background-color: var(--xmlui-backgroundColor-Text-sub);
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1536
|
+
text-transform: var(--xmlui-textTransform-Text-sub);
|
|
1537
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-sub);
|
|
1538
|
+
word-spacing: var(--xmlui-wordSpacing-Text-sub);
|
|
1539
|
+
text-shadow: var(--xmlui-textShadow-Text-sub);
|
|
1540
|
+
text-indent: var(--xmlui-textIndent-Text-sub);
|
|
1541
|
+
text-align: var(--xmlui-textAlign-Text-sub);
|
|
1542
|
+
text-align-last: var(--xmlui-textAlignLast-Text-sub);
|
|
1543
|
+
word-break: var(--xmlui-wordBreak-Text-sub);
|
|
1544
|
+
word-wrap: var(--xmlui-wordWrap-Text-sub);
|
|
1545
|
+
direction: var(--xmlui-direction-Text-sub);
|
|
1546
|
+
writing-mode: var(--xmlui-writingMode-Text-sub);
|
|
1547
|
+
line-break: var(--xmlui-lineBreak-Text-sub);
|
|
1155
1548
|
margin-top: var(--xmlui-marginTop-Text-sub);
|
|
1156
1549
|
margin-bottom: var(--xmlui-marginBottom-Text-sub);
|
|
1157
|
-
text-transform: var(--xmlui-textTransform-Text-sub);
|
|
1158
1550
|
vertical-align: var(--xmlui-verticalAlign-Text-sub);
|
|
1159
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-sub);
|
|
1160
1551
|
}
|
|
1161
|
-
.
|
|
1552
|
+
._text_wtc9w_13._var_wtc9w_841 {
|
|
1553
|
+
padding: var(--xmlui-padding-Text-var);
|
|
1554
|
+
padding-left: var(--xmlui-paddingLeft-Text-var, var(--xmlui-paddingHorizontal-Text-var, var(--xmlui-padding-Text-var)));
|
|
1555
|
+
padding-right: var(--xmlui-paddingRight-Text-var, var(--xmlui-paddingHorizontal-Text-var, var(--xmlui-padding-Text-var)));
|
|
1556
|
+
padding-top: var(--xmlui-paddingTop-Text-var, var(--xmlui-paddingVertical-Text-var, var(--xmlui-padding-Text-var)));
|
|
1557
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-var, var(--xmlui-paddingVertical-Text-var, var(--xmlui-padding-Text-var)));
|
|
1558
|
+
border-left: var(--xmlui-borderLeft-Text-var, var(--xmlui-borderHorizontal-Text-var, var(--xmlui-border-Text-var)));
|
|
1559
|
+
border-right: var(--xmlui-borderRight-Text-var, var(--xmlui-borderHorizontal-Text-var, var(--xmlui-border-Text-var)));
|
|
1560
|
+
border-top: var(--xmlui-borderTop-Text-var, var(--xmlui-borderVertical-Text-var, var(--xmlui-border-Text-var)));
|
|
1561
|
+
border-bottom: var(--xmlui-borderBottom-Text-var, var(--xmlui-borderVertical-Text-var, var(--xmlui-border-Text-var)));
|
|
1562
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-var, var(--xmlui-borderHorizontalStyle-Text-var, var(--xmlui-borderStyle-Text-var)));
|
|
1563
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-var, var(--xmlui-borderHorizontalStyle-Text-var, var(--xmlui-borderStyle-Text-var)));
|
|
1564
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-var, var(--xmlui-borderVerticalStyle-Text-var, var(--xmlui-borderStyle-Text-var)));
|
|
1565
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-var, var(--xmlui-borderVerticalStyle-Text-var, var(--xmlui-borderStyle-Text-var)));
|
|
1566
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-var, var(--xmlui-borderHorizontalWidth-Text-var, var(--xmlui-borderWidth-Text-var)));
|
|
1567
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-var, var(--xmlui-borderHorizontalWidth-Text-var, var(--xmlui-borderWidth-Text-var)));
|
|
1568
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-var, var(--xmlui-borderVerticalWidth-Text-var, var(--xmlui-borderWidth-Text-var)));
|
|
1569
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-var, var(--xmlui-borderVerticalWidth-Text-var, var(--xmlui-borderWidth-Text-var)));
|
|
1570
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-var, var(--xmlui-borderHorizontalColor-Text-var, var(--xmlui-borderColor-Text-var)));
|
|
1571
|
+
border-right-color: var(--xmlui-borderRightColor-Text-var, var(--xmlui-borderHorizontalColor-Text-var, var(--xmlui-borderColor-Text-var)));
|
|
1572
|
+
border-top-color: var(--xmlui-borderTopColor-Text-var, var(--xmlui-borderVerticalColor-Text-var, var(--xmlui-borderColor-Text-var)));
|
|
1573
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-var, var(--xmlui-borderVerticalColor-Text-var, var(--xmlui-borderColor-Text-var)));
|
|
1574
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-var, var(--xmlui-borderRadius-Text-var));
|
|
1575
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-var, var(--xmlui-borderRadius-Text-var));
|
|
1576
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-var, var(--xmlui-borderRadius-Text-var));
|
|
1577
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-var, var(--xmlui-borderRadius-Text-var));
|
|
1578
|
+
color: var(--xmlui-textColor-Text-var);
|
|
1162
1579
|
font-family: var(--xmlui-fontFamily-Text-var);
|
|
1163
1580
|
font-size: var(--xmlui-fontSize-Text-var);
|
|
1164
|
-
font-weight: var(--xmlui-fontWeight-Text-var);
|
|
1165
1581
|
font-style: var(--xmlui-fontStyle-Text-var);
|
|
1582
|
+
font-weight: var(--xmlui-fontWeight-Text-var);
|
|
1166
1583
|
font-stretch: var(--xmlui-fontStretch-Text-var);
|
|
1167
1584
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-var);
|
|
1168
1585
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-var);
|
|
@@ -1170,28 +1587,54 @@
|
|
|
1170
1587
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-var);
|
|
1171
1588
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-var);
|
|
1172
1589
|
line-height: var(--xmlui-lineHeight-Text-var);
|
|
1173
|
-
color: var(--xmlui-textColor-Text-var);
|
|
1174
1590
|
background-color: var(--xmlui-backgroundColor-Text-var);
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1591
|
+
text-transform: var(--xmlui-textTransform-Text-var);
|
|
1592
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-var);
|
|
1593
|
+
word-spacing: var(--xmlui-wordSpacing-Text-var);
|
|
1594
|
+
text-shadow: var(--xmlui-textShadow-Text-var);
|
|
1595
|
+
text-indent: var(--xmlui-textIndent-Text-var);
|
|
1596
|
+
text-align: var(--xmlui-textAlign-Text-var);
|
|
1597
|
+
text-align-last: var(--xmlui-textAlignLast-Text-var);
|
|
1598
|
+
word-break: var(--xmlui-wordBreak-Text-var);
|
|
1599
|
+
word-wrap: var(--xmlui-wordWrap-Text-var);
|
|
1600
|
+
direction: var(--xmlui-direction-Text-var);
|
|
1601
|
+
writing-mode: var(--xmlui-writingMode-Text-var);
|
|
1602
|
+
line-break: var(--xmlui-lineBreak-Text-var);
|
|
1184
1603
|
margin-top: var(--xmlui-marginTop-Text-var);
|
|
1185
1604
|
margin-bottom: var(--xmlui-marginBottom-Text-var);
|
|
1186
|
-
text-transform: var(--xmlui-textTransform-Text-var);
|
|
1187
1605
|
vertical-align: var(--xmlui-verticalAlign-Text-var);
|
|
1188
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-var);
|
|
1189
1606
|
}
|
|
1190
|
-
.
|
|
1607
|
+
._text_wtc9w_13._title_wtc9w_896 {
|
|
1608
|
+
padding: var(--xmlui-padding-Text-title);
|
|
1609
|
+
padding-left: var(--xmlui-paddingLeft-Text-title, var(--xmlui-paddingHorizontal-Text-title, var(--xmlui-padding-Text-title)));
|
|
1610
|
+
padding-right: var(--xmlui-paddingRight-Text-title, var(--xmlui-paddingHorizontal-Text-title, var(--xmlui-padding-Text-title)));
|
|
1611
|
+
padding-top: var(--xmlui-paddingTop-Text-title, var(--xmlui-paddingVertical-Text-title, var(--xmlui-padding-Text-title)));
|
|
1612
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-title, var(--xmlui-paddingVertical-Text-title, var(--xmlui-padding-Text-title)));
|
|
1613
|
+
border-left: var(--xmlui-borderLeft-Text-title, var(--xmlui-borderHorizontal-Text-title, var(--xmlui-border-Text-title)));
|
|
1614
|
+
border-right: var(--xmlui-borderRight-Text-title, var(--xmlui-borderHorizontal-Text-title, var(--xmlui-border-Text-title)));
|
|
1615
|
+
border-top: var(--xmlui-borderTop-Text-title, var(--xmlui-borderVertical-Text-title, var(--xmlui-border-Text-title)));
|
|
1616
|
+
border-bottom: var(--xmlui-borderBottom-Text-title, var(--xmlui-borderVertical-Text-title, var(--xmlui-border-Text-title)));
|
|
1617
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-title, var(--xmlui-borderHorizontalStyle-Text-title, var(--xmlui-borderStyle-Text-title)));
|
|
1618
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-title, var(--xmlui-borderHorizontalStyle-Text-title, var(--xmlui-borderStyle-Text-title)));
|
|
1619
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-title, var(--xmlui-borderVerticalStyle-Text-title, var(--xmlui-borderStyle-Text-title)));
|
|
1620
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-title, var(--xmlui-borderVerticalStyle-Text-title, var(--xmlui-borderStyle-Text-title)));
|
|
1621
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-title, var(--xmlui-borderHorizontalWidth-Text-title, var(--xmlui-borderWidth-Text-title)));
|
|
1622
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-title, var(--xmlui-borderHorizontalWidth-Text-title, var(--xmlui-borderWidth-Text-title)));
|
|
1623
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-title, var(--xmlui-borderVerticalWidth-Text-title, var(--xmlui-borderWidth-Text-title)));
|
|
1624
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-title, var(--xmlui-borderVerticalWidth-Text-title, var(--xmlui-borderWidth-Text-title)));
|
|
1625
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-title, var(--xmlui-borderHorizontalColor-Text-title, var(--xmlui-borderColor-Text-title)));
|
|
1626
|
+
border-right-color: var(--xmlui-borderRightColor-Text-title, var(--xmlui-borderHorizontalColor-Text-title, var(--xmlui-borderColor-Text-title)));
|
|
1627
|
+
border-top-color: var(--xmlui-borderTopColor-Text-title, var(--xmlui-borderVerticalColor-Text-title, var(--xmlui-borderColor-Text-title)));
|
|
1628
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-title, var(--xmlui-borderVerticalColor-Text-title, var(--xmlui-borderColor-Text-title)));
|
|
1629
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-title, var(--xmlui-borderRadius-Text-title));
|
|
1630
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-title, var(--xmlui-borderRadius-Text-title));
|
|
1631
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-title, var(--xmlui-borderRadius-Text-title));
|
|
1632
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-title, var(--xmlui-borderRadius-Text-title));
|
|
1633
|
+
color: var(--xmlui-textColor-Text-title);
|
|
1191
1634
|
font-family: var(--xmlui-fontFamily-Text-title);
|
|
1192
1635
|
font-size: var(--xmlui-fontSize-Text-title);
|
|
1193
|
-
font-weight: var(--xmlui-fontWeight-Text-title);
|
|
1194
1636
|
font-style: var(--xmlui-fontStyle-Text-title);
|
|
1637
|
+
font-weight: var(--xmlui-fontWeight-Text-title);
|
|
1195
1638
|
font-stretch: var(--xmlui-fontStretch-Text-title);
|
|
1196
1639
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-title);
|
|
1197
1640
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-title);
|
|
@@ -1199,28 +1642,54 @@
|
|
|
1199
1642
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-title);
|
|
1200
1643
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-title);
|
|
1201
1644
|
line-height: var(--xmlui-lineHeight-Text-title);
|
|
1202
|
-
color: var(--xmlui-textColor-Text-title);
|
|
1203
1645
|
background-color: var(--xmlui-backgroundColor-Text-title);
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1646
|
+
text-transform: var(--xmlui-textTransform-Text-title);
|
|
1647
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-title);
|
|
1648
|
+
word-spacing: var(--xmlui-wordSpacing-Text-title);
|
|
1649
|
+
text-shadow: var(--xmlui-textShadow-Text-title);
|
|
1650
|
+
text-indent: var(--xmlui-textIndent-Text-title);
|
|
1651
|
+
text-align: var(--xmlui-textAlign-Text-title);
|
|
1652
|
+
text-align-last: var(--xmlui-textAlignLast-Text-title);
|
|
1653
|
+
word-break: var(--xmlui-wordBreak-Text-title);
|
|
1654
|
+
word-wrap: var(--xmlui-wordWrap-Text-title);
|
|
1655
|
+
direction: var(--xmlui-direction-Text-title);
|
|
1656
|
+
writing-mode: var(--xmlui-writingMode-Text-title);
|
|
1657
|
+
line-break: var(--xmlui-lineBreak-Text-title);
|
|
1213
1658
|
margin-top: var(--xmlui-marginTop-Text-title);
|
|
1214
1659
|
margin-bottom: var(--xmlui-marginBottom-Text-title);
|
|
1215
|
-
text-transform: var(--xmlui-textTransform-Text-title);
|
|
1216
1660
|
vertical-align: var(--xmlui-verticalAlign-Text-title);
|
|
1217
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-title);
|
|
1218
1661
|
}
|
|
1219
|
-
.
|
|
1662
|
+
._text_wtc9w_13._subtitle_wtc9w_951 {
|
|
1663
|
+
padding: var(--xmlui-padding-Text-subtitle);
|
|
1664
|
+
padding-left: var(--xmlui-paddingLeft-Text-subtitle, var(--xmlui-paddingHorizontal-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
|
|
1665
|
+
padding-right: var(--xmlui-paddingRight-Text-subtitle, var(--xmlui-paddingHorizontal-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
|
|
1666
|
+
padding-top: var(--xmlui-paddingTop-Text-subtitle, var(--xmlui-paddingVertical-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
|
|
1667
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-subtitle, var(--xmlui-paddingVertical-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
|
|
1668
|
+
border-left: var(--xmlui-borderLeft-Text-subtitle, var(--xmlui-borderHorizontal-Text-subtitle, var(--xmlui-border-Text-subtitle)));
|
|
1669
|
+
border-right: var(--xmlui-borderRight-Text-subtitle, var(--xmlui-borderHorizontal-Text-subtitle, var(--xmlui-border-Text-subtitle)));
|
|
1670
|
+
border-top: var(--xmlui-borderTop-Text-subtitle, var(--xmlui-borderVertical-Text-subtitle, var(--xmlui-border-Text-subtitle)));
|
|
1671
|
+
border-bottom: var(--xmlui-borderBottom-Text-subtitle, var(--xmlui-borderVertical-Text-subtitle, var(--xmlui-border-Text-subtitle)));
|
|
1672
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-subtitle, var(--xmlui-borderHorizontalStyle-Text-subtitle, var(--xmlui-borderStyle-Text-subtitle)));
|
|
1673
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-subtitle, var(--xmlui-borderHorizontalStyle-Text-subtitle, var(--xmlui-borderStyle-Text-subtitle)));
|
|
1674
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-subtitle, var(--xmlui-borderVerticalStyle-Text-subtitle, var(--xmlui-borderStyle-Text-subtitle)));
|
|
1675
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-subtitle, var(--xmlui-borderVerticalStyle-Text-subtitle, var(--xmlui-borderStyle-Text-subtitle)));
|
|
1676
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-subtitle, var(--xmlui-borderHorizontalWidth-Text-subtitle, var(--xmlui-borderWidth-Text-subtitle)));
|
|
1677
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-subtitle, var(--xmlui-borderHorizontalWidth-Text-subtitle, var(--xmlui-borderWidth-Text-subtitle)));
|
|
1678
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-subtitle, var(--xmlui-borderVerticalWidth-Text-subtitle, var(--xmlui-borderWidth-Text-subtitle)));
|
|
1679
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-subtitle, var(--xmlui-borderVerticalWidth-Text-subtitle, var(--xmlui-borderWidth-Text-subtitle)));
|
|
1680
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-subtitle, var(--xmlui-borderHorizontalColor-Text-subtitle, var(--xmlui-borderColor-Text-subtitle)));
|
|
1681
|
+
border-right-color: var(--xmlui-borderRightColor-Text-subtitle, var(--xmlui-borderHorizontalColor-Text-subtitle, var(--xmlui-borderColor-Text-subtitle)));
|
|
1682
|
+
border-top-color: var(--xmlui-borderTopColor-Text-subtitle, var(--xmlui-borderVerticalColor-Text-subtitle, var(--xmlui-borderColor-Text-subtitle)));
|
|
1683
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-subtitle, var(--xmlui-borderVerticalColor-Text-subtitle, var(--xmlui-borderColor-Text-subtitle)));
|
|
1684
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-subtitle, var(--xmlui-borderRadius-Text-subtitle));
|
|
1685
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-subtitle, var(--xmlui-borderRadius-Text-subtitle));
|
|
1686
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-subtitle, var(--xmlui-borderRadius-Text-subtitle));
|
|
1687
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-subtitle, var(--xmlui-borderRadius-Text-subtitle));
|
|
1688
|
+
color: var(--xmlui-textColor-Text-subtitle);
|
|
1220
1689
|
font-family: var(--xmlui-fontFamily-Text-subtitle);
|
|
1221
1690
|
font-size: var(--xmlui-fontSize-Text-subtitle);
|
|
1222
|
-
font-weight: var(--xmlui-fontWeight-Text-subtitle);
|
|
1223
1691
|
font-style: var(--xmlui-fontStyle-Text-subtitle);
|
|
1692
|
+
font-weight: var(--xmlui-fontWeight-Text-subtitle);
|
|
1224
1693
|
font-stretch: var(--xmlui-fontStretch-Text-subtitle);
|
|
1225
1694
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-subtitle);
|
|
1226
1695
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-subtitle);
|
|
@@ -1228,28 +1697,54 @@
|
|
|
1228
1697
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-subtitle);
|
|
1229
1698
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-subtitle);
|
|
1230
1699
|
line-height: var(--xmlui-lineHeight-Text-subtitle);
|
|
1231
|
-
color: var(--xmlui-textColor-Text-subtitle);
|
|
1232
1700
|
background-color: var(--xmlui-backgroundColor-Text-subtitle);
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1701
|
+
text-transform: var(--xmlui-textTransform-Text-subtitle);
|
|
1702
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-subtitle);
|
|
1703
|
+
word-spacing: var(--xmlui-wordSpacing-Text-subtitle);
|
|
1704
|
+
text-shadow: var(--xmlui-textShadow-Text-subtitle);
|
|
1705
|
+
text-indent: var(--xmlui-textIndent-Text-subtitle);
|
|
1706
|
+
text-align: var(--xmlui-textAlign-Text-subtitle);
|
|
1707
|
+
text-align-last: var(--xmlui-textAlignLast-Text-subtitle);
|
|
1708
|
+
word-break: var(--xmlui-wordBreak-Text-subtitle);
|
|
1709
|
+
word-wrap: var(--xmlui-wordWrap-Text-subtitle);
|
|
1710
|
+
direction: var(--xmlui-direction-Text-subtitle);
|
|
1711
|
+
writing-mode: var(--xmlui-writingMode-Text-subtitle);
|
|
1712
|
+
line-break: var(--xmlui-lineBreak-Text-subtitle);
|
|
1242
1713
|
margin-top: var(--xmlui-marginTop-Text-subtitle);
|
|
1243
1714
|
margin-bottom: var(--xmlui-marginBottom-Text-subtitle);
|
|
1244
|
-
text-transform: var(--xmlui-textTransform-Text-subtitle);
|
|
1245
1715
|
vertical-align: var(--xmlui-verticalAlign-Text-subtitle);
|
|
1246
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-subtitle);
|
|
1247
1716
|
}
|
|
1248
|
-
.
|
|
1717
|
+
._text_wtc9w_13._small_wtc9w_1006 {
|
|
1718
|
+
padding: var(--xmlui-padding-Text-small);
|
|
1719
|
+
padding-left: var(--xmlui-paddingLeft-Text-small, var(--xmlui-paddingHorizontal-Text-small, var(--xmlui-padding-Text-small)));
|
|
1720
|
+
padding-right: var(--xmlui-paddingRight-Text-small, var(--xmlui-paddingHorizontal-Text-small, var(--xmlui-padding-Text-small)));
|
|
1721
|
+
padding-top: var(--xmlui-paddingTop-Text-small, var(--xmlui-paddingVertical-Text-small, var(--xmlui-padding-Text-small)));
|
|
1722
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-small, var(--xmlui-paddingVertical-Text-small, var(--xmlui-padding-Text-small)));
|
|
1723
|
+
border-left: var(--xmlui-borderLeft-Text-small, var(--xmlui-borderHorizontal-Text-small, var(--xmlui-border-Text-small)));
|
|
1724
|
+
border-right: var(--xmlui-borderRight-Text-small, var(--xmlui-borderHorizontal-Text-small, var(--xmlui-border-Text-small)));
|
|
1725
|
+
border-top: var(--xmlui-borderTop-Text-small, var(--xmlui-borderVertical-Text-small, var(--xmlui-border-Text-small)));
|
|
1726
|
+
border-bottom: var(--xmlui-borderBottom-Text-small, var(--xmlui-borderVertical-Text-small, var(--xmlui-border-Text-small)));
|
|
1727
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-small, var(--xmlui-borderHorizontalStyle-Text-small, var(--xmlui-borderStyle-Text-small)));
|
|
1728
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-small, var(--xmlui-borderHorizontalStyle-Text-small, var(--xmlui-borderStyle-Text-small)));
|
|
1729
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-small, var(--xmlui-borderVerticalStyle-Text-small, var(--xmlui-borderStyle-Text-small)));
|
|
1730
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-small, var(--xmlui-borderVerticalStyle-Text-small, var(--xmlui-borderStyle-Text-small)));
|
|
1731
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-small, var(--xmlui-borderHorizontalWidth-Text-small, var(--xmlui-borderWidth-Text-small)));
|
|
1732
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-small, var(--xmlui-borderHorizontalWidth-Text-small, var(--xmlui-borderWidth-Text-small)));
|
|
1733
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-small, var(--xmlui-borderVerticalWidth-Text-small, var(--xmlui-borderWidth-Text-small)));
|
|
1734
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-small, var(--xmlui-borderVerticalWidth-Text-small, var(--xmlui-borderWidth-Text-small)));
|
|
1735
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-small, var(--xmlui-borderHorizontalColor-Text-small, var(--xmlui-borderColor-Text-small)));
|
|
1736
|
+
border-right-color: var(--xmlui-borderRightColor-Text-small, var(--xmlui-borderHorizontalColor-Text-small, var(--xmlui-borderColor-Text-small)));
|
|
1737
|
+
border-top-color: var(--xmlui-borderTopColor-Text-small, var(--xmlui-borderVerticalColor-Text-small, var(--xmlui-borderColor-Text-small)));
|
|
1738
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-small, var(--xmlui-borderVerticalColor-Text-small, var(--xmlui-borderColor-Text-small)));
|
|
1739
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-small, var(--xmlui-borderRadius-Text-small));
|
|
1740
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-small, var(--xmlui-borderRadius-Text-small));
|
|
1741
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-small, var(--xmlui-borderRadius-Text-small));
|
|
1742
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-small, var(--xmlui-borderRadius-Text-small));
|
|
1743
|
+
color: var(--xmlui-textColor-Text-small);
|
|
1249
1744
|
font-family: var(--xmlui-fontFamily-Text-small);
|
|
1250
1745
|
font-size: var(--xmlui-fontSize-Text-small);
|
|
1251
|
-
font-weight: var(--xmlui-fontWeight-Text-small);
|
|
1252
1746
|
font-style: var(--xmlui-fontStyle-Text-small);
|
|
1747
|
+
font-weight: var(--xmlui-fontWeight-Text-small);
|
|
1253
1748
|
font-stretch: var(--xmlui-fontStretch-Text-small);
|
|
1254
1749
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-small);
|
|
1255
1750
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-small);
|
|
@@ -1257,28 +1752,54 @@
|
|
|
1257
1752
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-small);
|
|
1258
1753
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-small);
|
|
1259
1754
|
line-height: var(--xmlui-lineHeight-Text-small);
|
|
1260
|
-
color: var(--xmlui-textColor-Text-small);
|
|
1261
1755
|
background-color: var(--xmlui-backgroundColor-Text-small);
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1756
|
+
text-transform: var(--xmlui-textTransform-Text-small);
|
|
1757
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-small);
|
|
1758
|
+
word-spacing: var(--xmlui-wordSpacing-Text-small);
|
|
1759
|
+
text-shadow: var(--xmlui-textShadow-Text-small);
|
|
1760
|
+
text-indent: var(--xmlui-textIndent-Text-small);
|
|
1761
|
+
text-align: var(--xmlui-textAlign-Text-small);
|
|
1762
|
+
text-align-last: var(--xmlui-textAlignLast-Text-small);
|
|
1763
|
+
word-break: var(--xmlui-wordBreak-Text-small);
|
|
1764
|
+
word-wrap: var(--xmlui-wordWrap-Text-small);
|
|
1765
|
+
direction: var(--xmlui-direction-Text-small);
|
|
1766
|
+
writing-mode: var(--xmlui-writingMode-Text-small);
|
|
1767
|
+
line-break: var(--xmlui-lineBreak-Text-small);
|
|
1271
1768
|
margin-top: var(--xmlui-marginTop-Text-small);
|
|
1272
1769
|
margin-bottom: var(--xmlui-marginBottom-Text-small);
|
|
1273
|
-
text-transform: var(--xmlui-textTransform-Text-small);
|
|
1274
1770
|
vertical-align: var(--xmlui-verticalAlign-Text-small);
|
|
1275
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-small);
|
|
1276
1771
|
}
|
|
1277
|
-
.
|
|
1772
|
+
._text_wtc9w_13._caption_wtc9w_1061 {
|
|
1773
|
+
padding: var(--xmlui-padding-Text-caption);
|
|
1774
|
+
padding-left: var(--xmlui-paddingLeft-Text-caption, var(--xmlui-paddingHorizontal-Text-caption, var(--xmlui-padding-Text-caption)));
|
|
1775
|
+
padding-right: var(--xmlui-paddingRight-Text-caption, var(--xmlui-paddingHorizontal-Text-caption, var(--xmlui-padding-Text-caption)));
|
|
1776
|
+
padding-top: var(--xmlui-paddingTop-Text-caption, var(--xmlui-paddingVertical-Text-caption, var(--xmlui-padding-Text-caption)));
|
|
1777
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-caption, var(--xmlui-paddingVertical-Text-caption, var(--xmlui-padding-Text-caption)));
|
|
1778
|
+
border-left: var(--xmlui-borderLeft-Text-caption, var(--xmlui-borderHorizontal-Text-caption, var(--xmlui-border-Text-caption)));
|
|
1779
|
+
border-right: var(--xmlui-borderRight-Text-caption, var(--xmlui-borderHorizontal-Text-caption, var(--xmlui-border-Text-caption)));
|
|
1780
|
+
border-top: var(--xmlui-borderTop-Text-caption, var(--xmlui-borderVertical-Text-caption, var(--xmlui-border-Text-caption)));
|
|
1781
|
+
border-bottom: var(--xmlui-borderBottom-Text-caption, var(--xmlui-borderVertical-Text-caption, var(--xmlui-border-Text-caption)));
|
|
1782
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-caption, var(--xmlui-borderHorizontalStyle-Text-caption, var(--xmlui-borderStyle-Text-caption)));
|
|
1783
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-caption, var(--xmlui-borderHorizontalStyle-Text-caption, var(--xmlui-borderStyle-Text-caption)));
|
|
1784
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-caption, var(--xmlui-borderVerticalStyle-Text-caption, var(--xmlui-borderStyle-Text-caption)));
|
|
1785
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-caption, var(--xmlui-borderVerticalStyle-Text-caption, var(--xmlui-borderStyle-Text-caption)));
|
|
1786
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-caption, var(--xmlui-borderHorizontalWidth-Text-caption, var(--xmlui-borderWidth-Text-caption)));
|
|
1787
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-caption, var(--xmlui-borderHorizontalWidth-Text-caption, var(--xmlui-borderWidth-Text-caption)));
|
|
1788
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-caption, var(--xmlui-borderVerticalWidth-Text-caption, var(--xmlui-borderWidth-Text-caption)));
|
|
1789
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-caption, var(--xmlui-borderVerticalWidth-Text-caption, var(--xmlui-borderWidth-Text-caption)));
|
|
1790
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-caption, var(--xmlui-borderHorizontalColor-Text-caption, var(--xmlui-borderColor-Text-caption)));
|
|
1791
|
+
border-right-color: var(--xmlui-borderRightColor-Text-caption, var(--xmlui-borderHorizontalColor-Text-caption, var(--xmlui-borderColor-Text-caption)));
|
|
1792
|
+
border-top-color: var(--xmlui-borderTopColor-Text-caption, var(--xmlui-borderVerticalColor-Text-caption, var(--xmlui-borderColor-Text-caption)));
|
|
1793
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-caption, var(--xmlui-borderVerticalColor-Text-caption, var(--xmlui-borderColor-Text-caption)));
|
|
1794
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-caption, var(--xmlui-borderRadius-Text-caption));
|
|
1795
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-caption, var(--xmlui-borderRadius-Text-caption));
|
|
1796
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-caption, var(--xmlui-borderRadius-Text-caption));
|
|
1797
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-caption, var(--xmlui-borderRadius-Text-caption));
|
|
1798
|
+
color: var(--xmlui-textColor-Text-caption);
|
|
1278
1799
|
font-family: var(--xmlui-fontFamily-Text-caption);
|
|
1279
1800
|
font-size: var(--xmlui-fontSize-Text-caption);
|
|
1280
|
-
font-weight: var(--xmlui-fontWeight-Text-caption);
|
|
1281
1801
|
font-style: var(--xmlui-fontStyle-Text-caption);
|
|
1802
|
+
font-weight: var(--xmlui-fontWeight-Text-caption);
|
|
1282
1803
|
font-stretch: var(--xmlui-fontStretch-Text-caption);
|
|
1283
1804
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-caption);
|
|
1284
1805
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-caption);
|
|
@@ -1286,28 +1807,54 @@
|
|
|
1286
1807
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-caption);
|
|
1287
1808
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-caption);
|
|
1288
1809
|
line-height: var(--xmlui-lineHeight-Text-caption);
|
|
1289
|
-
color: var(--xmlui-textColor-Text-caption);
|
|
1290
1810
|
background-color: var(--xmlui-backgroundColor-Text-caption);
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1811
|
+
text-transform: var(--xmlui-textTransform-Text-caption);
|
|
1812
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-caption);
|
|
1813
|
+
word-spacing: var(--xmlui-wordSpacing-Text-caption);
|
|
1814
|
+
text-shadow: var(--xmlui-textShadow-Text-caption);
|
|
1815
|
+
text-indent: var(--xmlui-textIndent-Text-caption);
|
|
1816
|
+
text-align: var(--xmlui-textAlign-Text-caption);
|
|
1817
|
+
text-align-last: var(--xmlui-textAlignLast-Text-caption);
|
|
1818
|
+
word-break: var(--xmlui-wordBreak-Text-caption);
|
|
1819
|
+
word-wrap: var(--xmlui-wordWrap-Text-caption);
|
|
1820
|
+
direction: var(--xmlui-direction-Text-caption);
|
|
1821
|
+
writing-mode: var(--xmlui-writingMode-Text-caption);
|
|
1822
|
+
line-break: var(--xmlui-lineBreak-Text-caption);
|
|
1300
1823
|
margin-top: var(--xmlui-marginTop-Text-caption);
|
|
1301
1824
|
margin-bottom: var(--xmlui-marginBottom-Text-caption);
|
|
1302
|
-
text-transform: var(--xmlui-textTransform-Text-caption);
|
|
1303
1825
|
vertical-align: var(--xmlui-verticalAlign-Text-caption);
|
|
1304
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-caption);
|
|
1305
1826
|
}
|
|
1306
|
-
.
|
|
1827
|
+
._text_wtc9w_13._placeholder_wtc9w_1116 {
|
|
1828
|
+
padding: var(--xmlui-padding-Text-placeholder);
|
|
1829
|
+
padding-left: var(--xmlui-paddingLeft-Text-placeholder, var(--xmlui-paddingHorizontal-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
|
|
1830
|
+
padding-right: var(--xmlui-paddingRight-Text-placeholder, var(--xmlui-paddingHorizontal-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
|
|
1831
|
+
padding-top: var(--xmlui-paddingTop-Text-placeholder, var(--xmlui-paddingVertical-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
|
|
1832
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-placeholder, var(--xmlui-paddingVertical-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
|
|
1833
|
+
border-left: var(--xmlui-borderLeft-Text-placeholder, var(--xmlui-borderHorizontal-Text-placeholder, var(--xmlui-border-Text-placeholder)));
|
|
1834
|
+
border-right: var(--xmlui-borderRight-Text-placeholder, var(--xmlui-borderHorizontal-Text-placeholder, var(--xmlui-border-Text-placeholder)));
|
|
1835
|
+
border-top: var(--xmlui-borderTop-Text-placeholder, var(--xmlui-borderVertical-Text-placeholder, var(--xmlui-border-Text-placeholder)));
|
|
1836
|
+
border-bottom: var(--xmlui-borderBottom-Text-placeholder, var(--xmlui-borderVertical-Text-placeholder, var(--xmlui-border-Text-placeholder)));
|
|
1837
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-placeholder, var(--xmlui-borderHorizontalStyle-Text-placeholder, var(--xmlui-borderStyle-Text-placeholder)));
|
|
1838
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-placeholder, var(--xmlui-borderHorizontalStyle-Text-placeholder, var(--xmlui-borderStyle-Text-placeholder)));
|
|
1839
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-placeholder, var(--xmlui-borderVerticalStyle-Text-placeholder, var(--xmlui-borderStyle-Text-placeholder)));
|
|
1840
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-placeholder, var(--xmlui-borderVerticalStyle-Text-placeholder, var(--xmlui-borderStyle-Text-placeholder)));
|
|
1841
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-placeholder, var(--xmlui-borderHorizontalWidth-Text-placeholder, var(--xmlui-borderWidth-Text-placeholder)));
|
|
1842
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-placeholder, var(--xmlui-borderHorizontalWidth-Text-placeholder, var(--xmlui-borderWidth-Text-placeholder)));
|
|
1843
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-placeholder, var(--xmlui-borderVerticalWidth-Text-placeholder, var(--xmlui-borderWidth-Text-placeholder)));
|
|
1844
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-placeholder, var(--xmlui-borderVerticalWidth-Text-placeholder, var(--xmlui-borderWidth-Text-placeholder)));
|
|
1845
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-placeholder, var(--xmlui-borderHorizontalColor-Text-placeholder, var(--xmlui-borderColor-Text-placeholder)));
|
|
1846
|
+
border-right-color: var(--xmlui-borderRightColor-Text-placeholder, var(--xmlui-borderHorizontalColor-Text-placeholder, var(--xmlui-borderColor-Text-placeholder)));
|
|
1847
|
+
border-top-color: var(--xmlui-borderTopColor-Text-placeholder, var(--xmlui-borderVerticalColor-Text-placeholder, var(--xmlui-borderColor-Text-placeholder)));
|
|
1848
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-placeholder, var(--xmlui-borderVerticalColor-Text-placeholder, var(--xmlui-borderColor-Text-placeholder)));
|
|
1849
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-placeholder, var(--xmlui-borderRadius-Text-placeholder));
|
|
1850
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-placeholder, var(--xmlui-borderRadius-Text-placeholder));
|
|
1851
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-placeholder, var(--xmlui-borderRadius-Text-placeholder));
|
|
1852
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-placeholder, var(--xmlui-borderRadius-Text-placeholder));
|
|
1853
|
+
color: var(--xmlui-textColor-Text-placeholder);
|
|
1307
1854
|
font-family: var(--xmlui-fontFamily-Text-placeholder);
|
|
1308
1855
|
font-size: var(--xmlui-fontSize-Text-placeholder);
|
|
1309
|
-
font-weight: var(--xmlui-fontWeight-Text-placeholder);
|
|
1310
1856
|
font-style: var(--xmlui-fontStyle-Text-placeholder);
|
|
1857
|
+
font-weight: var(--xmlui-fontWeight-Text-placeholder);
|
|
1311
1858
|
font-stretch: var(--xmlui-fontStretch-Text-placeholder);
|
|
1312
1859
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-placeholder);
|
|
1313
1860
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-placeholder);
|
|
@@ -1315,28 +1862,54 @@
|
|
|
1315
1862
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-placeholder);
|
|
1316
1863
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-placeholder);
|
|
1317
1864
|
line-height: var(--xmlui-lineHeight-Text-placeholder);
|
|
1318
|
-
color: var(--xmlui-textColor-Text-placeholder);
|
|
1319
1865
|
background-color: var(--xmlui-backgroundColor-Text-placeholder);
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1866
|
+
text-transform: var(--xmlui-textTransform-Text-placeholder);
|
|
1867
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-placeholder);
|
|
1868
|
+
word-spacing: var(--xmlui-wordSpacing-Text-placeholder);
|
|
1869
|
+
text-shadow: var(--xmlui-textShadow-Text-placeholder);
|
|
1870
|
+
text-indent: var(--xmlui-textIndent-Text-placeholder);
|
|
1871
|
+
text-align: var(--xmlui-textAlign-Text-placeholder);
|
|
1872
|
+
text-align-last: var(--xmlui-textAlignLast-Text-placeholder);
|
|
1873
|
+
word-break: var(--xmlui-wordBreak-Text-placeholder);
|
|
1874
|
+
word-wrap: var(--xmlui-wordWrap-Text-placeholder);
|
|
1875
|
+
direction: var(--xmlui-direction-Text-placeholder);
|
|
1876
|
+
writing-mode: var(--xmlui-writingMode-Text-placeholder);
|
|
1877
|
+
line-break: var(--xmlui-lineBreak-Text-placeholder);
|
|
1329
1878
|
margin-top: var(--xmlui-marginTop-Text-placeholder);
|
|
1330
1879
|
margin-bottom: var(--xmlui-marginBottom-Text-placeholder);
|
|
1331
|
-
text-transform: var(--xmlui-textTransform-Text-placeholder);
|
|
1332
1880
|
vertical-align: var(--xmlui-verticalAlign-Text-placeholder);
|
|
1333
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-placeholder);
|
|
1334
1881
|
}
|
|
1335
|
-
.
|
|
1882
|
+
._text_wtc9w_13._paragraph_wtc9w_1171 {
|
|
1883
|
+
padding: var(--xmlui-padding-Text-paragraph);
|
|
1884
|
+
padding-left: var(--xmlui-paddingLeft-Text-paragraph, var(--xmlui-paddingHorizontal-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
|
|
1885
|
+
padding-right: var(--xmlui-paddingRight-Text-paragraph, var(--xmlui-paddingHorizontal-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
|
|
1886
|
+
padding-top: var(--xmlui-paddingTop-Text-paragraph, var(--xmlui-paddingVertical-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
|
|
1887
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-paragraph, var(--xmlui-paddingVertical-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
|
|
1888
|
+
border-left: var(--xmlui-borderLeft-Text-paragraph, var(--xmlui-borderHorizontal-Text-paragraph, var(--xmlui-border-Text-paragraph)));
|
|
1889
|
+
border-right: var(--xmlui-borderRight-Text-paragraph, var(--xmlui-borderHorizontal-Text-paragraph, var(--xmlui-border-Text-paragraph)));
|
|
1890
|
+
border-top: var(--xmlui-borderTop-Text-paragraph, var(--xmlui-borderVertical-Text-paragraph, var(--xmlui-border-Text-paragraph)));
|
|
1891
|
+
border-bottom: var(--xmlui-borderBottom-Text-paragraph, var(--xmlui-borderVertical-Text-paragraph, var(--xmlui-border-Text-paragraph)));
|
|
1892
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-paragraph, var(--xmlui-borderHorizontalStyle-Text-paragraph, var(--xmlui-borderStyle-Text-paragraph)));
|
|
1893
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-paragraph, var(--xmlui-borderHorizontalStyle-Text-paragraph, var(--xmlui-borderStyle-Text-paragraph)));
|
|
1894
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-paragraph, var(--xmlui-borderVerticalStyle-Text-paragraph, var(--xmlui-borderStyle-Text-paragraph)));
|
|
1895
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-paragraph, var(--xmlui-borderVerticalStyle-Text-paragraph, var(--xmlui-borderStyle-Text-paragraph)));
|
|
1896
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-paragraph, var(--xmlui-borderHorizontalWidth-Text-paragraph, var(--xmlui-borderWidth-Text-paragraph)));
|
|
1897
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-paragraph, var(--xmlui-borderHorizontalWidth-Text-paragraph, var(--xmlui-borderWidth-Text-paragraph)));
|
|
1898
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-paragraph, var(--xmlui-borderVerticalWidth-Text-paragraph, var(--xmlui-borderWidth-Text-paragraph)));
|
|
1899
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-paragraph, var(--xmlui-borderVerticalWidth-Text-paragraph, var(--xmlui-borderWidth-Text-paragraph)));
|
|
1900
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-paragraph, var(--xmlui-borderHorizontalColor-Text-paragraph, var(--xmlui-borderColor-Text-paragraph)));
|
|
1901
|
+
border-right-color: var(--xmlui-borderRightColor-Text-paragraph, var(--xmlui-borderHorizontalColor-Text-paragraph, var(--xmlui-borderColor-Text-paragraph)));
|
|
1902
|
+
border-top-color: var(--xmlui-borderTopColor-Text-paragraph, var(--xmlui-borderVerticalColor-Text-paragraph, var(--xmlui-borderColor-Text-paragraph)));
|
|
1903
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-paragraph, var(--xmlui-borderVerticalColor-Text-paragraph, var(--xmlui-borderColor-Text-paragraph)));
|
|
1904
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-paragraph, var(--xmlui-borderRadius-Text-paragraph));
|
|
1905
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-paragraph, var(--xmlui-borderRadius-Text-paragraph));
|
|
1906
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-paragraph, var(--xmlui-borderRadius-Text-paragraph));
|
|
1907
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-paragraph, var(--xmlui-borderRadius-Text-paragraph));
|
|
1908
|
+
color: var(--xmlui-textColor-Text-paragraph);
|
|
1336
1909
|
font-family: var(--xmlui-fontFamily-Text-paragraph);
|
|
1337
1910
|
font-size: var(--xmlui-fontSize-Text-paragraph);
|
|
1338
|
-
font-weight: var(--xmlui-fontWeight-Text-paragraph);
|
|
1339
1911
|
font-style: var(--xmlui-fontStyle-Text-paragraph);
|
|
1912
|
+
font-weight: var(--xmlui-fontWeight-Text-paragraph);
|
|
1340
1913
|
font-stretch: var(--xmlui-fontStretch-Text-paragraph);
|
|
1341
1914
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-paragraph);
|
|
1342
1915
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-paragraph);
|
|
@@ -1344,28 +1917,54 @@
|
|
|
1344
1917
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-paragraph);
|
|
1345
1918
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-paragraph);
|
|
1346
1919
|
line-height: var(--xmlui-lineHeight-Text-paragraph);
|
|
1347
|
-
color: var(--xmlui-textColor-Text-paragraph);
|
|
1348
1920
|
background-color: var(--xmlui-backgroundColor-Text-paragraph);
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1921
|
+
text-transform: var(--xmlui-textTransform-Text-paragraph);
|
|
1922
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-paragraph);
|
|
1923
|
+
word-spacing: var(--xmlui-wordSpacing-Text-paragraph);
|
|
1924
|
+
text-shadow: var(--xmlui-textShadow-Text-paragraph);
|
|
1925
|
+
text-indent: var(--xmlui-textIndent-Text-paragraph);
|
|
1926
|
+
text-align: var(--xmlui-textAlign-Text-paragraph);
|
|
1927
|
+
text-align-last: var(--xmlui-textAlignLast-Text-paragraph);
|
|
1928
|
+
word-break: var(--xmlui-wordBreak-Text-paragraph);
|
|
1929
|
+
word-wrap: var(--xmlui-wordWrap-Text-paragraph);
|
|
1930
|
+
direction: var(--xmlui-direction-Text-paragraph);
|
|
1931
|
+
writing-mode: var(--xmlui-writingMode-Text-paragraph);
|
|
1932
|
+
line-break: var(--xmlui-lineBreak-Text-paragraph);
|
|
1358
1933
|
margin-top: var(--xmlui-marginTop-Text-paragraph);
|
|
1359
1934
|
margin-bottom: var(--xmlui-marginBottom-Text-paragraph);
|
|
1360
|
-
text-transform: var(--xmlui-textTransform-Text-paragraph);
|
|
1361
1935
|
vertical-align: var(--xmlui-verticalAlign-Text-paragraph);
|
|
1362
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-paragraph);
|
|
1363
1936
|
}
|
|
1364
|
-
.
|
|
1937
|
+
._text_wtc9w_13._subheading_wtc9w_1226 {
|
|
1938
|
+
padding: var(--xmlui-padding-Text-subheading);
|
|
1939
|
+
padding-left: var(--xmlui-paddingLeft-Text-subheading, var(--xmlui-paddingHorizontal-Text-subheading, var(--xmlui-padding-Text-subheading)));
|
|
1940
|
+
padding-right: var(--xmlui-paddingRight-Text-subheading, var(--xmlui-paddingHorizontal-Text-subheading, var(--xmlui-padding-Text-subheading)));
|
|
1941
|
+
padding-top: var(--xmlui-paddingTop-Text-subheading, var(--xmlui-paddingVertical-Text-subheading, var(--xmlui-padding-Text-subheading)));
|
|
1942
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-subheading, var(--xmlui-paddingVertical-Text-subheading, var(--xmlui-padding-Text-subheading)));
|
|
1943
|
+
border-left: var(--xmlui-borderLeft-Text-subheading, var(--xmlui-borderHorizontal-Text-subheading, var(--xmlui-border-Text-subheading)));
|
|
1944
|
+
border-right: var(--xmlui-borderRight-Text-subheading, var(--xmlui-borderHorizontal-Text-subheading, var(--xmlui-border-Text-subheading)));
|
|
1945
|
+
border-top: var(--xmlui-borderTop-Text-subheading, var(--xmlui-borderVertical-Text-subheading, var(--xmlui-border-Text-subheading)));
|
|
1946
|
+
border-bottom: var(--xmlui-borderBottom-Text-subheading, var(--xmlui-borderVertical-Text-subheading, var(--xmlui-border-Text-subheading)));
|
|
1947
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-subheading, var(--xmlui-borderHorizontalStyle-Text-subheading, var(--xmlui-borderStyle-Text-subheading)));
|
|
1948
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-subheading, var(--xmlui-borderHorizontalStyle-Text-subheading, var(--xmlui-borderStyle-Text-subheading)));
|
|
1949
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-subheading, var(--xmlui-borderVerticalStyle-Text-subheading, var(--xmlui-borderStyle-Text-subheading)));
|
|
1950
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-subheading, var(--xmlui-borderVerticalStyle-Text-subheading, var(--xmlui-borderStyle-Text-subheading)));
|
|
1951
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-subheading, var(--xmlui-borderHorizontalWidth-Text-subheading, var(--xmlui-borderWidth-Text-subheading)));
|
|
1952
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-subheading, var(--xmlui-borderHorizontalWidth-Text-subheading, var(--xmlui-borderWidth-Text-subheading)));
|
|
1953
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-subheading, var(--xmlui-borderVerticalWidth-Text-subheading, var(--xmlui-borderWidth-Text-subheading)));
|
|
1954
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-subheading, var(--xmlui-borderVerticalWidth-Text-subheading, var(--xmlui-borderWidth-Text-subheading)));
|
|
1955
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-subheading, var(--xmlui-borderHorizontalColor-Text-subheading, var(--xmlui-borderColor-Text-subheading)));
|
|
1956
|
+
border-right-color: var(--xmlui-borderRightColor-Text-subheading, var(--xmlui-borderHorizontalColor-Text-subheading, var(--xmlui-borderColor-Text-subheading)));
|
|
1957
|
+
border-top-color: var(--xmlui-borderTopColor-Text-subheading, var(--xmlui-borderVerticalColor-Text-subheading, var(--xmlui-borderColor-Text-subheading)));
|
|
1958
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-subheading, var(--xmlui-borderVerticalColor-Text-subheading, var(--xmlui-borderColor-Text-subheading)));
|
|
1959
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-subheading, var(--xmlui-borderRadius-Text-subheading));
|
|
1960
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-subheading, var(--xmlui-borderRadius-Text-subheading));
|
|
1961
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-subheading, var(--xmlui-borderRadius-Text-subheading));
|
|
1962
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-subheading, var(--xmlui-borderRadius-Text-subheading));
|
|
1963
|
+
color: var(--xmlui-textColor-Text-subheading);
|
|
1365
1964
|
font-family: var(--xmlui-fontFamily-Text-subheading);
|
|
1366
1965
|
font-size: var(--xmlui-fontSize-Text-subheading);
|
|
1367
|
-
font-weight: var(--xmlui-fontWeight-Text-subheading);
|
|
1368
1966
|
font-style: var(--xmlui-fontStyle-Text-subheading);
|
|
1967
|
+
font-weight: var(--xmlui-fontWeight-Text-subheading);
|
|
1369
1968
|
font-stretch: var(--xmlui-fontStretch-Text-subheading);
|
|
1370
1969
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-subheading);
|
|
1371
1970
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-subheading);
|
|
@@ -1373,28 +1972,54 @@
|
|
|
1373
1972
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-subheading);
|
|
1374
1973
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-subheading);
|
|
1375
1974
|
line-height: var(--xmlui-lineHeight-Text-subheading);
|
|
1376
|
-
color: var(--xmlui-textColor-Text-subheading);
|
|
1377
1975
|
background-color: var(--xmlui-backgroundColor-Text-subheading);
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1976
|
+
text-transform: var(--xmlui-textTransform-Text-subheading);
|
|
1977
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-subheading);
|
|
1978
|
+
word-spacing: var(--xmlui-wordSpacing-Text-subheading);
|
|
1979
|
+
text-shadow: var(--xmlui-textShadow-Text-subheading);
|
|
1980
|
+
text-indent: var(--xmlui-textIndent-Text-subheading);
|
|
1981
|
+
text-align: var(--xmlui-textAlign-Text-subheading);
|
|
1982
|
+
text-align-last: var(--xmlui-textAlignLast-Text-subheading);
|
|
1983
|
+
word-break: var(--xmlui-wordBreak-Text-subheading);
|
|
1984
|
+
word-wrap: var(--xmlui-wordWrap-Text-subheading);
|
|
1985
|
+
direction: var(--xmlui-direction-Text-subheading);
|
|
1986
|
+
writing-mode: var(--xmlui-writingMode-Text-subheading);
|
|
1987
|
+
line-break: var(--xmlui-lineBreak-Text-subheading);
|
|
1387
1988
|
margin-top: var(--xmlui-marginTop-Text-subheading);
|
|
1388
1989
|
margin-bottom: var(--xmlui-marginBottom-Text-subheading);
|
|
1389
|
-
text-transform: var(--xmlui-textTransform-Text-subheading);
|
|
1390
1990
|
vertical-align: var(--xmlui-verticalAlign-Text-subheading);
|
|
1391
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-subheading);
|
|
1392
1991
|
}
|
|
1393
|
-
.
|
|
1992
|
+
._text_wtc9w_13._tableheading_wtc9w_1281 {
|
|
1993
|
+
padding: var(--xmlui-padding-Text-tableheading);
|
|
1994
|
+
padding-left: var(--xmlui-paddingLeft-Text-tableheading, var(--xmlui-paddingHorizontal-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
|
|
1995
|
+
padding-right: var(--xmlui-paddingRight-Text-tableheading, var(--xmlui-paddingHorizontal-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
|
|
1996
|
+
padding-top: var(--xmlui-paddingTop-Text-tableheading, var(--xmlui-paddingVertical-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
|
|
1997
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-tableheading, var(--xmlui-paddingVertical-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
|
|
1998
|
+
border-left: var(--xmlui-borderLeft-Text-tableheading, var(--xmlui-borderHorizontal-Text-tableheading, var(--xmlui-border-Text-tableheading)));
|
|
1999
|
+
border-right: var(--xmlui-borderRight-Text-tableheading, var(--xmlui-borderHorizontal-Text-tableheading, var(--xmlui-border-Text-tableheading)));
|
|
2000
|
+
border-top: var(--xmlui-borderTop-Text-tableheading, var(--xmlui-borderVertical-Text-tableheading, var(--xmlui-border-Text-tableheading)));
|
|
2001
|
+
border-bottom: var(--xmlui-borderBottom-Text-tableheading, var(--xmlui-borderVertical-Text-tableheading, var(--xmlui-border-Text-tableheading)));
|
|
2002
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-tableheading, var(--xmlui-borderHorizontalStyle-Text-tableheading, var(--xmlui-borderStyle-Text-tableheading)));
|
|
2003
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-tableheading, var(--xmlui-borderHorizontalStyle-Text-tableheading, var(--xmlui-borderStyle-Text-tableheading)));
|
|
2004
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-tableheading, var(--xmlui-borderVerticalStyle-Text-tableheading, var(--xmlui-borderStyle-Text-tableheading)));
|
|
2005
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-tableheading, var(--xmlui-borderVerticalStyle-Text-tableheading, var(--xmlui-borderStyle-Text-tableheading)));
|
|
2006
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-tableheading, var(--xmlui-borderHorizontalWidth-Text-tableheading, var(--xmlui-borderWidth-Text-tableheading)));
|
|
2007
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-tableheading, var(--xmlui-borderHorizontalWidth-Text-tableheading, var(--xmlui-borderWidth-Text-tableheading)));
|
|
2008
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-tableheading, var(--xmlui-borderVerticalWidth-Text-tableheading, var(--xmlui-borderWidth-Text-tableheading)));
|
|
2009
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-tableheading, var(--xmlui-borderVerticalWidth-Text-tableheading, var(--xmlui-borderWidth-Text-tableheading)));
|
|
2010
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-tableheading, var(--xmlui-borderHorizontalColor-Text-tableheading, var(--xmlui-borderColor-Text-tableheading)));
|
|
2011
|
+
border-right-color: var(--xmlui-borderRightColor-Text-tableheading, var(--xmlui-borderHorizontalColor-Text-tableheading, var(--xmlui-borderColor-Text-tableheading)));
|
|
2012
|
+
border-top-color: var(--xmlui-borderTopColor-Text-tableheading, var(--xmlui-borderVerticalColor-Text-tableheading, var(--xmlui-borderColor-Text-tableheading)));
|
|
2013
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-tableheading, var(--xmlui-borderVerticalColor-Text-tableheading, var(--xmlui-borderColor-Text-tableheading)));
|
|
2014
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-tableheading, var(--xmlui-borderRadius-Text-tableheading));
|
|
2015
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-tableheading, var(--xmlui-borderRadius-Text-tableheading));
|
|
2016
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-tableheading, var(--xmlui-borderRadius-Text-tableheading));
|
|
2017
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-tableheading, var(--xmlui-borderRadius-Text-tableheading));
|
|
2018
|
+
color: var(--xmlui-textColor-Text-tableheading);
|
|
1394
2019
|
font-family: var(--xmlui-fontFamily-Text-tableheading);
|
|
1395
2020
|
font-size: var(--xmlui-fontSize-Text-tableheading);
|
|
1396
|
-
font-weight: var(--xmlui-fontWeight-Text-tableheading);
|
|
1397
2021
|
font-style: var(--xmlui-fontStyle-Text-tableheading);
|
|
2022
|
+
font-weight: var(--xmlui-fontWeight-Text-tableheading);
|
|
1398
2023
|
font-stretch: var(--xmlui-fontStretch-Text-tableheading);
|
|
1399
2024
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-tableheading);
|
|
1400
2025
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-tableheading);
|
|
@@ -1402,28 +2027,54 @@
|
|
|
1402
2027
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-tableheading);
|
|
1403
2028
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-tableheading);
|
|
1404
2029
|
line-height: var(--xmlui-lineHeight-Text-tableheading);
|
|
1405
|
-
color: var(--xmlui-textColor-Text-tableheading);
|
|
1406
2030
|
background-color: var(--xmlui-backgroundColor-Text-tableheading);
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
2031
|
+
text-transform: var(--xmlui-textTransform-Text-tableheading);
|
|
2032
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-tableheading);
|
|
2033
|
+
word-spacing: var(--xmlui-wordSpacing-Text-tableheading);
|
|
2034
|
+
text-shadow: var(--xmlui-textShadow-Text-tableheading);
|
|
2035
|
+
text-indent: var(--xmlui-textIndent-Text-tableheading);
|
|
2036
|
+
text-align: var(--xmlui-textAlign-Text-tableheading);
|
|
2037
|
+
text-align-last: var(--xmlui-textAlignLast-Text-tableheading);
|
|
2038
|
+
word-break: var(--xmlui-wordBreak-Text-tableheading);
|
|
2039
|
+
word-wrap: var(--xmlui-wordWrap-Text-tableheading);
|
|
2040
|
+
direction: var(--xmlui-direction-Text-tableheading);
|
|
2041
|
+
writing-mode: var(--xmlui-writingMode-Text-tableheading);
|
|
2042
|
+
line-break: var(--xmlui-lineBreak-Text-tableheading);
|
|
1416
2043
|
margin-top: var(--xmlui-marginTop-Text-tableheading);
|
|
1417
2044
|
margin-bottom: var(--xmlui-marginBottom-Text-tableheading);
|
|
1418
|
-
text-transform: var(--xmlui-textTransform-Text-tableheading);
|
|
1419
2045
|
vertical-align: var(--xmlui-verticalAlign-Text-tableheading);
|
|
1420
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-tableheading);
|
|
1421
2046
|
}
|
|
1422
|
-
.
|
|
2047
|
+
._text_wtc9w_13._secondary_wtc9w_1336 {
|
|
2048
|
+
padding: var(--xmlui-padding-Text-secondary);
|
|
2049
|
+
padding-left: var(--xmlui-paddingLeft-Text-secondary, var(--xmlui-paddingHorizontal-Text-secondary, var(--xmlui-padding-Text-secondary)));
|
|
2050
|
+
padding-right: var(--xmlui-paddingRight-Text-secondary, var(--xmlui-paddingHorizontal-Text-secondary, var(--xmlui-padding-Text-secondary)));
|
|
2051
|
+
padding-top: var(--xmlui-paddingTop-Text-secondary, var(--xmlui-paddingVertical-Text-secondary, var(--xmlui-padding-Text-secondary)));
|
|
2052
|
+
padding-bottom: var(--xmlui-paddingBottom-Text-secondary, var(--xmlui-paddingVertical-Text-secondary, var(--xmlui-padding-Text-secondary)));
|
|
2053
|
+
border-left: var(--xmlui-borderLeft-Text-secondary, var(--xmlui-borderHorizontal-Text-secondary, var(--xmlui-border-Text-secondary)));
|
|
2054
|
+
border-right: var(--xmlui-borderRight-Text-secondary, var(--xmlui-borderHorizontal-Text-secondary, var(--xmlui-border-Text-secondary)));
|
|
2055
|
+
border-top: var(--xmlui-borderTop-Text-secondary, var(--xmlui-borderVertical-Text-secondary, var(--xmlui-border-Text-secondary)));
|
|
2056
|
+
border-bottom: var(--xmlui-borderBottom-Text-secondary, var(--xmlui-borderVertical-Text-secondary, var(--xmlui-border-Text-secondary)));
|
|
2057
|
+
border-left-style: var(--xmlui-borderLeftStyle-Text-secondary, var(--xmlui-borderHorizontalStyle-Text-secondary, var(--xmlui-borderStyle-Text-secondary)));
|
|
2058
|
+
border-right-style: var(--xmlui-borderRightStyle-Text-secondary, var(--xmlui-borderHorizontalStyle-Text-secondary, var(--xmlui-borderStyle-Text-secondary)));
|
|
2059
|
+
border-top-style: var(--xmlui-borderTopStyle-Text-secondary, var(--xmlui-borderVerticalStyle-Text-secondary, var(--xmlui-borderStyle-Text-secondary)));
|
|
2060
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Text-secondary, var(--xmlui-borderVerticalStyle-Text-secondary, var(--xmlui-borderStyle-Text-secondary)));
|
|
2061
|
+
border-left-width: var(--xmlui-borderLeftWidth-Text-secondary, var(--xmlui-borderHorizontalWidth-Text-secondary, var(--xmlui-borderWidth-Text-secondary)));
|
|
2062
|
+
border-right-width: var(--xmlui-borderRightWidth-Text-secondary, var(--xmlui-borderHorizontalWidth-Text-secondary, var(--xmlui-borderWidth-Text-secondary)));
|
|
2063
|
+
border-top-width: var(--xmlui-borderTopWidth-Text-secondary, var(--xmlui-borderVerticalWidth-Text-secondary, var(--xmlui-borderWidth-Text-secondary)));
|
|
2064
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Text-secondary, var(--xmlui-borderVerticalWidth-Text-secondary, var(--xmlui-borderWidth-Text-secondary)));
|
|
2065
|
+
border-left-color: var(--xmlui-borderLeftColor-Text-secondary, var(--xmlui-borderHorizontalColor-Text-secondary, var(--xmlui-borderColor-Text-secondary)));
|
|
2066
|
+
border-right-color: var(--xmlui-borderRightColor-Text-secondary, var(--xmlui-borderHorizontalColor-Text-secondary, var(--xmlui-borderColor-Text-secondary)));
|
|
2067
|
+
border-top-color: var(--xmlui-borderTopColor-Text-secondary, var(--xmlui-borderVerticalColor-Text-secondary, var(--xmlui-borderColor-Text-secondary)));
|
|
2068
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Text-secondary, var(--xmlui-borderVerticalColor-Text-secondary, var(--xmlui-borderColor-Text-secondary)));
|
|
2069
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Text-secondary, var(--xmlui-borderRadius-Text-secondary));
|
|
2070
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Text-secondary, var(--xmlui-borderRadius-Text-secondary));
|
|
2071
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Text-secondary, var(--xmlui-borderRadius-Text-secondary));
|
|
2072
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Text-secondary, var(--xmlui-borderRadius-Text-secondary));
|
|
2073
|
+
color: var(--xmlui-textColor-Text-secondary);
|
|
1423
2074
|
font-family: var(--xmlui-fontFamily-Text-secondary);
|
|
1424
2075
|
font-size: var(--xmlui-fontSize-Text-secondary);
|
|
1425
|
-
font-weight: var(--xmlui-fontWeight-Text-secondary);
|
|
1426
2076
|
font-style: var(--xmlui-fontStyle-Text-secondary);
|
|
2077
|
+
font-weight: var(--xmlui-fontWeight-Text-secondary);
|
|
1427
2078
|
font-stretch: var(--xmlui-fontStretch-Text-secondary);
|
|
1428
2079
|
text-decoration-line: var(--xmlui-textDecorationLine-Text-secondary);
|
|
1429
2080
|
text-decoration-color: var(--xmlui-textDecorationColor-Text-secondary);
|
|
@@ -1431,24 +2082,24 @@
|
|
|
1431
2082
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Text-secondary);
|
|
1432
2083
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Text-secondary);
|
|
1433
2084
|
line-height: var(--xmlui-lineHeight-Text-secondary);
|
|
1434
|
-
color: var(--xmlui-textColor-Text-secondary);
|
|
1435
2085
|
background-color: var(--xmlui-backgroundColor-Text-secondary);
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
2086
|
+
text-transform: var(--xmlui-textTransform-Text-secondary);
|
|
2087
|
+
letter-spacing: var(--xmlui-letterSpacing-Text-secondary);
|
|
2088
|
+
word-spacing: var(--xmlui-wordSpacing-Text-secondary);
|
|
2089
|
+
text-shadow: var(--xmlui-textShadow-Text-secondary);
|
|
2090
|
+
text-indent: var(--xmlui-textIndent-Text-secondary);
|
|
2091
|
+
text-align: var(--xmlui-textAlign-Text-secondary);
|
|
2092
|
+
text-align-last: var(--xmlui-textAlignLast-Text-secondary);
|
|
2093
|
+
word-break: var(--xmlui-wordBreak-Text-secondary);
|
|
2094
|
+
word-wrap: var(--xmlui-wordWrap-Text-secondary);
|
|
2095
|
+
direction: var(--xmlui-direction-Text-secondary);
|
|
2096
|
+
writing-mode: var(--xmlui-writingMode-Text-secondary);
|
|
2097
|
+
line-break: var(--xmlui-lineBreak-Text-secondary);
|
|
1445
2098
|
margin-top: var(--xmlui-marginTop-Text-secondary);
|
|
1446
2099
|
margin-bottom: var(--xmlui-marginBottom-Text-secondary);
|
|
1447
|
-
text-transform: var(--xmlui-textTransform-Text-secondary);
|
|
1448
2100
|
vertical-align: var(--xmlui-verticalAlign-Text-secondary);
|
|
1449
|
-
letter-spacing: var(--xmlui-letterSpacing-Text-secondary);
|
|
1450
2101
|
}
|
|
1451
|
-
.
|
|
2102
|
+
._text_wtc9w_13._strong_wtc9w_1391 {
|
|
1452
2103
|
font-weight: var(--xmlui-fontWeight-bold);
|
|
1453
2104
|
}
|
|
1454
2105
|
|
|
@@ -1456,18 +2107,18 @@
|
|
|
1456
2107
|
This is a Chromium based solution that is supported by most modern browsers.
|
|
1457
2108
|
See this source for details: https://css-tricks.com/line-clampin/
|
|
1458
2109
|
*/
|
|
1459
|
-
.
|
|
2110
|
+
._truncateOverflow_wtc9w_1399 {
|
|
1460
2111
|
overflow: hidden;
|
|
1461
2112
|
overflow-wrap: break-word;
|
|
1462
2113
|
white-space: nowrap;
|
|
1463
2114
|
max-width: 100%;
|
|
1464
2115
|
}
|
|
1465
2116
|
|
|
1466
|
-
.
|
|
2117
|
+
._preserveLinebreaks_wtc9w_1406 {
|
|
1467
2118
|
white-space: pre-wrap;
|
|
1468
2119
|
}
|
|
1469
2120
|
|
|
1470
|
-
.
|
|
2121
|
+
._noEllipsis_wtc9w_1410 {
|
|
1471
2122
|
text-overflow: clip;
|
|
1472
2123
|
}/*
|
|
1473
2124
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -2385,7 +3036,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2385
3036
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
2386
3037
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
2387
3038
|
*/
|
|
2388
|
-
.
|
|
3039
|
+
._badge_fs4n2_13 {
|
|
2389
3040
|
padding: var(--xmlui-padding-Badge);
|
|
2390
3041
|
padding-left: var(--xmlui-paddingLeft-Badge, var(--xmlui-paddingHorizontal-Badge, var(--xmlui-padding-Badge)));
|
|
2391
3042
|
padding-right: var(--xmlui-paddingRight-Badge, var(--xmlui-paddingHorizontal-Badge, var(--xmlui-padding-Badge)));
|
|
@@ -2411,6 +3062,31 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2411
3062
|
border-start-end-radius: var(--xmlui-borderStartEndRadius-Badge, var(--xmlui-borderRadius-Badge));
|
|
2412
3063
|
border-end-start-radius: var(--xmlui-borderEndStartRadius-Badge, var(--xmlui-borderRadius-Badge));
|
|
2413
3064
|
border-end-end-radius: var(--xmlui-borderEndEndRadius-Badge, var(--xmlui-borderRadius-Badge));
|
|
3065
|
+
color: var(--xmlui-textColor-Badge);
|
|
3066
|
+
font-family: var(--xmlui-fontFamily-Badge);
|
|
3067
|
+
font-size: var(--xmlui-fontSize-Badge);
|
|
3068
|
+
font-style: var(--xmlui-fontStyle-Badge);
|
|
3069
|
+
font-weight: var(--xmlui-fontWeight-Badge);
|
|
3070
|
+
font-stretch: var(--xmlui-fontStretch-Badge);
|
|
3071
|
+
text-decoration-line: var(--xmlui-textDecorationLine-Badge);
|
|
3072
|
+
text-decoration-color: var(--xmlui-textDecorationColor-Badge);
|
|
3073
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-Badge);
|
|
3074
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-Badge);
|
|
3075
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-Badge);
|
|
3076
|
+
line-height: var(--xmlui-lineHeight-Badge);
|
|
3077
|
+
background-color: var(--xmlui-backgroundColor-Badge);
|
|
3078
|
+
text-transform: var(--xmlui-textTransform-Badge);
|
|
3079
|
+
letter-spacing: var(--xmlui-letterSpacing-Badge);
|
|
3080
|
+
word-spacing: var(--xmlui-wordSpacing-Badge);
|
|
3081
|
+
text-shadow: var(--xmlui-textShadow-Badge);
|
|
3082
|
+
text-indent: var(--xmlui-textIndent-Badge);
|
|
3083
|
+
text-align: var(--xmlui-textAlign-Badge);
|
|
3084
|
+
text-align-last: var(--xmlui-textAlignLast-Badge);
|
|
3085
|
+
word-break: var(--xmlui-wordBreak-Badge);
|
|
3086
|
+
word-wrap: var(--xmlui-wordWrap-Badge);
|
|
3087
|
+
direction: var(--xmlui-direction-Badge);
|
|
3088
|
+
writing-mode: var(--xmlui-writingMode-Badge);
|
|
3089
|
+
line-break: var(--xmlui-lineBreak-Badge);
|
|
2414
3090
|
display: inline-block;
|
|
2415
3091
|
width: fit-content;
|
|
2416
3092
|
vertical-align: top;
|
|
@@ -2418,13 +3094,9 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2418
3094
|
overflow: hidden;
|
|
2419
3095
|
text-overflow: ellipsis;
|
|
2420
3096
|
text-transform: uppercase;
|
|
2421
|
-
font-weight: var(--xmlui-fontWeight-Badge);
|
|
2422
|
-
background-color: var(--xmlui-backgroundColor-Badge);
|
|
2423
|
-
color: var(--xmlui-textColor-Badge);
|
|
2424
|
-
font-size: var(--xmlui-fontSize-Badge);
|
|
2425
3097
|
}
|
|
2426
3098
|
|
|
2427
|
-
.
|
|
3099
|
+
._pill_fs4n2_73 {
|
|
2428
3100
|
padding: var(--xmlui-padding-Badge-pill);
|
|
2429
3101
|
padding-left: var(--xmlui-paddingLeft-Badge-pill, var(--xmlui-paddingHorizontal-Badge-pill, var(--xmlui-padding-Badge-pill)));
|
|
2430
3102
|
padding-right: var(--xmlui-paddingRight-Badge-pill, var(--xmlui-paddingHorizontal-Badge-pill, var(--xmlui-padding-Badge-pill)));
|
|
@@ -2450,17 +3122,38 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2450
3122
|
border-start-end-radius: var(--xmlui-borderStartEndRadius-Badge-pill, var(--xmlui-borderRadius-Badge-pill));
|
|
2451
3123
|
border-end-start-radius: var(--xmlui-borderEndStartRadius-Badge-pill, var(--xmlui-borderRadius-Badge-pill));
|
|
2452
3124
|
border-end-end-radius: var(--xmlui-borderEndEndRadius-Badge-pill, var(--xmlui-borderRadius-Badge-pill));
|
|
3125
|
+
color: var(--xmlui-textColor-Badge-pill);
|
|
3126
|
+
font-family: var(--xmlui-fontFamily-Badge-pill);
|
|
3127
|
+
font-size: var(--xmlui-fontSize-Badge-pill);
|
|
3128
|
+
font-style: var(--xmlui-fontStyle-Badge-pill);
|
|
3129
|
+
font-weight: var(--xmlui-fontWeight-Badge-pill);
|
|
3130
|
+
font-stretch: var(--xmlui-fontStretch-Badge-pill);
|
|
3131
|
+
text-decoration-line: var(--xmlui-textDecorationLine-Badge-pill);
|
|
3132
|
+
text-decoration-color: var(--xmlui-textDecorationColor-Badge-pill);
|
|
3133
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-Badge-pill);
|
|
3134
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-Badge-pill);
|
|
3135
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-Badge-pill);
|
|
3136
|
+
line-height: var(--xmlui-lineHeight-Badge-pill);
|
|
3137
|
+
background-color: var(--xmlui-backgroundColor-Badge-pill);
|
|
3138
|
+
text-transform: var(--xmlui-textTransform-Badge-pill);
|
|
3139
|
+
letter-spacing: var(--xmlui-letterSpacing-Badge-pill);
|
|
3140
|
+
word-spacing: var(--xmlui-wordSpacing-Badge-pill);
|
|
3141
|
+
text-shadow: var(--xmlui-textShadow-Badge-pill);
|
|
3142
|
+
text-indent: var(--xmlui-textIndent-Badge-pill);
|
|
3143
|
+
text-align: var(--xmlui-textAlign-Badge-pill);
|
|
3144
|
+
text-align-last: var(--xmlui-textAlignLast-Badge-pill);
|
|
3145
|
+
word-break: var(--xmlui-wordBreak-Badge-pill);
|
|
3146
|
+
word-wrap: var(--xmlui-wordWrap-Badge-pill);
|
|
3147
|
+
direction: var(--xmlui-direction-Badge-pill);
|
|
3148
|
+
writing-mode: var(--xmlui-writingMode-Badge-pill);
|
|
3149
|
+
line-break: var(--xmlui-lineBreak-Badge-pill);
|
|
2453
3150
|
display: inline-block;
|
|
2454
3151
|
width: fit-content;
|
|
2455
3152
|
vertical-align: top;
|
|
2456
3153
|
min-width: fit-content;
|
|
2457
3154
|
overflow: hidden;
|
|
2458
3155
|
text-overflow: ellipsis;
|
|
2459
|
-
font-weight: var(--xmlui-fontWeight-Badge-pill);
|
|
2460
|
-
background-color: var(--xmlui-backgroundColor-Badge);
|
|
2461
|
-
color: var(--xmlui-textColor-Badge);
|
|
2462
3156
|
border-radius: 9999px;
|
|
2463
|
-
font-size: var(--xmlui-fontSize-Badge-pill);
|
|
2464
3157
|
}/*
|
|
2465
3158
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
2466
3159
|
*
|
|
@@ -2540,7 +3233,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2540
3233
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
2541
3234
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
2542
3235
|
*/
|
|
2543
|
-
.
|
|
3236
|
+
._container_gmmz2_13 {
|
|
2544
3237
|
border-left: var(--xmlui-borderLeft-Link, var(--xmlui-borderHorizontal-Link, var(--xmlui-border-Link)));
|
|
2545
3238
|
border-right: var(--xmlui-borderRight-Link, var(--xmlui-borderHorizontal-Link, var(--xmlui-border-Link)));
|
|
2546
3239
|
border-top: var(--xmlui-borderTop-Link, var(--xmlui-borderVertical-Link, var(--xmlui-border-Link)));
|
|
@@ -2566,11 +3259,32 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2566
3259
|
padding-right: var(--xmlui-paddingRight-Link, var(--xmlui-paddingHorizontal-Link, var(--xmlui-padding-Link)));
|
|
2567
3260
|
padding-top: var(--xmlui-paddingTop-Link, var(--xmlui-paddingVertical-Link, var(--xmlui-padding-Link)));
|
|
2568
3261
|
padding-bottom: var(--xmlui-paddingBottom-Link, var(--xmlui-paddingVertical-Link, var(--xmlui-padding-Link)));
|
|
2569
|
-
flex-shrink: 0;
|
|
2570
3262
|
color: var(--xmlui-textColor-Link);
|
|
2571
3263
|
font-family: var(--xmlui-fontFamily-Link);
|
|
2572
|
-
font-weight: var(--xmlui-fontWeight-Link);
|
|
2573
3264
|
font-size: var(--xmlui-fontSize-Link);
|
|
3265
|
+
font-style: var(--xmlui-fontStyle-Link);
|
|
3266
|
+
font-weight: var(--xmlui-fontWeight-Link);
|
|
3267
|
+
font-stretch: var(--xmlui-fontStretch-Link);
|
|
3268
|
+
text-decoration-line: var(--xmlui-textDecorationLine-Link);
|
|
3269
|
+
text-decoration-color: var(--xmlui-textDecorationColor-Link);
|
|
3270
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-Link);
|
|
3271
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-Link);
|
|
3272
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-Link);
|
|
3273
|
+
line-height: var(--xmlui-lineHeight-Link);
|
|
3274
|
+
background-color: var(--xmlui-backgroundColor-Link);
|
|
3275
|
+
text-transform: var(--xmlui-textTransform-Link);
|
|
3276
|
+
letter-spacing: var(--xmlui-letterSpacing-Link);
|
|
3277
|
+
word-spacing: var(--xmlui-wordSpacing-Link);
|
|
3278
|
+
text-shadow: var(--xmlui-textShadow-Link);
|
|
3279
|
+
text-indent: var(--xmlui-textIndent-Link);
|
|
3280
|
+
text-align: var(--xmlui-textAlign-Link);
|
|
3281
|
+
text-align-last: var(--xmlui-textAlignLast-Link);
|
|
3282
|
+
word-break: var(--xmlui-wordBreak-Link);
|
|
3283
|
+
word-wrap: var(--xmlui-wordWrap-Link);
|
|
3284
|
+
direction: var(--xmlui-direction-Link);
|
|
3285
|
+
writing-mode: var(--xmlui-writingMode-Link);
|
|
3286
|
+
line-break: var(--xmlui-lineBreak-Link);
|
|
3287
|
+
flex-shrink: 0;
|
|
2574
3288
|
cursor: pointer;
|
|
2575
3289
|
text-decoration: none;
|
|
2576
3290
|
width: fit-content;
|
|
@@ -2580,27 +3294,27 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2580
3294
|
flex-direction: row;
|
|
2581
3295
|
align-items: center;
|
|
2582
3296
|
}
|
|
2583
|
-
.
|
|
3297
|
+
._container_gmmz2_13._active_gmmz2_74 {
|
|
2584
3298
|
color: var(--xmlui-textColor-Link--active);
|
|
2585
3299
|
font-weight: var(--xmlui-fontWeight-Link--active);
|
|
2586
3300
|
}
|
|
2587
|
-
.
|
|
3301
|
+
._container_gmmz2_13._disabled_gmmz2_78 {
|
|
2588
3302
|
pointer-events: none;
|
|
2589
3303
|
}
|
|
2590
|
-
.
|
|
3304
|
+
._container_gmmz2_13:not(._disabled_gmmz2_78):hover {
|
|
2591
3305
|
color: var(--xmlui-textColor-Link--hover);
|
|
2592
3306
|
}
|
|
2593
|
-
.
|
|
3307
|
+
._container_gmmz2_13:not(._disabled_gmmz2_78):focus-visible {
|
|
2594
3308
|
outline-width: var(--xmlui-outlineWidth-Link--focus);
|
|
2595
3309
|
outline-color: var(--xmlui-outlineColor-Link--focus);
|
|
2596
3310
|
outline-style: var(--xmlui-outlineStyle-Link--focus);
|
|
2597
3311
|
outline-offset: var(--xmlui-outlineOffset-Link--focus);
|
|
2598
3312
|
}
|
|
2599
|
-
.
|
|
3313
|
+
._container_gmmz2_13:not(._disabled_gmmz2_78)._active_gmmz2_74:hover {
|
|
2600
3314
|
color: var(--xmlui-textColor-Link--hover--active);
|
|
2601
3315
|
}
|
|
2602
3316
|
|
|
2603
|
-
.
|
|
3317
|
+
._iconWrapper_gmmz2_94 {
|
|
2604
3318
|
padding: var(--xmlui-padding-icon-Link);
|
|
2605
3319
|
padding-left: var(--xmlui-paddingLeft-icon-Link, var(--xmlui-paddingHorizontal-icon-Link, var(--xmlui-padding-icon-Link)));
|
|
2606
3320
|
padding-right: var(--xmlui-paddingRight-icon-Link, var(--xmlui-paddingHorizontal-icon-Link, var(--xmlui-padding-icon-Link)));
|
|
@@ -2610,24 +3324,24 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2610
3324
|
line-height: 0;
|
|
2611
3325
|
}
|
|
2612
3326
|
|
|
2613
|
-
.
|
|
3327
|
+
._container_gmmz2_13:not(._active_gmmz2_74) {
|
|
2614
3328
|
text-underline-offset: var(--xmlui-textUnderlineOffset-Link);
|
|
2615
3329
|
text-decoration-line: var(--xmlui-textDecorationLine-Link);
|
|
2616
3330
|
}
|
|
2617
|
-
.
|
|
3331
|
+
._container_gmmz2_13:not(._active_gmmz2_74):not([disabled]):hover {
|
|
2618
3332
|
text-decoration-color: var(--xmlui-textDecorationColor-Link);
|
|
2619
3333
|
text-decoration-style: var(--xmlui-textDecorationStyle-Link);
|
|
2620
3334
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Link);
|
|
2621
3335
|
}
|
|
2622
|
-
.
|
|
3336
|
+
._container_gmmz2_13:not(._active_gmmz2_74):not([disabled]):hover:has(> button) {
|
|
2623
3337
|
text-decoration-line: none;
|
|
2624
3338
|
}
|
|
2625
|
-
.
|
|
3339
|
+
._container_gmmz2_13:not(._active_gmmz2_74):not([disabled]):active {
|
|
2626
3340
|
text-decoration-color: var(--xmlui-textDecorationColor-Link);
|
|
2627
3341
|
text-decoration-style: var(--xmlui-textDecorationStyle-Link);
|
|
2628
3342
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-Link);
|
|
2629
3343
|
}
|
|
2630
|
-
.
|
|
3344
|
+
._container_gmmz2_13:not(._active_gmmz2_74):not([disabled]):active:has(> button) {
|
|
2631
3345
|
text-decoration-line: none;
|
|
2632
3346
|
}/*
|
|
2633
3347
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -2641,13 +3355,61 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2641
3355
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
2642
3356
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
2643
3357
|
*/
|
|
2644
|
-
.
|
|
3358
|
+
._heading_1ad65_13._h1_1ad65_13 {
|
|
3359
|
+
padding: var(--xmlui-padding-H1);
|
|
3360
|
+
padding-left: var(--xmlui-paddingLeft-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)));
|
|
3361
|
+
padding-right: var(--xmlui-paddingRight-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)));
|
|
3362
|
+
padding-top: var(--xmlui-paddingTop-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)));
|
|
3363
|
+
padding-bottom: var(--xmlui-paddingBottom-H1, var(--xmlui-paddingVertical-H1, var(--xmlui-padding-H1)));
|
|
3364
|
+
border-left: var(--xmlui-borderLeft-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)));
|
|
3365
|
+
border-right: var(--xmlui-borderRight-H1, var(--xmlui-borderHorizontal-H1, var(--xmlui-border-H1)));
|
|
3366
|
+
border-top: var(--xmlui-borderTop-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)));
|
|
3367
|
+
border-bottom: var(--xmlui-borderBottom-H1, var(--xmlui-borderVertical-H1, var(--xmlui-border-H1)));
|
|
3368
|
+
border-left-style: var(--xmlui-borderLeftStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)));
|
|
3369
|
+
border-right-style: var(--xmlui-borderRightStyle-H1, var(--xmlui-borderHorizontalStyle-H1, var(--xmlui-borderStyle-H1)));
|
|
3370
|
+
border-top-style: var(--xmlui-borderTopStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)));
|
|
3371
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-H1, var(--xmlui-borderVerticalStyle-H1, var(--xmlui-borderStyle-H1)));
|
|
3372
|
+
border-left-width: var(--xmlui-borderLeftWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)));
|
|
3373
|
+
border-right-width: var(--xmlui-borderRightWidth-H1, var(--xmlui-borderHorizontalWidth-H1, var(--xmlui-borderWidth-H1)));
|
|
3374
|
+
border-top-width: var(--xmlui-borderTopWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)));
|
|
3375
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-H1, var(--xmlui-borderVerticalWidth-H1, var(--xmlui-borderWidth-H1)));
|
|
3376
|
+
border-left-color: var(--xmlui-borderLeftColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)));
|
|
3377
|
+
border-right-color: var(--xmlui-borderRightColor-H1, var(--xmlui-borderHorizontalColor-H1, var(--xmlui-borderColor-H1)));
|
|
3378
|
+
border-top-color: var(--xmlui-borderTopColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)));
|
|
3379
|
+
border-bottom-color: var(--xmlui-borderBottomColor-H1, var(--xmlui-borderVerticalColor-H1, var(--xmlui-borderColor-H1)));
|
|
3380
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-H1, var(--xmlui-borderRadius-H1));
|
|
3381
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-H1, var(--xmlui-borderRadius-H1));
|
|
3382
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-H1, var(--xmlui-borderRadius-H1));
|
|
3383
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-H1, var(--xmlui-borderRadius-H1));
|
|
2645
3384
|
color: var(--xmlui-textColor-H1);
|
|
2646
|
-
letter-spacing: var(--xmlui-letterSpacing-H1);
|
|
2647
3385
|
font-family: var(--xmlui-fontFamily-H1);
|
|
2648
|
-
font-weight: var(--xmlui-fontWeight-H1);
|
|
2649
3386
|
font-size: var(--xmlui-fontSize-H1);
|
|
3387
|
+
font-style: var(--xmlui-fontStyle-H1);
|
|
3388
|
+
font-weight: var(--xmlui-fontWeight-H1);
|
|
3389
|
+
font-stretch: var(--xmlui-fontStretch-H1);
|
|
3390
|
+
text-decoration-line: var(--xmlui-textDecorationLine-H1);
|
|
3391
|
+
text-decoration-color: var(--xmlui-textDecorationColor-H1);
|
|
3392
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-H1);
|
|
3393
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-H1);
|
|
3394
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-H1);
|
|
2650
3395
|
line-height: var(--xmlui-lineHeight-H1);
|
|
3396
|
+
background-color: var(--xmlui-backgroundColor-H1);
|
|
3397
|
+
text-transform: var(--xmlui-textTransform-H1);
|
|
3398
|
+
letter-spacing: var(--xmlui-letterSpacing-H1);
|
|
3399
|
+
word-spacing: var(--xmlui-wordSpacing-H1);
|
|
3400
|
+
text-shadow: var(--xmlui-textShadow-H1);
|
|
3401
|
+
text-indent: var(--xmlui-textIndent-H1);
|
|
3402
|
+
text-align: var(--xmlui-textAlign-H1);
|
|
3403
|
+
text-align-last: var(--xmlui-textAlignLast-H1);
|
|
3404
|
+
word-break: var(--xmlui-wordBreak-H1);
|
|
3405
|
+
word-wrap: var(--xmlui-wordWrap-H1);
|
|
3406
|
+
direction: var(--xmlui-direction-H1);
|
|
3407
|
+
writing-mode: var(--xmlui-writingMode-H1);
|
|
3408
|
+
line-break: var(--xmlui-lineBreak-H1);
|
|
3409
|
+
color: var(--xmlui-textColor-H1);
|
|
3410
|
+
letter-spacing: var(--xmlui-letterSpacing-H1);
|
|
3411
|
+
font-family: var(--xmlui-fontFamily-H1);
|
|
3412
|
+
font-weight: var(--xmlui-fontWeight-H1);
|
|
2651
3413
|
margin-top: var(--xmlui-marginTop-H1);
|
|
2652
3414
|
margin-bottom: var(--xmlui-marginBottom-H1);
|
|
2653
3415
|
text-decoration-line: var(--xmlui-textDecorationLine-H1);
|
|
@@ -2656,13 +3418,61 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2656
3418
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H1);
|
|
2657
3419
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H1);
|
|
2658
3420
|
}
|
|
2659
|
-
.
|
|
3421
|
+
._heading_1ad65_13._h2_1ad65_76 {
|
|
3422
|
+
padding: var(--xmlui-padding-H2);
|
|
3423
|
+
padding-left: var(--xmlui-paddingLeft-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)));
|
|
3424
|
+
padding-right: var(--xmlui-paddingRight-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)));
|
|
3425
|
+
padding-top: var(--xmlui-paddingTop-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)));
|
|
3426
|
+
padding-bottom: var(--xmlui-paddingBottom-H2, var(--xmlui-paddingVertical-H2, var(--xmlui-padding-H2)));
|
|
3427
|
+
border-left: var(--xmlui-borderLeft-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)));
|
|
3428
|
+
border-right: var(--xmlui-borderRight-H2, var(--xmlui-borderHorizontal-H2, var(--xmlui-border-H2)));
|
|
3429
|
+
border-top: var(--xmlui-borderTop-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)));
|
|
3430
|
+
border-bottom: var(--xmlui-borderBottom-H2, var(--xmlui-borderVertical-H2, var(--xmlui-border-H2)));
|
|
3431
|
+
border-left-style: var(--xmlui-borderLeftStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)));
|
|
3432
|
+
border-right-style: var(--xmlui-borderRightStyle-H2, var(--xmlui-borderHorizontalStyle-H2, var(--xmlui-borderStyle-H2)));
|
|
3433
|
+
border-top-style: var(--xmlui-borderTopStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)));
|
|
3434
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-H2, var(--xmlui-borderVerticalStyle-H2, var(--xmlui-borderStyle-H2)));
|
|
3435
|
+
border-left-width: var(--xmlui-borderLeftWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)));
|
|
3436
|
+
border-right-width: var(--xmlui-borderRightWidth-H2, var(--xmlui-borderHorizontalWidth-H2, var(--xmlui-borderWidth-H2)));
|
|
3437
|
+
border-top-width: var(--xmlui-borderTopWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)));
|
|
3438
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-H2, var(--xmlui-borderVerticalWidth-H2, var(--xmlui-borderWidth-H2)));
|
|
3439
|
+
border-left-color: var(--xmlui-borderLeftColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)));
|
|
3440
|
+
border-right-color: var(--xmlui-borderRightColor-H2, var(--xmlui-borderHorizontalColor-H2, var(--xmlui-borderColor-H2)));
|
|
3441
|
+
border-top-color: var(--xmlui-borderTopColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)));
|
|
3442
|
+
border-bottom-color: var(--xmlui-borderBottomColor-H2, var(--xmlui-borderVerticalColor-H2, var(--xmlui-borderColor-H2)));
|
|
3443
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-H2, var(--xmlui-borderRadius-H2));
|
|
3444
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-H2, var(--xmlui-borderRadius-H2));
|
|
3445
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-H2, var(--xmlui-borderRadius-H2));
|
|
3446
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-H2, var(--xmlui-borderRadius-H2));
|
|
2660
3447
|
color: var(--xmlui-textColor-H2);
|
|
2661
|
-
letter-spacing: var(--xmlui-letterSpacing-H2);
|
|
2662
3448
|
font-family: var(--xmlui-fontFamily-H2);
|
|
2663
|
-
font-weight: var(--xmlui-fontWeight-H2);
|
|
2664
3449
|
font-size: var(--xmlui-fontSize-H2);
|
|
3450
|
+
font-style: var(--xmlui-fontStyle-H2);
|
|
3451
|
+
font-weight: var(--xmlui-fontWeight-H2);
|
|
3452
|
+
font-stretch: var(--xmlui-fontStretch-H2);
|
|
3453
|
+
text-decoration-line: var(--xmlui-textDecorationLine-H2);
|
|
3454
|
+
text-decoration-color: var(--xmlui-textDecorationColor-H2);
|
|
3455
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-H2);
|
|
3456
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-H2);
|
|
3457
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-H2);
|
|
2665
3458
|
line-height: var(--xmlui-lineHeight-H2);
|
|
3459
|
+
background-color: var(--xmlui-backgroundColor-H2);
|
|
3460
|
+
text-transform: var(--xmlui-textTransform-H2);
|
|
3461
|
+
letter-spacing: var(--xmlui-letterSpacing-H2);
|
|
3462
|
+
word-spacing: var(--xmlui-wordSpacing-H2);
|
|
3463
|
+
text-shadow: var(--xmlui-textShadow-H2);
|
|
3464
|
+
text-indent: var(--xmlui-textIndent-H2);
|
|
3465
|
+
text-align: var(--xmlui-textAlign-H2);
|
|
3466
|
+
text-align-last: var(--xmlui-textAlignLast-H2);
|
|
3467
|
+
word-break: var(--xmlui-wordBreak-H2);
|
|
3468
|
+
word-wrap: var(--xmlui-wordWrap-H2);
|
|
3469
|
+
direction: var(--xmlui-direction-H2);
|
|
3470
|
+
writing-mode: var(--xmlui-writingMode-H2);
|
|
3471
|
+
line-break: var(--xmlui-lineBreak-H2);
|
|
3472
|
+
color: var(--xmlui-textColor-H2);
|
|
3473
|
+
letter-spacing: var(--xmlui-letterSpacing-H2);
|
|
3474
|
+
font-family: var(--xmlui-fontFamily-H2);
|
|
3475
|
+
font-weight: var(--xmlui-fontWeight-H2);
|
|
2666
3476
|
margin-top: var(--xmlui-marginTop-H2);
|
|
2667
3477
|
margin-bottom: var(--xmlui-marginBottom-H2);
|
|
2668
3478
|
text-decoration-line: var(--xmlui-textDecorationLine-H2);
|
|
@@ -2671,13 +3481,61 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2671
3481
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H2);
|
|
2672
3482
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H2);
|
|
2673
3483
|
}
|
|
2674
|
-
.
|
|
3484
|
+
._heading_1ad65_13._h3_1ad65_139 {
|
|
3485
|
+
padding: var(--xmlui-padding-H3);
|
|
3486
|
+
padding-left: var(--xmlui-paddingLeft-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)));
|
|
3487
|
+
padding-right: var(--xmlui-paddingRight-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)));
|
|
3488
|
+
padding-top: var(--xmlui-paddingTop-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)));
|
|
3489
|
+
padding-bottom: var(--xmlui-paddingBottom-H3, var(--xmlui-paddingVertical-H3, var(--xmlui-padding-H3)));
|
|
3490
|
+
border-left: var(--xmlui-borderLeft-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)));
|
|
3491
|
+
border-right: var(--xmlui-borderRight-H3, var(--xmlui-borderHorizontal-H3, var(--xmlui-border-H3)));
|
|
3492
|
+
border-top: var(--xmlui-borderTop-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)));
|
|
3493
|
+
border-bottom: var(--xmlui-borderBottom-H3, var(--xmlui-borderVertical-H3, var(--xmlui-border-H3)));
|
|
3494
|
+
border-left-style: var(--xmlui-borderLeftStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)));
|
|
3495
|
+
border-right-style: var(--xmlui-borderRightStyle-H3, var(--xmlui-borderHorizontalStyle-H3, var(--xmlui-borderStyle-H3)));
|
|
3496
|
+
border-top-style: var(--xmlui-borderTopStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)));
|
|
3497
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-H3, var(--xmlui-borderVerticalStyle-H3, var(--xmlui-borderStyle-H3)));
|
|
3498
|
+
border-left-width: var(--xmlui-borderLeftWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)));
|
|
3499
|
+
border-right-width: var(--xmlui-borderRightWidth-H3, var(--xmlui-borderHorizontalWidth-H3, var(--xmlui-borderWidth-H3)));
|
|
3500
|
+
border-top-width: var(--xmlui-borderTopWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)));
|
|
3501
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-H3, var(--xmlui-borderVerticalWidth-H3, var(--xmlui-borderWidth-H3)));
|
|
3502
|
+
border-left-color: var(--xmlui-borderLeftColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)));
|
|
3503
|
+
border-right-color: var(--xmlui-borderRightColor-H3, var(--xmlui-borderHorizontalColor-H3, var(--xmlui-borderColor-H3)));
|
|
3504
|
+
border-top-color: var(--xmlui-borderTopColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)));
|
|
3505
|
+
border-bottom-color: var(--xmlui-borderBottomColor-H3, var(--xmlui-borderVerticalColor-H3, var(--xmlui-borderColor-H3)));
|
|
3506
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-H3, var(--xmlui-borderRadius-H3));
|
|
3507
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-H3, var(--xmlui-borderRadius-H3));
|
|
3508
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-H3, var(--xmlui-borderRadius-H3));
|
|
3509
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-H3, var(--xmlui-borderRadius-H3));
|
|
2675
3510
|
color: var(--xmlui-textColor-H3);
|
|
2676
|
-
letter-spacing: var(--xmlui-letterSpacing-H3);
|
|
2677
3511
|
font-family: var(--xmlui-fontFamily-H3);
|
|
2678
|
-
font-weight: var(--xmlui-fontWeight-H3);
|
|
2679
3512
|
font-size: var(--xmlui-fontSize-H3);
|
|
3513
|
+
font-style: var(--xmlui-fontStyle-H3);
|
|
3514
|
+
font-weight: var(--xmlui-fontWeight-H3);
|
|
3515
|
+
font-stretch: var(--xmlui-fontStretch-H3);
|
|
3516
|
+
text-decoration-line: var(--xmlui-textDecorationLine-H3);
|
|
3517
|
+
text-decoration-color: var(--xmlui-textDecorationColor-H3);
|
|
3518
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-H3);
|
|
3519
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-H3);
|
|
3520
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-H3);
|
|
2680
3521
|
line-height: var(--xmlui-lineHeight-H3);
|
|
3522
|
+
background-color: var(--xmlui-backgroundColor-H3);
|
|
3523
|
+
text-transform: var(--xmlui-textTransform-H3);
|
|
3524
|
+
letter-spacing: var(--xmlui-letterSpacing-H3);
|
|
3525
|
+
word-spacing: var(--xmlui-wordSpacing-H3);
|
|
3526
|
+
text-shadow: var(--xmlui-textShadow-H3);
|
|
3527
|
+
text-indent: var(--xmlui-textIndent-H3);
|
|
3528
|
+
text-align: var(--xmlui-textAlign-H3);
|
|
3529
|
+
text-align-last: var(--xmlui-textAlignLast-H3);
|
|
3530
|
+
word-break: var(--xmlui-wordBreak-H3);
|
|
3531
|
+
word-wrap: var(--xmlui-wordWrap-H3);
|
|
3532
|
+
direction: var(--xmlui-direction-H3);
|
|
3533
|
+
writing-mode: var(--xmlui-writingMode-H3);
|
|
3534
|
+
line-break: var(--xmlui-lineBreak-H3);
|
|
3535
|
+
color: var(--xmlui-textColor-H3);
|
|
3536
|
+
letter-spacing: var(--xmlui-letterSpacing-H3);
|
|
3537
|
+
font-family: var(--xmlui-fontFamily-H3);
|
|
3538
|
+
font-weight: var(--xmlui-fontWeight-H3);
|
|
2681
3539
|
margin-top: var(--xmlui-marginTop-H3);
|
|
2682
3540
|
margin-bottom: var(--xmlui-marginBottom-H3);
|
|
2683
3541
|
text-decoration-line: var(--xmlui-textDecorationLine-H3);
|
|
@@ -2686,13 +3544,61 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2686
3544
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H3);
|
|
2687
3545
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H3);
|
|
2688
3546
|
}
|
|
2689
|
-
.
|
|
3547
|
+
._heading_1ad65_13._h4_1ad65_202 {
|
|
3548
|
+
padding: var(--xmlui-padding-H4);
|
|
3549
|
+
padding-left: var(--xmlui-paddingLeft-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)));
|
|
3550
|
+
padding-right: var(--xmlui-paddingRight-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)));
|
|
3551
|
+
padding-top: var(--xmlui-paddingTop-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)));
|
|
3552
|
+
padding-bottom: var(--xmlui-paddingBottom-H4, var(--xmlui-paddingVertical-H4, var(--xmlui-padding-H4)));
|
|
3553
|
+
border-left: var(--xmlui-borderLeft-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)));
|
|
3554
|
+
border-right: var(--xmlui-borderRight-H4, var(--xmlui-borderHorizontal-H4, var(--xmlui-border-H4)));
|
|
3555
|
+
border-top: var(--xmlui-borderTop-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)));
|
|
3556
|
+
border-bottom: var(--xmlui-borderBottom-H4, var(--xmlui-borderVertical-H4, var(--xmlui-border-H4)));
|
|
3557
|
+
border-left-style: var(--xmlui-borderLeftStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)));
|
|
3558
|
+
border-right-style: var(--xmlui-borderRightStyle-H4, var(--xmlui-borderHorizontalStyle-H4, var(--xmlui-borderStyle-H4)));
|
|
3559
|
+
border-top-style: var(--xmlui-borderTopStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)));
|
|
3560
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-H4, var(--xmlui-borderVerticalStyle-H4, var(--xmlui-borderStyle-H4)));
|
|
3561
|
+
border-left-width: var(--xmlui-borderLeftWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)));
|
|
3562
|
+
border-right-width: var(--xmlui-borderRightWidth-H4, var(--xmlui-borderHorizontalWidth-H4, var(--xmlui-borderWidth-H4)));
|
|
3563
|
+
border-top-width: var(--xmlui-borderTopWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)));
|
|
3564
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-H4, var(--xmlui-borderVerticalWidth-H4, var(--xmlui-borderWidth-H4)));
|
|
3565
|
+
border-left-color: var(--xmlui-borderLeftColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)));
|
|
3566
|
+
border-right-color: var(--xmlui-borderRightColor-H4, var(--xmlui-borderHorizontalColor-H4, var(--xmlui-borderColor-H4)));
|
|
3567
|
+
border-top-color: var(--xmlui-borderTopColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)));
|
|
3568
|
+
border-bottom-color: var(--xmlui-borderBottomColor-H4, var(--xmlui-borderVerticalColor-H4, var(--xmlui-borderColor-H4)));
|
|
3569
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-H4, var(--xmlui-borderRadius-H4));
|
|
3570
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-H4, var(--xmlui-borderRadius-H4));
|
|
3571
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-H4, var(--xmlui-borderRadius-H4));
|
|
3572
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-H4, var(--xmlui-borderRadius-H4));
|
|
2690
3573
|
color: var(--xmlui-textColor-H4);
|
|
2691
|
-
letter-spacing: var(--xmlui-letterSpacing-H4);
|
|
2692
3574
|
font-family: var(--xmlui-fontFamily-H4);
|
|
2693
|
-
font-weight: var(--xmlui-fontWeight-H4);
|
|
2694
3575
|
font-size: var(--xmlui-fontSize-H4);
|
|
3576
|
+
font-style: var(--xmlui-fontStyle-H4);
|
|
3577
|
+
font-weight: var(--xmlui-fontWeight-H4);
|
|
3578
|
+
font-stretch: var(--xmlui-fontStretch-H4);
|
|
3579
|
+
text-decoration-line: var(--xmlui-textDecorationLine-H4);
|
|
3580
|
+
text-decoration-color: var(--xmlui-textDecorationColor-H4);
|
|
3581
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-H4);
|
|
3582
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-H4);
|
|
3583
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-H4);
|
|
2695
3584
|
line-height: var(--xmlui-lineHeight-H4);
|
|
3585
|
+
background-color: var(--xmlui-backgroundColor-H4);
|
|
3586
|
+
text-transform: var(--xmlui-textTransform-H4);
|
|
3587
|
+
letter-spacing: var(--xmlui-letterSpacing-H4);
|
|
3588
|
+
word-spacing: var(--xmlui-wordSpacing-H4);
|
|
3589
|
+
text-shadow: var(--xmlui-textShadow-H4);
|
|
3590
|
+
text-indent: var(--xmlui-textIndent-H4);
|
|
3591
|
+
text-align: var(--xmlui-textAlign-H4);
|
|
3592
|
+
text-align-last: var(--xmlui-textAlignLast-H4);
|
|
3593
|
+
word-break: var(--xmlui-wordBreak-H4);
|
|
3594
|
+
word-wrap: var(--xmlui-wordWrap-H4);
|
|
3595
|
+
direction: var(--xmlui-direction-H4);
|
|
3596
|
+
writing-mode: var(--xmlui-writingMode-H4);
|
|
3597
|
+
line-break: var(--xmlui-lineBreak-H4);
|
|
3598
|
+
color: var(--xmlui-textColor-H4);
|
|
3599
|
+
letter-spacing: var(--xmlui-letterSpacing-H4);
|
|
3600
|
+
font-family: var(--xmlui-fontFamily-H4);
|
|
3601
|
+
font-weight: var(--xmlui-fontWeight-H4);
|
|
2696
3602
|
margin-top: var(--xmlui-marginTop-H4);
|
|
2697
3603
|
margin-bottom: var(--xmlui-marginBottom-H4);
|
|
2698
3604
|
text-decoration-line: var(--xmlui-textDecorationLine-H4);
|
|
@@ -2701,13 +3607,61 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2701
3607
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H4);
|
|
2702
3608
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H4);
|
|
2703
3609
|
}
|
|
2704
|
-
.
|
|
3610
|
+
._heading_1ad65_13._h5_1ad65_265 {
|
|
3611
|
+
padding: var(--xmlui-padding-H5);
|
|
3612
|
+
padding-left: var(--xmlui-paddingLeft-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)));
|
|
3613
|
+
padding-right: var(--xmlui-paddingRight-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)));
|
|
3614
|
+
padding-top: var(--xmlui-paddingTop-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)));
|
|
3615
|
+
padding-bottom: var(--xmlui-paddingBottom-H5, var(--xmlui-paddingVertical-H5, var(--xmlui-padding-H5)));
|
|
3616
|
+
border-left: var(--xmlui-borderLeft-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)));
|
|
3617
|
+
border-right: var(--xmlui-borderRight-H5, var(--xmlui-borderHorizontal-H5, var(--xmlui-border-H5)));
|
|
3618
|
+
border-top: var(--xmlui-borderTop-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)));
|
|
3619
|
+
border-bottom: var(--xmlui-borderBottom-H5, var(--xmlui-borderVertical-H5, var(--xmlui-border-H5)));
|
|
3620
|
+
border-left-style: var(--xmlui-borderLeftStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)));
|
|
3621
|
+
border-right-style: var(--xmlui-borderRightStyle-H5, var(--xmlui-borderHorizontalStyle-H5, var(--xmlui-borderStyle-H5)));
|
|
3622
|
+
border-top-style: var(--xmlui-borderTopStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)));
|
|
3623
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-H5, var(--xmlui-borderVerticalStyle-H5, var(--xmlui-borderStyle-H5)));
|
|
3624
|
+
border-left-width: var(--xmlui-borderLeftWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)));
|
|
3625
|
+
border-right-width: var(--xmlui-borderRightWidth-H5, var(--xmlui-borderHorizontalWidth-H5, var(--xmlui-borderWidth-H5)));
|
|
3626
|
+
border-top-width: var(--xmlui-borderTopWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)));
|
|
3627
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-H5, var(--xmlui-borderVerticalWidth-H5, var(--xmlui-borderWidth-H5)));
|
|
3628
|
+
border-left-color: var(--xmlui-borderLeftColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)));
|
|
3629
|
+
border-right-color: var(--xmlui-borderRightColor-H5, var(--xmlui-borderHorizontalColor-H5, var(--xmlui-borderColor-H5)));
|
|
3630
|
+
border-top-color: var(--xmlui-borderTopColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)));
|
|
3631
|
+
border-bottom-color: var(--xmlui-borderBottomColor-H5, var(--xmlui-borderVerticalColor-H5, var(--xmlui-borderColor-H5)));
|
|
3632
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-H5, var(--xmlui-borderRadius-H5));
|
|
3633
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-H5, var(--xmlui-borderRadius-H5));
|
|
3634
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-H5, var(--xmlui-borderRadius-H5));
|
|
3635
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-H5, var(--xmlui-borderRadius-H5));
|
|
2705
3636
|
color: var(--xmlui-textColor-H5);
|
|
2706
|
-
letter-spacing: var(--xmlui-letterSpacing-H5);
|
|
2707
3637
|
font-family: var(--xmlui-fontFamily-H5);
|
|
2708
|
-
font-weight: var(--xmlui-fontWeight-H5);
|
|
2709
3638
|
font-size: var(--xmlui-fontSize-H5);
|
|
3639
|
+
font-style: var(--xmlui-fontStyle-H5);
|
|
3640
|
+
font-weight: var(--xmlui-fontWeight-H5);
|
|
3641
|
+
font-stretch: var(--xmlui-fontStretch-H5);
|
|
3642
|
+
text-decoration-line: var(--xmlui-textDecorationLine-H5);
|
|
3643
|
+
text-decoration-color: var(--xmlui-textDecorationColor-H5);
|
|
3644
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-H5);
|
|
3645
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-H5);
|
|
3646
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-H5);
|
|
2710
3647
|
line-height: var(--xmlui-lineHeight-H5);
|
|
3648
|
+
background-color: var(--xmlui-backgroundColor-H5);
|
|
3649
|
+
text-transform: var(--xmlui-textTransform-H5);
|
|
3650
|
+
letter-spacing: var(--xmlui-letterSpacing-H5);
|
|
3651
|
+
word-spacing: var(--xmlui-wordSpacing-H5);
|
|
3652
|
+
text-shadow: var(--xmlui-textShadow-H5);
|
|
3653
|
+
text-indent: var(--xmlui-textIndent-H5);
|
|
3654
|
+
text-align: var(--xmlui-textAlign-H5);
|
|
3655
|
+
text-align-last: var(--xmlui-textAlignLast-H5);
|
|
3656
|
+
word-break: var(--xmlui-wordBreak-H5);
|
|
3657
|
+
word-wrap: var(--xmlui-wordWrap-H5);
|
|
3658
|
+
direction: var(--xmlui-direction-H5);
|
|
3659
|
+
writing-mode: var(--xmlui-writingMode-H5);
|
|
3660
|
+
line-break: var(--xmlui-lineBreak-H5);
|
|
3661
|
+
color: var(--xmlui-textColor-H5);
|
|
3662
|
+
letter-spacing: var(--xmlui-letterSpacing-H5);
|
|
3663
|
+
font-family: var(--xmlui-fontFamily-H5);
|
|
3664
|
+
font-weight: var(--xmlui-fontWeight-H5);
|
|
2711
3665
|
margin-top: var(--xmlui-marginTop-H5);
|
|
2712
3666
|
margin-bottom: var(--xmlui-marginBottom-H5);
|
|
2713
3667
|
text-decoration-line: var(--xmlui-textDecorationLine-H5);
|
|
@@ -2716,13 +3670,61 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2716
3670
|
text-decoration-thickness: var(--xmlui-textDecorationThickness-H5);
|
|
2717
3671
|
text-underline-offset: var(--xmlui-textUnderlineOffset-H5);
|
|
2718
3672
|
}
|
|
2719
|
-
.
|
|
3673
|
+
._heading_1ad65_13._h6_1ad65_328 {
|
|
3674
|
+
padding: var(--xmlui-padding-H6);
|
|
3675
|
+
padding-left: var(--xmlui-paddingLeft-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)));
|
|
3676
|
+
padding-right: var(--xmlui-paddingRight-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)));
|
|
3677
|
+
padding-top: var(--xmlui-paddingTop-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)));
|
|
3678
|
+
padding-bottom: var(--xmlui-paddingBottom-H6, var(--xmlui-paddingVertical-H6, var(--xmlui-padding-H6)));
|
|
3679
|
+
border-left: var(--xmlui-borderLeft-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)));
|
|
3680
|
+
border-right: var(--xmlui-borderRight-H6, var(--xmlui-borderHorizontal-H6, var(--xmlui-border-H6)));
|
|
3681
|
+
border-top: var(--xmlui-borderTop-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)));
|
|
3682
|
+
border-bottom: var(--xmlui-borderBottom-H6, var(--xmlui-borderVertical-H6, var(--xmlui-border-H6)));
|
|
3683
|
+
border-left-style: var(--xmlui-borderLeftStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)));
|
|
3684
|
+
border-right-style: var(--xmlui-borderRightStyle-H6, var(--xmlui-borderHorizontalStyle-H6, var(--xmlui-borderStyle-H6)));
|
|
3685
|
+
border-top-style: var(--xmlui-borderTopStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)));
|
|
3686
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-H6, var(--xmlui-borderVerticalStyle-H6, var(--xmlui-borderStyle-H6)));
|
|
3687
|
+
border-left-width: var(--xmlui-borderLeftWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)));
|
|
3688
|
+
border-right-width: var(--xmlui-borderRightWidth-H6, var(--xmlui-borderHorizontalWidth-H6, var(--xmlui-borderWidth-H6)));
|
|
3689
|
+
border-top-width: var(--xmlui-borderTopWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)));
|
|
3690
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-H6, var(--xmlui-borderVerticalWidth-H6, var(--xmlui-borderWidth-H6)));
|
|
3691
|
+
border-left-color: var(--xmlui-borderLeftColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)));
|
|
3692
|
+
border-right-color: var(--xmlui-borderRightColor-H6, var(--xmlui-borderHorizontalColor-H6, var(--xmlui-borderColor-H6)));
|
|
3693
|
+
border-top-color: var(--xmlui-borderTopColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)));
|
|
3694
|
+
border-bottom-color: var(--xmlui-borderBottomColor-H6, var(--xmlui-borderVerticalColor-H6, var(--xmlui-borderColor-H6)));
|
|
3695
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-H6, var(--xmlui-borderRadius-H6));
|
|
3696
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-H6, var(--xmlui-borderRadius-H6));
|
|
3697
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-H6, var(--xmlui-borderRadius-H6));
|
|
3698
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-H6, var(--xmlui-borderRadius-H6));
|
|
2720
3699
|
color: var(--xmlui-textColor-H6);
|
|
2721
|
-
letter-spacing: var(--xmlui-letterSpacing-H6);
|
|
2722
3700
|
font-family: var(--xmlui-fontFamily-H6);
|
|
2723
|
-
font-weight: var(--xmlui-fontWeight-H6);
|
|
2724
3701
|
font-size: var(--xmlui-fontSize-H6);
|
|
3702
|
+
font-style: var(--xmlui-fontStyle-H6);
|
|
3703
|
+
font-weight: var(--xmlui-fontWeight-H6);
|
|
3704
|
+
font-stretch: var(--xmlui-fontStretch-H6);
|
|
3705
|
+
text-decoration-line: var(--xmlui-textDecorationLine-H6);
|
|
3706
|
+
text-decoration-color: var(--xmlui-textDecorationColor-H6);
|
|
3707
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-H6);
|
|
3708
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-H6);
|
|
3709
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-H6);
|
|
2725
3710
|
line-height: var(--xmlui-lineHeight-H6);
|
|
3711
|
+
background-color: var(--xmlui-backgroundColor-H6);
|
|
3712
|
+
text-transform: var(--xmlui-textTransform-H6);
|
|
3713
|
+
letter-spacing: var(--xmlui-letterSpacing-H6);
|
|
3714
|
+
word-spacing: var(--xmlui-wordSpacing-H6);
|
|
3715
|
+
text-shadow: var(--xmlui-textShadow-H6);
|
|
3716
|
+
text-indent: var(--xmlui-textIndent-H6);
|
|
3717
|
+
text-align: var(--xmlui-textAlign-H6);
|
|
3718
|
+
text-align-last: var(--xmlui-textAlignLast-H6);
|
|
3719
|
+
word-break: var(--xmlui-wordBreak-H6);
|
|
3720
|
+
word-wrap: var(--xmlui-wordWrap-H6);
|
|
3721
|
+
direction: var(--xmlui-direction-H6);
|
|
3722
|
+
writing-mode: var(--xmlui-writingMode-H6);
|
|
3723
|
+
line-break: var(--xmlui-lineBreak-H6);
|
|
3724
|
+
color: var(--xmlui-textColor-H6);
|
|
3725
|
+
letter-spacing: var(--xmlui-letterSpacing-H6);
|
|
3726
|
+
font-family: var(--xmlui-fontFamily-H6);
|
|
3727
|
+
font-weight: var(--xmlui-fontWeight-H6);
|
|
2726
3728
|
margin-top: var(--xmlui-marginTop-H6);
|
|
2727
3729
|
margin-bottom: var(--xmlui-marginBottom-H6);
|
|
2728
3730
|
text-decoration-line: var(--xmlui-textDecorationLine-H6);
|
|
@@ -2736,17 +3738,17 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
2736
3738
|
This is a Chromium based solution that is supported by most modern browsers.
|
|
2737
3739
|
See this source for details: https://css-tricks.com/line-clampin/
|
|
2738
3740
|
*/
|
|
2739
|
-
.
|
|
3741
|
+
._truncateOverflow_1ad65_396 {
|
|
2740
3742
|
overflow: hidden;
|
|
2741
3743
|
text-overflow: ellipsis;
|
|
2742
3744
|
white-space: nowrap;
|
|
2743
3745
|
}
|
|
2744
3746
|
|
|
2745
|
-
.
|
|
3747
|
+
._preserveLinebreaks_1ad65_402 {
|
|
2746
3748
|
white-space: pre-wrap;
|
|
2747
3749
|
}
|
|
2748
3750
|
|
|
2749
|
-
.
|
|
3751
|
+
._noEllipsis_1ad65_406 {
|
|
2750
3752
|
text-overflow: clip;
|
|
2751
3753
|
}/*
|
|
2752
3754
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -3581,8 +4583,8 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3581
4583
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
3582
4584
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
3583
4585
|
*/
|
|
3584
|
-
.
|
|
3585
|
-
.
|
|
4586
|
+
._DropdownMenuContent_1ty8e_13,
|
|
4587
|
+
._DropdownMenuSubContent_1ty8e_14 {
|
|
3586
4588
|
background-color: var(--xmlui-backgroundColor-DropdownMenu);
|
|
3587
4589
|
border-radius: var(--xmlui-borderRadius-DropdownMenu);
|
|
3588
4590
|
min-width: var(--xmlui-minWidth-DropdownMenu);
|
|
@@ -3594,8 +4596,8 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3594
4596
|
border: var(--xmlui-borderWidth-DropdownMenu-content) var(--xmlui-borderStyle-DropdownMenu-content) var(--xmlui-borderColor-DropdownMenu-content);
|
|
3595
4597
|
}
|
|
3596
4598
|
|
|
3597
|
-
.
|
|
3598
|
-
.
|
|
4599
|
+
._DropdownMenuItem_1ty8e_26,
|
|
4600
|
+
._DropdownMenuSubTrigger_1ty8e_27 {
|
|
3599
4601
|
background-color: var(--xmlui-backgroundColor-MenuItem);
|
|
3600
4602
|
color: var(--xmlui-color-MenuItem);
|
|
3601
4603
|
font-family: var(--xmlui-fontFamily-MenuItem);
|
|
@@ -3612,28 +4614,39 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3612
4614
|
user-select: none;
|
|
3613
4615
|
outline: none;
|
|
3614
4616
|
}
|
|
3615
|
-
.
|
|
3616
|
-
.
|
|
3617
|
-
.
|
|
4617
|
+
._DropdownMenuItem_1ty8e_26:hover, ._DropdownMenuItem_1ty8e_26[data-highlighted],
|
|
4618
|
+
._DropdownMenuSubTrigger_1ty8e_27:hover,
|
|
4619
|
+
._DropdownMenuSubTrigger_1ty8e_27[data-highlighted] {
|
|
3618
4620
|
background-color: var(--xmlui-backgroundColor-MenuItem--hover);
|
|
3619
4621
|
color: var(--xmlui-color-MenuItem--hover);
|
|
3620
4622
|
}
|
|
3621
|
-
.
|
|
3622
|
-
.
|
|
4623
|
+
._DropdownMenuItem_1ty8e_26._active_1ty8e_50,
|
|
4624
|
+
._DropdownMenuSubTrigger_1ty8e_27._active_1ty8e_50 {
|
|
3623
4625
|
background-color: var(--xmlui-backgroundColor-MenuItem--active);
|
|
3624
4626
|
color: var(--xmlui-color-MenuItem--active);
|
|
3625
4627
|
}
|
|
3626
|
-
.
|
|
3627
|
-
.
|
|
4628
|
+
._DropdownMenuItem_1ty8e_26._active_1ty8e_50:hover,
|
|
4629
|
+
._DropdownMenuSubTrigger_1ty8e_27._active_1ty8e_50:hover {
|
|
3628
4630
|
background-color: var(--xmlui-backgroundColor-MenuItem--active--hover);
|
|
3629
4631
|
color: var(--xmlui-color-MenuItem--active--hover);
|
|
3630
4632
|
}
|
|
3631
|
-
.
|
|
3632
|
-
.
|
|
4633
|
+
._DropdownMenuItem_1ty8e_26._disabled_1ty8e_60,
|
|
4634
|
+
._DropdownMenuSubTrigger_1ty8e_27._disabled_1ty8e_60 {
|
|
4635
|
+
background-color: var(--xmlui-backgroundColor-MenuItem);
|
|
4636
|
+
color: var(--xmlui-color-MenuItem--disabled);
|
|
4637
|
+
cursor: not-allowed;
|
|
4638
|
+
}
|
|
4639
|
+
._DropdownMenuItem_1ty8e_26._disabled_1ty8e_60:hover,
|
|
4640
|
+
._DropdownMenuSubTrigger_1ty8e_27._disabled_1ty8e_60:hover {
|
|
4641
|
+
background-color: var(--xmlui-backgroundColor-MenuItem);
|
|
4642
|
+
color: var(--xmlui-color-MenuItem--disabled);
|
|
4643
|
+
}
|
|
4644
|
+
._DropdownMenuItem_1ty8e_26 ._wrapper_1ty8e_71,
|
|
4645
|
+
._DropdownMenuSubTrigger_1ty8e_27 ._wrapper_1ty8e_71 {
|
|
3633
4646
|
flex: 1;
|
|
3634
4647
|
}
|
|
3635
4648
|
|
|
3636
|
-
.
|
|
4649
|
+
._DropdownMenuSeparator_1ty8e_76 {
|
|
3637
4650
|
margin-top: var(--xmlui-marginTop-MenuSeparator);
|
|
3638
4651
|
margin-bottom: var(--xmlui-marginBottom-MenuSeparator);
|
|
3639
4652
|
width: var(--xmlui-width-MenuSeparator);
|
|
@@ -3778,7 +4791,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3778
4791
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
3779
4792
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
3780
4793
|
*/
|
|
3781
|
-
.
|
|
4794
|
+
._outerWrapper_12zu8_13 {
|
|
3782
4795
|
border-left: var(--xmlui-borderLeft-Footer, var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer)));
|
|
3783
4796
|
border-right: var(--xmlui-borderRight-Footer, var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer)));
|
|
3784
4797
|
border-top: var(--xmlui-borderTop-Footer, var(--xmlui-borderVertical-Footer, var(--xmlui-border-Footer)));
|
|
@@ -3803,7 +4816,7 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3803
4816
|
height: var(--xmlui-height-Footer);
|
|
3804
4817
|
}
|
|
3805
4818
|
|
|
3806
|
-
.
|
|
4819
|
+
._wrapper_12zu8_38 {
|
|
3807
4820
|
width: 100%;
|
|
3808
4821
|
display: flex;
|
|
3809
4822
|
min-height: 0;
|
|
@@ -3814,13 +4827,36 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
3814
4827
|
padding-right: var(--xmlui-paddingRight-Footer, var(--xmlui-paddingHorizontal-Footer, var(--xmlui-padding-Footer)));
|
|
3815
4828
|
padding-top: var(--xmlui-paddingTop-Footer, var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer)));
|
|
3816
4829
|
padding-bottom: var(--xmlui-paddingBottom-Footer, var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer)));
|
|
4830
|
+
color: var(--xmlui-textColor-Footer);
|
|
4831
|
+
font-family: var(--xmlui-fontFamily-Footer);
|
|
3817
4832
|
font-size: var(--xmlui-fontSize-Footer);
|
|
4833
|
+
font-style: var(--xmlui-fontStyle-Footer);
|
|
4834
|
+
font-weight: var(--xmlui-fontWeight-Footer);
|
|
4835
|
+
font-stretch: var(--xmlui-fontStretch-Footer);
|
|
4836
|
+
text-decoration-line: var(--xmlui-textDecorationLine-Footer);
|
|
4837
|
+
text-decoration-color: var(--xmlui-textDecorationColor-Footer);
|
|
4838
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-Footer);
|
|
4839
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-Footer);
|
|
4840
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-Footer);
|
|
4841
|
+
line-height: var(--xmlui-lineHeight-Footer);
|
|
4842
|
+
background-color: var(--xmlui-backgroundColor-Footer);
|
|
4843
|
+
text-transform: var(--xmlui-textTransform-Footer);
|
|
4844
|
+
letter-spacing: var(--xmlui-letterSpacing-Footer);
|
|
4845
|
+
word-spacing: var(--xmlui-wordSpacing-Footer);
|
|
4846
|
+
text-shadow: var(--xmlui-textShadow-Footer);
|
|
4847
|
+
text-indent: var(--xmlui-textIndent-Footer);
|
|
4848
|
+
text-align: var(--xmlui-textAlign-Footer);
|
|
4849
|
+
text-align-last: var(--xmlui-textAlignLast-Footer);
|
|
4850
|
+
word-break: var(--xmlui-wordBreak-Footer);
|
|
4851
|
+
word-wrap: var(--xmlui-wordWrap-Footer);
|
|
4852
|
+
direction: var(--xmlui-direction-Footer);
|
|
4853
|
+
writing-mode: var(--xmlui-writingMode-Footer);
|
|
4854
|
+
line-break: var(--xmlui-lineBreak-Footer);
|
|
3818
4855
|
align-items: var(--xmlui-verticalAlign-Footer);
|
|
3819
4856
|
max-width: var(--xmlui-maxWidth-content-Footer);
|
|
3820
|
-
color: var(--xmlui-textColor-Footer);
|
|
3821
4857
|
margin: 0 auto;
|
|
3822
4858
|
}
|
|
3823
|
-
.
|
|
4859
|
+
._wrapper_12zu8_38._full_12zu8_78 {
|
|
3824
4860
|
max-width: 100%;
|
|
3825
4861
|
}/*
|
|
3826
4862
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
@@ -5626,18 +6662,46 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
|
|
|
5626
6662
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
5627
6663
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
5628
6664
|
*/
|
|
5629
|
-
.
|
|
6665
|
+
._markdownContent_mgetx_13 {
|
|
5630
6666
|
max-width: var(--xmlui-maxWidth-Markdown);
|
|
6667
|
+
padding-top: var(--xmlui-paddingTop-Markdown);
|
|
6668
|
+
padding-bottom: var(--xmlui-paddingBottom-Markdown);
|
|
6669
|
+
background-color: var(--xmlui-backgroundColor-Markdown);
|
|
5631
6670
|
}
|
|
5632
|
-
.
|
|
6671
|
+
._markdownContent_mgetx_13 ._blockquote_mgetx_19 {
|
|
5633
6672
|
position: relative;
|
|
5634
6673
|
margin-top: var(--xmlui-marginTop-Blockquote);
|
|
5635
6674
|
margin-bottom: var(--xmlui-marginBottom-Blockquote);
|
|
5636
6675
|
background-color: var(--xmlui-backgroundColor-Blockquote);
|
|
6676
|
+
padding-left: var(--xmlui-paddingLeft-Blockquote);
|
|
6677
|
+
border-left: var(--xmlui-borderLeft-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)));
|
|
6678
|
+
border-right: var(--xmlui-borderRight-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)));
|
|
6679
|
+
border-top: var(--xmlui-borderTop-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)));
|
|
6680
|
+
border-bottom: var(--xmlui-borderBottom-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)));
|
|
6681
|
+
border-left-style: var(--xmlui-borderLeftStyle-Blockquote, var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)));
|
|
6682
|
+
border-right-style: var(--xmlui-borderRightStyle-Blockquote, var(--xmlui-borderHorizontalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)));
|
|
6683
|
+
border-top-style: var(--xmlui-borderTopStyle-Blockquote, var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)));
|
|
6684
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-Blockquote, var(--xmlui-borderVerticalStyle-Blockquote, var(--xmlui-borderStyle-Blockquote)));
|
|
6685
|
+
border-left-width: var(--xmlui-borderLeftWidth-Blockquote, var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)));
|
|
6686
|
+
border-right-width: var(--xmlui-borderRightWidth-Blockquote, var(--xmlui-borderHorizontalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)));
|
|
6687
|
+
border-top-width: var(--xmlui-borderTopWidth-Blockquote, var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)));
|
|
6688
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-Blockquote, var(--xmlui-borderVerticalWidth-Blockquote, var(--xmlui-borderWidth-Blockquote)));
|
|
6689
|
+
border-left-color: var(--xmlui-borderLeftColor-Blockquote, var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote)));
|
|
6690
|
+
border-right-color: var(--xmlui-borderRightColor-Blockquote, var(--xmlui-borderHorizontalColor-Blockquote, var(--xmlui-borderColor-Blockquote)));
|
|
6691
|
+
border-top-color: var(--xmlui-borderTopColor-Blockquote, var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote)));
|
|
6692
|
+
border-bottom-color: var(--xmlui-borderBottomColor-Blockquote, var(--xmlui-borderVerticalColor-Blockquote, var(--xmlui-borderColor-Blockquote)));
|
|
5637
6693
|
border-radius: var(--xmlui-borderRadius-Blockquote);
|
|
6694
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-Blockquote, var(--xmlui-borderRadius-Blockquote));
|
|
6695
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-Blockquote, var(--xmlui-borderRadius-Blockquote));
|
|
6696
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-Blockquote, var(--xmlui-borderRadius-Blockquote));
|
|
6697
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-Blockquote, var(--xmlui-borderRadius-Blockquote));
|
|
6698
|
+
padding: var(--xmlui-padding-Blockquote);
|
|
5638
6699
|
padding-left: var(--xmlui-paddingLeft-Blockquote);
|
|
6700
|
+
padding-right: var(--xmlui-paddingRight-Blockquote, var(--xmlui-paddingHorizontal-Blockquote, var(--xmlui-padding-Blockquote)));
|
|
6701
|
+
padding-top: var(--xmlui-paddingTop-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)));
|
|
6702
|
+
padding-bottom: var(--xmlui-paddingBottom-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)));
|
|
5639
6703
|
}
|
|
5640
|
-
.
|
|
6704
|
+
._markdownContent_mgetx_13 ._blockquote_mgetx_19::before {
|
|
5641
6705
|
background-color: var(--xmlui-accentColor-Blockquote);
|
|
5642
6706
|
position: absolute;
|
|
5643
6707
|
top: 0;
|
|
@@ -5647,50 +6711,50 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
|
|
|
5647
6711
|
height: 100%;
|
|
5648
6712
|
width: var(--xmlui-accentWidth-Blockquote);
|
|
5649
6713
|
}
|
|
5650
|
-
.
|
|
6714
|
+
._markdownContent_mgetx_13 ._blockquoteContainer_mgetx_62 {
|
|
5651
6715
|
padding: 0.5rem 0.5rem 0.1rem 0.5rem;
|
|
5652
6716
|
}
|
|
5653
|
-
.
|
|
6717
|
+
._markdownContent_mgetx_13 ._admonitionBlockquote_mgetx_65 {
|
|
5654
6718
|
margin-top: var(--xmlui-marginTop-Admonition);
|
|
5655
6719
|
margin-bottom: var(--xmlui-marginBottom-Admonition);
|
|
5656
6720
|
background-color: var(--xmlui-backgroundColor-Admonition);
|
|
5657
6721
|
border-radius: var(--xmlui-borderRadius-Admonition);
|
|
5658
6722
|
}
|
|
5659
|
-
.
|
|
6723
|
+
._markdownContent_mgetx_13 ._admonitionContainer_mgetx_71 {
|
|
5660
6724
|
padding: 0.5rem;
|
|
5661
6725
|
display: flex;
|
|
5662
6726
|
align-items: flex-start;
|
|
5663
6727
|
}
|
|
5664
|
-
.
|
|
6728
|
+
._markdownContent_mgetx_13 ._admonitionContent_mgetx_76 {
|
|
5665
6729
|
margin-left: var(--xmlui-marginLeft-Admonition-content);
|
|
5666
6730
|
}
|
|
5667
|
-
.
|
|
6731
|
+
._markdownContent_mgetx_13 ._admonitionIcon_mgetx_79 {
|
|
5668
6732
|
font-size: var(--xmlui-iconSize-Admonition);
|
|
5669
6733
|
line-height: 1;
|
|
5670
6734
|
}
|
|
5671
|
-
.
|
|
6735
|
+
._markdownContent_mgetx_13 ._admonitionContent_mgetx_76 {
|
|
5672
6736
|
flex: 1;
|
|
5673
6737
|
min-width: 0;
|
|
5674
6738
|
}
|
|
5675
|
-
.
|
|
6739
|
+
._markdownContent_mgetx_13 ._admonitionBlockquote_mgetx_65 ._admonitionContent_mgetx_76 [class*=text_][class*=markdown_] {
|
|
5676
6740
|
margin-top: 0;
|
|
5677
6741
|
margin-bottom: 0;
|
|
5678
6742
|
}
|
|
5679
|
-
.
|
|
5680
|
-
.
|
|
6743
|
+
._markdownContent_mgetx_13 li:has(> input[type=checkbox]),
|
|
6744
|
+
._markdownContent_mgetx_13 li:has(> input[type=checkbox]) {
|
|
5681
6745
|
display: flex;
|
|
5682
6746
|
align-items: flex-start;
|
|
5683
6747
|
}
|
|
5684
|
-
.
|
|
5685
|
-
.
|
|
6748
|
+
._markdownContent_mgetx_13 li:has(> input[type=checkbox]) > input[type=checkbox],
|
|
6749
|
+
._markdownContent_mgetx_13 li:has(> input[type=checkbox]) > input[type=checkbox] {
|
|
5686
6750
|
margin-right: 8px;
|
|
5687
6751
|
margin-top: 4px;
|
|
5688
6752
|
flex-shrink: 0;
|
|
5689
6753
|
}
|
|
5690
|
-
.
|
|
6754
|
+
._markdownContent_mgetx_13 > *:first-child {
|
|
5691
6755
|
margin-top: 0;
|
|
5692
6756
|
}
|
|
5693
|
-
.
|
|
6757
|
+
._markdownContent_mgetx_13 > *:last-child {
|
|
5694
6758
|
margin-bottom: 0;
|
|
5695
6759
|
}
|
|
5696
6760
|
|
|
@@ -5739,7 +6803,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
|
5739
6803
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
5740
6804
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
5741
6805
|
*/
|
|
5742
|
-
.
|
|
6806
|
+
._htmlTable_11909_13 {
|
|
5743
6807
|
background-color: var(--xmlui-backgroundColor-HtmlTable);
|
|
5744
6808
|
color: var(--xmlui-textColor-HtmlTable);
|
|
5745
6809
|
font-family: var(--xmlui-fontFamily-HtmlTable);
|
|
@@ -5748,6 +6812,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
|
5748
6812
|
text-transform: var(--xmlui-textTransform-HtmlTable);
|
|
5749
6813
|
margin-top: var(--xmlui-marginTop-HtmlTable);
|
|
5750
6814
|
margin-bottom: var(--xmlui-marginBottom-HtmlTable);
|
|
6815
|
+
width: var(--xmlui-width-HtmlTable);
|
|
5751
6816
|
border-left: var(--xmlui-borderLeft-HtmlTable, var(--xmlui-borderHorizontal-HtmlTable, var(--xmlui-border-HtmlTable)));
|
|
5752
6817
|
border-right: var(--xmlui-borderRight-HtmlTable, var(--xmlui-borderHorizontal-HtmlTable, var(--xmlui-border-HtmlTable)));
|
|
5753
6818
|
border-top: var(--xmlui-borderTop-HtmlTable, var(--xmlui-borderVertical-HtmlTable, var(--xmlui-border-HtmlTable)));
|
|
@@ -5775,7 +6840,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
|
5775
6840
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTable, var(--xmlui-paddingVertical-HtmlTable, var(--xmlui-padding-HtmlTable)));
|
|
5776
6841
|
}
|
|
5777
6842
|
|
|
5778
|
-
.
|
|
6843
|
+
._htmlThead_11909_50 {
|
|
5779
6844
|
background-color: var(--xmlui-backgroundColor-HtmlThead);
|
|
5780
6845
|
color: var(--xmlui-textColor-HtmlThead);
|
|
5781
6846
|
font-weight: var(--xmlui-fontWeight-HtmlThead);
|
|
@@ -5808,7 +6873,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
|
5808
6873
|
padding-bottom: var(--xmlui-paddingBottom-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)));
|
|
5809
6874
|
}
|
|
5810
6875
|
|
|
5811
|
-
.
|
|
6876
|
+
._htmlTbody_11909_83 {
|
|
5812
6877
|
background-color: var(--xmlui-backgroundColor-HtmlTbody);
|
|
5813
6878
|
color: var(--xmlui-textColor-HtmlTbody);
|
|
5814
6879
|
text-align: var(--xmlui-textAlign-HtmlTbody);
|
|
@@ -5816,12 +6881,12 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
|
5816
6881
|
text-transform: var(--xmlui-textTransform-HtmlTbody);
|
|
5817
6882
|
}
|
|
5818
6883
|
|
|
5819
|
-
.
|
|
6884
|
+
._htmlTfoot_11909_91 {
|
|
5820
6885
|
background-color: var(--xmlui-backgroundColor-HtmlTfoot);
|
|
5821
6886
|
color: var(--xmlui-textColor-HtmlTfoot);
|
|
5822
6887
|
}
|
|
5823
6888
|
|
|
5824
|
-
.
|
|
6889
|
+
._htmlTh_11909_50 {
|
|
5825
6890
|
background-color: var(--xmlui-backgroundColor-HtmlTh);
|
|
5826
6891
|
color: var(--xmlui-textColor-HtmlTh);
|
|
5827
6892
|
font-weight: var(--xmlui-fontWeight-HtmlTh);
|
|
@@ -5852,11 +6917,11 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
|
5852
6917
|
padding-top: var(--xmlui-paddingTop-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
|
|
5853
6918
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
|
|
5854
6919
|
}
|
|
5855
|
-
.
|
|
6920
|
+
._htmlTh_11909_50:hover {
|
|
5856
6921
|
background-color: var(--xmlui-backgroundColor-HtmlTh--hover);
|
|
5857
6922
|
}
|
|
5858
6923
|
|
|
5859
|
-
.
|
|
6924
|
+
._htmlTr_11909_131 {
|
|
5860
6925
|
background-color: var(--xmlui-backgroundColor-HtmlTr);
|
|
5861
6926
|
color: var(--xmlui-textColor-HtmlTr);
|
|
5862
6927
|
font-weight: var(--xmlui-fontWeight-HtmlTr);
|
|
@@ -5882,18 +6947,18 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
|
5882
6947
|
border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
|
|
5883
6948
|
border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
|
|
5884
6949
|
}
|
|
5885
|
-
.
|
|
6950
|
+
._htmlTr_11909_131:nth-child(even) {
|
|
5886
6951
|
background-color: var(--xmlui-backgroundColor-even-HtmlTr);
|
|
5887
6952
|
}
|
|
5888
|
-
.
|
|
6953
|
+
._htmlTr_11909_131:hover {
|
|
5889
6954
|
background-color: var(--xmlui-backgroundColor-HtmlTr--hover);
|
|
5890
6955
|
color: var(--xmlui-textColor-HtmlTr--hover);
|
|
5891
6956
|
}
|
|
5892
|
-
.
|
|
6957
|
+
._htmlTr_11909_131:hover:not(:has(:not(th))) {
|
|
5893
6958
|
background-color: initial;
|
|
5894
6959
|
}
|
|
5895
6960
|
|
|
5896
|
-
.
|
|
6961
|
+
._htmlTd_11909_168 {
|
|
5897
6962
|
background-color: var(--xmlui-backgroundColor-HtmlTd);
|
|
5898
6963
|
text-align: var(--xmlui-text-align-HtmlTd);
|
|
5899
6964
|
vertical-align: var(--xmlui-verticalAlign-HtmlTd);
|
|
@@ -5926,19 +6991,95 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
|
|
|
5926
6991
|
padding-bottom: var(--xmlui-paddingBottom-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)));
|
|
5927
6992
|
}
|
|
5928
6993
|
|
|
5929
|
-
.
|
|
6994
|
+
._htmlUl_11909_201 {
|
|
5930
6995
|
margin-top: var(--xmlui-marginTop-HtmlUl);
|
|
5931
6996
|
margin-bottom: var(--xmlui-marginBottom-HtmlUl);
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
6997
|
+
border-left: var(--xmlui-borderLeft-HtmlUl, var(--xmlui-borderHorizontal-HtmlUl, var(--xmlui-border-HtmlUl)));
|
|
6998
|
+
border-right: var(--xmlui-borderRight-HtmlUl, var(--xmlui-borderHorizontal-HtmlUl, var(--xmlui-border-HtmlUl)));
|
|
6999
|
+
border-top: var(--xmlui-borderTop-HtmlUl, var(--xmlui-borderVertical-HtmlUl, var(--xmlui-border-HtmlUl)));
|
|
7000
|
+
border-bottom: var(--xmlui-borderBottom-HtmlUl, var(--xmlui-borderVertical-HtmlUl, var(--xmlui-border-HtmlUl)));
|
|
7001
|
+
border-left-style: var(--xmlui-borderLeftStyle-HtmlUl, var(--xmlui-borderHorizontalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl)));
|
|
7002
|
+
border-right-style: var(--xmlui-borderRightStyle-HtmlUl, var(--xmlui-borderHorizontalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl)));
|
|
7003
|
+
border-top-style: var(--xmlui-borderTopStyle-HtmlUl, var(--xmlui-borderVerticalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl)));
|
|
7004
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-HtmlUl, var(--xmlui-borderVerticalStyle-HtmlUl, var(--xmlui-borderStyle-HtmlUl)));
|
|
7005
|
+
border-left-width: var(--xmlui-borderLeftWidth-HtmlUl, var(--xmlui-borderHorizontalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl)));
|
|
7006
|
+
border-right-width: var(--xmlui-borderRightWidth-HtmlUl, var(--xmlui-borderHorizontalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl)));
|
|
7007
|
+
border-top-width: var(--xmlui-borderTopWidth-HtmlUl, var(--xmlui-borderVerticalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl)));
|
|
7008
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-HtmlUl, var(--xmlui-borderVerticalWidth-HtmlUl, var(--xmlui-borderWidth-HtmlUl)));
|
|
7009
|
+
border-left-color: var(--xmlui-borderLeftColor-HtmlUl, var(--xmlui-borderHorizontalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl)));
|
|
7010
|
+
border-right-color: var(--xmlui-borderRightColor-HtmlUl, var(--xmlui-borderHorizontalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl)));
|
|
7011
|
+
border-top-color: var(--xmlui-borderTopColor-HtmlUl, var(--xmlui-borderVerticalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl)));
|
|
7012
|
+
border-bottom-color: var(--xmlui-borderBottomColor-HtmlUl, var(--xmlui-borderVerticalColor-HtmlUl, var(--xmlui-borderColor-HtmlUl)));
|
|
7013
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-HtmlUl, var(--xmlui-borderRadius-HtmlUl));
|
|
7014
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-HtmlUl, var(--xmlui-borderRadius-HtmlUl));
|
|
7015
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlUl, var(--xmlui-borderRadius-HtmlUl));
|
|
7016
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlUl, var(--xmlui-borderRadius-HtmlUl));
|
|
7017
|
+
padding: var(--xmlui-padding-HtmlUl);
|
|
7018
|
+
padding-left: var(--xmlui-paddingLeft-HtmlUl, var(--xmlui-paddingHorizontal-HtmlUl, var(--xmlui-padding-HtmlUl)));
|
|
7019
|
+
padding-right: var(--xmlui-paddingRight-HtmlUl, var(--xmlui-paddingHorizontal-HtmlUl, var(--xmlui-padding-HtmlUl)));
|
|
7020
|
+
padding-top: var(--xmlui-paddingTop-HtmlUl, var(--xmlui-paddingVertical-HtmlUl, var(--xmlui-padding-HtmlUl)));
|
|
7021
|
+
padding-bottom: var(--xmlui-paddingBottom-HtmlUl, var(--xmlui-paddingVertical-HtmlUl, var(--xmlui-padding-HtmlUl)));
|
|
7022
|
+
}
|
|
7023
|
+
|
|
7024
|
+
._htmlOl_11909_231 {
|
|
5935
7025
|
margin-top: var(--xmlui-marginTop-HtmlOl);
|
|
5936
7026
|
margin-bottom: var(--xmlui-marginBottom-HtmlOl);
|
|
5937
|
-
|
|
5938
|
-
|
|
5939
|
-
|
|
7027
|
+
border-left: var(--xmlui-borderLeft-HtmlOl, var(--xmlui-borderHorizontal-HtmlOl, var(--xmlui-border-HtmlOl)));
|
|
7028
|
+
border-right: var(--xmlui-borderRight-HtmlOl, var(--xmlui-borderHorizontal-HtmlOl, var(--xmlui-border-HtmlOl)));
|
|
7029
|
+
border-top: var(--xmlui-borderTop-HtmlOl, var(--xmlui-borderVertical-HtmlOl, var(--xmlui-border-HtmlOl)));
|
|
7030
|
+
border-bottom: var(--xmlui-borderBottom-HtmlOl, var(--xmlui-borderVertical-HtmlOl, var(--xmlui-border-HtmlOl)));
|
|
7031
|
+
border-left-style: var(--xmlui-borderLeftStyle-HtmlOl, var(--xmlui-borderHorizontalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl)));
|
|
7032
|
+
border-right-style: var(--xmlui-borderRightStyle-HtmlOl, var(--xmlui-borderHorizontalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl)));
|
|
7033
|
+
border-top-style: var(--xmlui-borderTopStyle-HtmlOl, var(--xmlui-borderVerticalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl)));
|
|
7034
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-HtmlOl, var(--xmlui-borderVerticalStyle-HtmlOl, var(--xmlui-borderStyle-HtmlOl)));
|
|
7035
|
+
border-left-width: var(--xmlui-borderLeftWidth-HtmlOl, var(--xmlui-borderHorizontalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl)));
|
|
7036
|
+
border-right-width: var(--xmlui-borderRightWidth-HtmlOl, var(--xmlui-borderHorizontalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl)));
|
|
7037
|
+
border-top-width: var(--xmlui-borderTopWidth-HtmlOl, var(--xmlui-borderVerticalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl)));
|
|
7038
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-HtmlOl, var(--xmlui-borderVerticalWidth-HtmlOl, var(--xmlui-borderWidth-HtmlOl)));
|
|
7039
|
+
border-left-color: var(--xmlui-borderLeftColor-HtmlOl, var(--xmlui-borderHorizontalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl)));
|
|
7040
|
+
border-right-color: var(--xmlui-borderRightColor-HtmlOl, var(--xmlui-borderHorizontalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl)));
|
|
7041
|
+
border-top-color: var(--xmlui-borderTopColor-HtmlOl, var(--xmlui-borderVerticalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl)));
|
|
7042
|
+
border-bottom-color: var(--xmlui-borderBottomColor-HtmlOl, var(--xmlui-borderVerticalColor-HtmlOl, var(--xmlui-borderColor-HtmlOl)));
|
|
7043
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-HtmlOl, var(--xmlui-borderRadius-HtmlOl));
|
|
7044
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-HtmlOl, var(--xmlui-borderRadius-HtmlOl));
|
|
7045
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlOl, var(--xmlui-borderRadius-HtmlOl));
|
|
7046
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlOl, var(--xmlui-borderRadius-HtmlOl));
|
|
7047
|
+
padding: var(--xmlui-padding-HtmlOl);
|
|
7048
|
+
padding-left: var(--xmlui-paddingLeft-HtmlOl, var(--xmlui-paddingHorizontal-HtmlOl, var(--xmlui-padding-HtmlOl)));
|
|
7049
|
+
padding-right: var(--xmlui-paddingRight-HtmlOl, var(--xmlui-paddingHorizontal-HtmlOl, var(--xmlui-padding-HtmlOl)));
|
|
7050
|
+
padding-top: var(--xmlui-paddingTop-HtmlOl, var(--xmlui-paddingVertical-HtmlOl, var(--xmlui-padding-HtmlOl)));
|
|
7051
|
+
padding-bottom: var(--xmlui-paddingBottom-HtmlOl, var(--xmlui-paddingVertical-HtmlOl, var(--xmlui-padding-HtmlOl)));
|
|
7052
|
+
}
|
|
7053
|
+
|
|
7054
|
+
._htmlLi_11909_261 {
|
|
5940
7055
|
margin-top: var(--xmlui-marginTop-HtmlLi);
|
|
5941
7056
|
margin-bottom: var(--xmlui-marginBottom-HtmlLi);
|
|
7057
|
+
list-style-type: var(--xmlui-listStyleType-HtmlLi);
|
|
7058
|
+
border-left: var(--xmlui-borderLeft-HtmlLi, var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi)));
|
|
7059
|
+
border-right: var(--xmlui-borderRight-HtmlLi, var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi)));
|
|
7060
|
+
border-top: var(--xmlui-borderTop-HtmlLi, var(--xmlui-borderVertical-HtmlLi, var(--xmlui-border-HtmlLi)));
|
|
7061
|
+
border-bottom: var(--xmlui-borderBottom-HtmlLi, var(--xmlui-borderVertical-HtmlLi, var(--xmlui-border-HtmlLi)));
|
|
7062
|
+
border-left-style: var(--xmlui-borderLeftStyle-HtmlLi, var(--xmlui-borderHorizontalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi)));
|
|
7063
|
+
border-right-style: var(--xmlui-borderRightStyle-HtmlLi, var(--xmlui-borderHorizontalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi)));
|
|
7064
|
+
border-top-style: var(--xmlui-borderTopStyle-HtmlLi, var(--xmlui-borderVerticalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi)));
|
|
7065
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-HtmlLi, var(--xmlui-borderVerticalStyle-HtmlLi, var(--xmlui-borderStyle-HtmlLi)));
|
|
7066
|
+
border-left-width: var(--xmlui-borderLeftWidth-HtmlLi, var(--xmlui-borderHorizontalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi)));
|
|
7067
|
+
border-right-width: var(--xmlui-borderRightWidth-HtmlLi, var(--xmlui-borderHorizontalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi)));
|
|
7068
|
+
border-top-width: var(--xmlui-borderTopWidth-HtmlLi, var(--xmlui-borderVerticalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi)));
|
|
7069
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-HtmlLi, var(--xmlui-borderVerticalWidth-HtmlLi, var(--xmlui-borderWidth-HtmlLi)));
|
|
7070
|
+
border-left-color: var(--xmlui-borderLeftColor-HtmlLi, var(--xmlui-borderHorizontalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi)));
|
|
7071
|
+
border-right-color: var(--xmlui-borderRightColor-HtmlLi, var(--xmlui-borderHorizontalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi)));
|
|
7072
|
+
border-top-color: var(--xmlui-borderTopColor-HtmlLi, var(--xmlui-borderVerticalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi)));
|
|
7073
|
+
border-bottom-color: var(--xmlui-borderBottomColor-HtmlLi, var(--xmlui-borderVerticalColor-HtmlLi, var(--xmlui-borderColor-HtmlLi)));
|
|
7074
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-HtmlLi, var(--xmlui-borderRadius-HtmlLi));
|
|
7075
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-HtmlLi, var(--xmlui-borderRadius-HtmlLi));
|
|
7076
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlLi, var(--xmlui-borderRadius-HtmlLi));
|
|
7077
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlLi, var(--xmlui-borderRadius-HtmlLi));
|
|
7078
|
+
padding: var(--xmlui-padding-HtmlLi);
|
|
7079
|
+
padding-left: var(--xmlui-paddingLeft-HtmlLi, var(--xmlui-paddingHorizontal-HtmlLi, var(--xmlui-padding-HtmlLi)));
|
|
7080
|
+
padding-right: var(--xmlui-paddingRight-HtmlLi, var(--xmlui-paddingHorizontal-HtmlLi, var(--xmlui-padding-HtmlLi)));
|
|
7081
|
+
padding-top: var(--xmlui-paddingTop-HtmlLi, var(--xmlui-paddingVertical-HtmlLi, var(--xmlui-padding-HtmlLi)));
|
|
7082
|
+
padding-bottom: var(--xmlui-paddingBottom-HtmlLi, var(--xmlui-paddingVertical-HtmlLi, var(--xmlui-padding-HtmlLi)));
|
|
5942
7083
|
}
|
|
5943
7084
|
|
|
5944
7085
|
/*
|
|
@@ -5949,24 +7090,84 @@ li .htmlOl {
|
|
|
5949
7090
|
margin-bottom: 0;
|
|
5950
7091
|
}
|
|
5951
7092
|
*/
|
|
5952
|
-
.
|
|
7093
|
+
._htmlH1_11909_300,
|
|
7094
|
+
._htmlH2_11909_301,
|
|
7095
|
+
._htmlH3_11909_302,
|
|
7096
|
+
._htmlH4_11909_303,
|
|
7097
|
+
._htmlH5_11909_304,
|
|
7098
|
+
._htmlH6_11909_305 {
|
|
5953
7099
|
margin-top: var(--xmlui-marginTop-HtmlHeading);
|
|
5954
7100
|
margin-bottom: var(--xmlui-marginBottom-HtmlHeading);
|
|
5955
7101
|
}
|
|
5956
7102
|
|
|
5957
|
-
.
|
|
7103
|
+
._htmlVideo_11909_310 {
|
|
5958
7104
|
margin-top: var(--xmlui-marginTop-HtmlVideo);
|
|
5959
7105
|
margin-bottom: var(--xmlui-marginBottom-HtmlVideo);
|
|
5960
7106
|
}
|
|
5961
7107
|
|
|
5962
|
-
.
|
|
7108
|
+
._htmlDetails_11909_315 {
|
|
5963
7109
|
margin-top: var(--xmlui-marginTop-HtmlDetails);
|
|
5964
7110
|
margin-bottom: var(--xmlui-marginBottom-HtmlDetails);
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
7111
|
+
border-left: var(--xmlui-borderLeft-HtmlDetails, var(--xmlui-borderHorizontal-HtmlDetails, var(--xmlui-border-HtmlDetails)));
|
|
7112
|
+
border-right: var(--xmlui-borderRight-HtmlDetails, var(--xmlui-borderHorizontal-HtmlDetails, var(--xmlui-border-HtmlDetails)));
|
|
7113
|
+
border-top: var(--xmlui-borderTop-HtmlDetails, var(--xmlui-borderVertical-HtmlDetails, var(--xmlui-border-HtmlDetails)));
|
|
7114
|
+
border-bottom: var(--xmlui-borderBottom-HtmlDetails, var(--xmlui-borderVertical-HtmlDetails, var(--xmlui-border-HtmlDetails)));
|
|
7115
|
+
border-left-style: var(--xmlui-borderLeftStyle-HtmlDetails, var(--xmlui-borderHorizontalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails)));
|
|
7116
|
+
border-right-style: var(--xmlui-borderRightStyle-HtmlDetails, var(--xmlui-borderHorizontalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails)));
|
|
7117
|
+
border-top-style: var(--xmlui-borderTopStyle-HtmlDetails, var(--xmlui-borderVerticalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails)));
|
|
7118
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-HtmlDetails, var(--xmlui-borderVerticalStyle-HtmlDetails, var(--xmlui-borderStyle-HtmlDetails)));
|
|
7119
|
+
border-left-width: var(--xmlui-borderLeftWidth-HtmlDetails, var(--xmlui-borderHorizontalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails)));
|
|
7120
|
+
border-right-width: var(--xmlui-borderRightWidth-HtmlDetails, var(--xmlui-borderHorizontalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails)));
|
|
7121
|
+
border-top-width: var(--xmlui-borderTopWidth-HtmlDetails, var(--xmlui-borderVerticalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails)));
|
|
7122
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-HtmlDetails, var(--xmlui-borderVerticalWidth-HtmlDetails, var(--xmlui-borderWidth-HtmlDetails)));
|
|
7123
|
+
border-left-color: var(--xmlui-borderLeftColor-HtmlDetails, var(--xmlui-borderHorizontalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails)));
|
|
7124
|
+
border-right-color: var(--xmlui-borderRightColor-HtmlDetails, var(--xmlui-borderHorizontalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails)));
|
|
7125
|
+
border-top-color: var(--xmlui-borderTopColor-HtmlDetails, var(--xmlui-borderVerticalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails)));
|
|
7126
|
+
border-bottom-color: var(--xmlui-borderBottomColor-HtmlDetails, var(--xmlui-borderVerticalColor-HtmlDetails, var(--xmlui-borderColor-HtmlDetails)));
|
|
7127
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-HtmlDetails, var(--xmlui-borderRadius-HtmlDetails));
|
|
7128
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-HtmlDetails, var(--xmlui-borderRadius-HtmlDetails));
|
|
7129
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlDetails, var(--xmlui-borderRadius-HtmlDetails));
|
|
7130
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlDetails, var(--xmlui-borderRadius-HtmlDetails));
|
|
7131
|
+
padding: var(--xmlui-padding-HtmlDetails);
|
|
7132
|
+
padding-left: var(--xmlui-paddingLeft-HtmlDetails, var(--xmlui-paddingHorizontal-HtmlDetails, var(--xmlui-padding-HtmlDetails)));
|
|
7133
|
+
padding-right: var(--xmlui-paddingRight-HtmlDetails, var(--xmlui-paddingHorizontal-HtmlDetails, var(--xmlui-padding-HtmlDetails)));
|
|
7134
|
+
padding-top: var(--xmlui-paddingTop-HtmlDetails, var(--xmlui-paddingVertical-HtmlDetails, var(--xmlui-padding-HtmlDetails)));
|
|
7135
|
+
padding-bottom: var(--xmlui-paddingBottom-HtmlDetails, var(--xmlui-paddingVertical-HtmlDetails, var(--xmlui-padding-HtmlDetails)));
|
|
7136
|
+
}
|
|
7137
|
+
|
|
7138
|
+
._htmlDetails_11909_315 {
|
|
5968
7139
|
margin-top: var(--xmlui-marginTop-HtmlDetails);
|
|
5969
7140
|
margin-bottom: var(--xmlui-marginBottom-HtmlDetails);
|
|
7141
|
+
}
|
|
7142
|
+
|
|
7143
|
+
._htmlImage_11909_350 {
|
|
7144
|
+
width: var(--xmlui-width-HtmlImage);
|
|
7145
|
+
height: var(--xmlui-height-HtmlImage);
|
|
7146
|
+
border-left: var(--xmlui-borderLeft-HtmlImage, var(--xmlui-borderHorizontal-HtmlImage, var(--xmlui-border-HtmlImage)));
|
|
7147
|
+
border-right: var(--xmlui-borderRight-HtmlImage, var(--xmlui-borderHorizontal-HtmlImage, var(--xmlui-border-HtmlImage)));
|
|
7148
|
+
border-top: var(--xmlui-borderTop-HtmlImage, var(--xmlui-borderVertical-HtmlImage, var(--xmlui-border-HtmlImage)));
|
|
7149
|
+
border-bottom: var(--xmlui-borderBottom-HtmlImage, var(--xmlui-borderVertical-HtmlImage, var(--xmlui-border-HtmlImage)));
|
|
7150
|
+
border-left-style: var(--xmlui-borderLeftStyle-HtmlImage, var(--xmlui-borderHorizontalStyle-HtmlImage, var(--xmlui-borderStyle-HtmlImage)));
|
|
7151
|
+
border-right-style: var(--xmlui-borderRightStyle-HtmlImage, var(--xmlui-borderHorizontalStyle-HtmlImage, var(--xmlui-borderStyle-HtmlImage)));
|
|
7152
|
+
border-top-style: var(--xmlui-borderTopStyle-HtmlImage, var(--xmlui-borderVerticalStyle-HtmlImage, var(--xmlui-borderStyle-HtmlImage)));
|
|
7153
|
+
border-bottom-style: var(--xmlui-borderBottomStyle-HtmlImage, var(--xmlui-borderVerticalStyle-HtmlImage, var(--xmlui-borderStyle-HtmlImage)));
|
|
7154
|
+
border-left-width: var(--xmlui-borderLeftWidth-HtmlImage, var(--xmlui-borderHorizontalWidth-HtmlImage, var(--xmlui-borderWidth-HtmlImage)));
|
|
7155
|
+
border-right-width: var(--xmlui-borderRightWidth-HtmlImage, var(--xmlui-borderHorizontalWidth-HtmlImage, var(--xmlui-borderWidth-HtmlImage)));
|
|
7156
|
+
border-top-width: var(--xmlui-borderTopWidth-HtmlImage, var(--xmlui-borderVerticalWidth-HtmlImage, var(--xmlui-borderWidth-HtmlImage)));
|
|
7157
|
+
border-bottom-width: var(--xmlui-borderBottomWidth-HtmlImage, var(--xmlui-borderVerticalWidth-HtmlImage, var(--xmlui-borderWidth-HtmlImage)));
|
|
7158
|
+
border-left-color: var(--xmlui-borderLeftColor-HtmlImage, var(--xmlui-borderHorizontalColor-HtmlImage, var(--xmlui-borderColor-HtmlImage)));
|
|
7159
|
+
border-right-color: var(--xmlui-borderRightColor-HtmlImage, var(--xmlui-borderHorizontalColor-HtmlImage, var(--xmlui-borderColor-HtmlImage)));
|
|
7160
|
+
border-top-color: var(--xmlui-borderTopColor-HtmlImage, var(--xmlui-borderVerticalColor-HtmlImage, var(--xmlui-borderColor-HtmlImage)));
|
|
7161
|
+
border-bottom-color: var(--xmlui-borderBottomColor-HtmlImage, var(--xmlui-borderVerticalColor-HtmlImage, var(--xmlui-borderColor-HtmlImage)));
|
|
7162
|
+
border-start-start-radius: var(--xmlui-borderStartStartRadius-HtmlImage, var(--xmlui-borderRadius-HtmlImage));
|
|
7163
|
+
border-start-end-radius: var(--xmlui-borderStartEndRadius-HtmlImage, var(--xmlui-borderRadius-HtmlImage));
|
|
7164
|
+
border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlImage, var(--xmlui-borderRadius-HtmlImage));
|
|
7165
|
+
border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlImage, var(--xmlui-borderRadius-HtmlImage));
|
|
7166
|
+
padding: var(--xmlui-padding-HtmlImage);
|
|
7167
|
+
padding-left: var(--xmlui-paddingLeft-HtmlImage, var(--xmlui-paddingHorizontal-HtmlImage, var(--xmlui-padding-HtmlImage)));
|
|
7168
|
+
padding-right: var(--xmlui-paddingRight-HtmlImage, var(--xmlui-paddingHorizontal-HtmlImage, var(--xmlui-padding-HtmlImage)));
|
|
7169
|
+
padding-top: var(--xmlui-paddingTop-HtmlImage, var(--xmlui-paddingVertical-HtmlImage, var(--xmlui-padding-HtmlImage)));
|
|
7170
|
+
padding-bottom: var(--xmlui-paddingBottom-HtmlImage, var(--xmlui-paddingVertical-HtmlImage, var(--xmlui-padding-HtmlImage)));
|
|
5970
7171
|
}/*
|
|
5971
7172
|
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
5972
7173
|
*
|
|
@@ -6056,148 +7257,6 @@ li .htmlOl {
|
|
|
6056
7257
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6057
7258
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6058
7259
|
*/
|
|
6059
|
-
._overlay_10ppq_13 {
|
|
6060
|
-
position: fixed;
|
|
6061
|
-
top: 0;
|
|
6062
|
-
left: 0;
|
|
6063
|
-
width: 100%;
|
|
6064
|
-
height: 100vh;
|
|
6065
|
-
opacity: 0;
|
|
6066
|
-
pointer-events: none; /* So it doesn't interfere when not open */
|
|
6067
|
-
transition: opacity 0.3s ease-in-out;
|
|
6068
|
-
background-color: rgba(0, 0, 0, 0.3); /* Optional dark backdrop */
|
|
6069
|
-
z-index: 999; /* Place it above your content */
|
|
6070
|
-
}
|
|
6071
|
-
|
|
6072
|
-
._overlayVisible_10ppq_26 {
|
|
6073
|
-
opacity: 1;
|
|
6074
|
-
pointer-events: auto;
|
|
6075
|
-
}
|
|
6076
|
-
|
|
6077
|
-
._offCanvas_10ppq_31 {
|
|
6078
|
-
position: fixed;
|
|
6079
|
-
background-color: var(--xmlui-backgroundColor-OffCanvas);
|
|
6080
|
-
z-index: 1000;
|
|
6081
|
-
transition: transform 0.3s ease;
|
|
6082
|
-
width: var(--xmlui-width-OffCanvas);
|
|
6083
|
-
height: 100vh;
|
|
6084
|
-
border-left: var(--xmlui-borderLeft-OffCanvas, var(--xmlui-borderHorizontal-OffCanvas, var(--xmlui-border-OffCanvas)));
|
|
6085
|
-
border-right: var(--xmlui-borderRight-OffCanvas, var(--xmlui-borderHorizontal-OffCanvas, var(--xmlui-border-OffCanvas)));
|
|
6086
|
-
border-top: var(--xmlui-borderTop-OffCanvas, var(--xmlui-borderVertical-OffCanvas, var(--xmlui-border-OffCanvas)));
|
|
6087
|
-
border-bottom: var(--xmlui-borderBottom-OffCanvas, var(--xmlui-borderVertical-OffCanvas, var(--xmlui-border-OffCanvas)));
|
|
6088
|
-
border-left-style: var(--xmlui-borderLeftStyle-OffCanvas, var(--xmlui-borderHorizontalStyle-OffCanvas, var(--xmlui-borderStyle-OffCanvas)));
|
|
6089
|
-
border-right-style: var(--xmlui-borderRightStyle-OffCanvas, var(--xmlui-borderHorizontalStyle-OffCanvas, var(--xmlui-borderStyle-OffCanvas)));
|
|
6090
|
-
border-top-style: var(--xmlui-borderTopStyle-OffCanvas, var(--xmlui-borderVerticalStyle-OffCanvas, var(--xmlui-borderStyle-OffCanvas)));
|
|
6091
|
-
border-bottom-style: var(--xmlui-borderBottomStyle-OffCanvas, var(--xmlui-borderVerticalStyle-OffCanvas, var(--xmlui-borderStyle-OffCanvas)));
|
|
6092
|
-
border-left-width: var(--xmlui-borderLeftWidth-OffCanvas, var(--xmlui-borderHorizontalWidth-OffCanvas, var(--xmlui-borderWidth-OffCanvas)));
|
|
6093
|
-
border-right-width: var(--xmlui-borderRightWidth-OffCanvas, var(--xmlui-borderHorizontalWidth-OffCanvas, var(--xmlui-borderWidth-OffCanvas)));
|
|
6094
|
-
border-top-width: var(--xmlui-borderTopWidth-OffCanvas, var(--xmlui-borderVerticalWidth-OffCanvas, var(--xmlui-borderWidth-OffCanvas)));
|
|
6095
|
-
border-bottom-width: var(--xmlui-borderBottomWidth-OffCanvas, var(--xmlui-borderVerticalWidth-OffCanvas, var(--xmlui-borderWidth-OffCanvas)));
|
|
6096
|
-
border-left-color: var(--xmlui-borderLeftColor-OffCanvas, var(--xmlui-borderHorizontalColor-OffCanvas, var(--xmlui-borderColor-OffCanvas)));
|
|
6097
|
-
border-right-color: var(--xmlui-borderRightColor-OffCanvas, var(--xmlui-borderHorizontalColor-OffCanvas, var(--xmlui-borderColor-OffCanvas)));
|
|
6098
|
-
border-top-color: var(--xmlui-borderTopColor-OffCanvas, var(--xmlui-borderVerticalColor-OffCanvas, var(--xmlui-borderColor-OffCanvas)));
|
|
6099
|
-
border-bottom-color: var(--xmlui-borderBottomColor-OffCanvas, var(--xmlui-borderVerticalColor-OffCanvas, var(--xmlui-borderColor-OffCanvas)));
|
|
6100
|
-
border-start-start-radius: var(--xmlui-borderStartStartRadius-OffCanvas, var(--xmlui-borderRadius-OffCanvas));
|
|
6101
|
-
border-start-end-radius: var(--xmlui-borderStartEndRadius-OffCanvas, var(--xmlui-borderRadius-OffCanvas));
|
|
6102
|
-
border-end-start-radius: var(--xmlui-borderEndStartRadius-OffCanvas, var(--xmlui-borderRadius-OffCanvas));
|
|
6103
|
-
border-end-end-radius: var(--xmlui-borderEndEndRadius-OffCanvas, var(--xmlui-borderRadius-OffCanvas));
|
|
6104
|
-
padding: var(--xmlui-padding-OffCanvas);
|
|
6105
|
-
padding-left: var(--xmlui-paddingLeft-OffCanvas, var(--xmlui-paddingHorizontal-OffCanvas, var(--xmlui-padding-OffCanvas)));
|
|
6106
|
-
padding-right: var(--xmlui-paddingRight-OffCanvas, var(--xmlui-paddingHorizontal-OffCanvas, var(--xmlui-padding-OffCanvas)));
|
|
6107
|
-
padding-top: var(--xmlui-paddingTop-OffCanvas, var(--xmlui-paddingVertical-OffCanvas, var(--xmlui-padding-OffCanvas)));
|
|
6108
|
-
padding-bottom: var(--xmlui-paddingBottom-OffCanvas, var(--xmlui-paddingVertical-OffCanvas, var(--xmlui-padding-OffCanvas)));
|
|
6109
|
-
}
|
|
6110
|
-
|
|
6111
|
-
/* By default (right side) */
|
|
6112
|
-
._offCanvas_10ppq_31._right_10ppq_66 {
|
|
6113
|
-
top: 0;
|
|
6114
|
-
right: 0;
|
|
6115
|
-
transform: translateX(100%);
|
|
6116
|
-
box-shadow: var(--xmlui-boxShadow-horizontal-OffCanvas);
|
|
6117
|
-
}
|
|
6118
|
-
|
|
6119
|
-
._offCanvas_10ppq_31._left_10ppq_73 {
|
|
6120
|
-
top: 0;
|
|
6121
|
-
left: 0;
|
|
6122
|
-
transform: translateX(-100%);
|
|
6123
|
-
box-shadow: var(--xmlui-boxShadow-horizontal-OffCanvas);
|
|
6124
|
-
}
|
|
6125
|
-
|
|
6126
|
-
._offCanvas_10ppq_31._top_10ppq_80 {
|
|
6127
|
-
top: 0;
|
|
6128
|
-
left: 0;
|
|
6129
|
-
width: 100%;
|
|
6130
|
-
height: 300px; /* or your desired height */
|
|
6131
|
-
transform: translateY(-100%);
|
|
6132
|
-
box-shadow: var(--xmlui-boxShadow-vertical-OffCanvas);
|
|
6133
|
-
}
|
|
6134
|
-
|
|
6135
|
-
._offCanvas_10ppq_31._bottom_10ppq_89 {
|
|
6136
|
-
bottom: 0;
|
|
6137
|
-
left: 0;
|
|
6138
|
-
width: 100%;
|
|
6139
|
-
height: 300px; /* or your desired height */
|
|
6140
|
-
transform: translateY(100%);
|
|
6141
|
-
box-shadow: var(--xmlui-boxShadow-vertical-OffCanvas);
|
|
6142
|
-
}
|
|
6143
|
-
|
|
6144
|
-
._offCanvas_10ppq_31._open_10ppq_98 {
|
|
6145
|
-
transform: translate(0);
|
|
6146
|
-
}
|
|
6147
|
-
|
|
6148
|
-
._button_10ppq_102 {
|
|
6149
|
-
padding: 0.25rem;
|
|
6150
|
-
padding-top: 0;
|
|
6151
|
-
right: 0.75rem;
|
|
6152
|
-
background: transparent;
|
|
6153
|
-
border: none;
|
|
6154
|
-
font-size: 1.5rem;
|
|
6155
|
-
cursor: pointer;
|
|
6156
|
-
}
|
|
6157
|
-
|
|
6158
|
-
._closeButton_10ppq_112 {
|
|
6159
|
-
position: absolute;
|
|
6160
|
-
top: 0.05rem;
|
|
6161
|
-
padding: 0.25rem;
|
|
6162
|
-
right: 0.75rem;
|
|
6163
|
-
background: transparent;
|
|
6164
|
-
border: none;
|
|
6165
|
-
font-size: 1.5rem;
|
|
6166
|
-
cursor: pointer;
|
|
6167
|
-
}
|
|
6168
|
-
|
|
6169
|
-
._spacer_10ppq_123 {
|
|
6170
|
-
flex: 1 1 0 !important;
|
|
6171
|
-
place-self: stretch;
|
|
6172
|
-
}
|
|
6173
|
-
|
|
6174
|
-
._offCanvasHeader_10ppq_128 {
|
|
6175
|
-
display: flex;
|
|
6176
|
-
flex: 1;
|
|
6177
|
-
flex-direction: row;
|
|
6178
|
-
margin-bottom: var(--xmlui-marginBottom-title-OffCanvas);
|
|
6179
|
-
}
|
|
6180
|
-
|
|
6181
|
-
._offCanvasButtonSpace_10ppq_135 {
|
|
6182
|
-
width: 0.5rem;
|
|
6183
|
-
}
|
|
6184
|
-
|
|
6185
|
-
._offCanvasTitle_10ppq_139 {
|
|
6186
|
-
flex: 1;
|
|
6187
|
-
margin-bottom: var(--xmlui-marginBottom-title-OffCanvas);
|
|
6188
|
-
font-size: var(--xmlui-fontSize-large);
|
|
6189
|
-
}/*
|
|
6190
|
-
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
6191
|
-
*
|
|
6192
|
-
* We use a subset of these CSS variables in themes.
|
|
6193
|
-
*/
|
|
6194
|
-
/*
|
|
6195
|
-
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
6196
|
-
*/
|
|
6197
|
-
/*
|
|
6198
|
-
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6199
|
-
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6200
|
-
*/
|
|
6201
7260
|
._wrapper_1hlil_13 {
|
|
6202
7261
|
position: absolute;
|
|
6203
7262
|
}
|
|
@@ -6645,7 +7704,7 @@ li .htmlOl {
|
|
|
6645
7704
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6646
7705
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6647
7706
|
*/
|
|
6648
|
-
.
|
|
7707
|
+
._nav_1biyk_13 {
|
|
6649
7708
|
background-color: var(--xmlui-backgroundColor-TableOfContents);
|
|
6650
7709
|
min-width: 240px;
|
|
6651
7710
|
width: var(--xmlui-width-TableOfContents);
|
|
@@ -6667,23 +7726,17 @@ li .htmlOl {
|
|
|
6667
7726
|
margin-bottom: var(--xmlui-marginBottom-TableOfContents);
|
|
6668
7727
|
padding: var(--xmlui-paddingVertical-TableOfContents) var(--xmlui-paddingHorizontal-TableOfContents);
|
|
6669
7728
|
}
|
|
6670
|
-
.
|
|
7729
|
+
._nav_1biyk_13 ._list_1biyk_35 {
|
|
6671
7730
|
margin: 0;
|
|
6672
7731
|
padding: 0;
|
|
6673
7732
|
list-style: none;
|
|
6674
7733
|
}
|
|
6675
|
-
.
|
|
7734
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 {
|
|
6676
7735
|
list-style-type: none;
|
|
6677
7736
|
border-left: var(--xmlui-border-width-TableOfContentsItem) var(--xmlui-border-style-TableOfContentsItem) var(--xmlui-border-color-TableOfContentsItem);
|
|
6678
7737
|
}
|
|
6679
|
-
.
|
|
7738
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44 {
|
|
6680
7739
|
color: var(--xmlui-textColor-TableOfContentsItem);
|
|
6681
|
-
font-size: var(--xmlui-fontSize-TableOfContentsItem);
|
|
6682
|
-
font-weight: var(--xmlui-fontWeight-TableOfContentsItem);
|
|
6683
|
-
font-family: var(--xmlui-fontFamily-TableOfContentsItem);
|
|
6684
|
-
text-transform: var(--xmlui-textTransform-TableOfContentsItem);
|
|
6685
|
-
vertical-align: var(--xmlui-verticalAlign-TableOfContentsItem);
|
|
6686
|
-
letter-spacing: var(--xmlui-letterSpacing-TableOfContentsItem);
|
|
6687
7740
|
overflow-wrap: break-word;
|
|
6688
7741
|
display: block;
|
|
6689
7742
|
padding: var(--xmlui-padding-TableOfContentsItem);
|
|
@@ -6691,53 +7744,228 @@ li .htmlOl {
|
|
|
6691
7744
|
padding-right: var(--xmlui-paddingRight-TableOfContentsItem, var(--xmlui-paddingHorizontal-TableOfContentsItem, var(--xmlui-padding-TableOfContentsItem)));
|
|
6692
7745
|
padding-top: var(--xmlui-paddingTop-TableOfContentsItem, var(--xmlui-paddingVertical-TableOfContentsItem, var(--xmlui-padding-TableOfContentsItem)));
|
|
6693
7746
|
padding-bottom: var(--xmlui-paddingBottom-TableOfContentsItem, var(--xmlui-paddingVertical-TableOfContentsItem, var(--xmlui-padding-TableOfContentsItem)));
|
|
6694
|
-
|
|
6695
|
-
|
|
7747
|
+
color: var(--xmlui-textColor-TableOfContentsItem);
|
|
7748
|
+
font-family: var(--xmlui-fontFamily-TableOfContentsItem);
|
|
7749
|
+
font-size: var(--xmlui-fontSize-TableOfContentsItem);
|
|
7750
|
+
font-style: var(--xmlui-fontStyle-TableOfContentsItem);
|
|
7751
|
+
font-weight: var(--xmlui-fontWeight-TableOfContentsItem);
|
|
7752
|
+
font-stretch: var(--xmlui-fontStretch-TableOfContentsItem);
|
|
7753
|
+
text-decoration-line: var(--xmlui-textDecorationLine-TableOfContentsItem);
|
|
7754
|
+
text-decoration-color: var(--xmlui-textDecorationColor-TableOfContentsItem);
|
|
7755
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-TableOfContentsItem);
|
|
7756
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-TableOfContentsItem);
|
|
7757
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-TableOfContentsItem);
|
|
7758
|
+
line-height: var(--xmlui-lineHeight-TableOfContentsItem);
|
|
7759
|
+
background-color: var(--xmlui-backgroundColor-TableOfContentsItem);
|
|
7760
|
+
text-transform: var(--xmlui-textTransform-TableOfContentsItem);
|
|
7761
|
+
letter-spacing: var(--xmlui-letterSpacing-TableOfContentsItem);
|
|
7762
|
+
word-spacing: var(--xmlui-wordSpacing-TableOfContentsItem);
|
|
7763
|
+
text-shadow: var(--xmlui-textShadow-TableOfContentsItem);
|
|
7764
|
+
text-indent: var(--xmlui-textIndent-TableOfContentsItem);
|
|
7765
|
+
text-align: var(--xmlui-textAlign-TableOfContentsItem);
|
|
7766
|
+
text-align-last: var(--xmlui-textAlignLast-TableOfContentsItem);
|
|
7767
|
+
word-break: var(--xmlui-wordBreak-TableOfContentsItem);
|
|
7768
|
+
word-wrap: var(--xmlui-wordWrap-TableOfContentsItem);
|
|
7769
|
+
direction: var(--xmlui-direction-TableOfContentsItem);
|
|
7770
|
+
writing-mode: var(--xmlui-writingMode-TableOfContentsItem);
|
|
7771
|
+
line-break: var(--xmlui-lineBreak-TableOfContentsItem);
|
|
7772
|
+
}
|
|
7773
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_1_1biyk_79 {
|
|
6696
7774
|
padding: var(--xmlui-padding-TableOfContentsItem-level-1);
|
|
6697
7775
|
padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-1, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-1, var(--xmlui-padding-TableOfContentsItem-level-1)));
|
|
6698
7776
|
padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-1, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-1, var(--xmlui-padding-TableOfContentsItem-level-1)));
|
|
6699
7777
|
padding-top: var(--xmlui-paddingTop-TableOfContentsItem-level-1, var(--xmlui-paddingVertical-TableOfContentsItem-level-1, var(--xmlui-padding-TableOfContentsItem-level-1)));
|
|
6700
7778
|
padding-bottom: var(--xmlui-paddingBottom-TableOfContentsItem-level-1, var(--xmlui-paddingVertical-TableOfContentsItem-level-1, var(--xmlui-padding-TableOfContentsItem-level-1)));
|
|
6701
|
-
|
|
6702
|
-
|
|
7779
|
+
color: var(--xmlui-textColor-TableOfContentsItem-level-1);
|
|
7780
|
+
font-family: var(--xmlui-fontFamily-TableOfContentsItem-level-1);
|
|
7781
|
+
font-size: var(--xmlui-fontSize-TableOfContentsItem-level-1);
|
|
7782
|
+
font-style: var(--xmlui-fontStyle-TableOfContentsItem-level-1);
|
|
7783
|
+
font-weight: var(--xmlui-fontWeight-TableOfContentsItem-level-1);
|
|
7784
|
+
font-stretch: var(--xmlui-fontStretch-TableOfContentsItem-level-1);
|
|
7785
|
+
text-decoration-line: var(--xmlui-textDecorationLine-TableOfContentsItem-level-1);
|
|
7786
|
+
text-decoration-color: var(--xmlui-textDecorationColor-TableOfContentsItem-level-1);
|
|
7787
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-TableOfContentsItem-level-1);
|
|
7788
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-TableOfContentsItem-level-1);
|
|
7789
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-TableOfContentsItem-level-1);
|
|
7790
|
+
line-height: var(--xmlui-lineHeight-TableOfContentsItem-level-1);
|
|
7791
|
+
background-color: var(--xmlui-backgroundColor-TableOfContentsItem-level-1);
|
|
7792
|
+
text-transform: var(--xmlui-textTransform-TableOfContentsItem-level-1);
|
|
7793
|
+
letter-spacing: var(--xmlui-letterSpacing-TableOfContentsItem-level-1);
|
|
7794
|
+
word-spacing: var(--xmlui-wordSpacing-TableOfContentsItem-level-1);
|
|
7795
|
+
text-shadow: var(--xmlui-textShadow-TableOfContentsItem-level-1);
|
|
7796
|
+
text-indent: var(--xmlui-textIndent-TableOfContentsItem-level-1);
|
|
7797
|
+
text-align: var(--xmlui-textAlign-TableOfContentsItem-level-1);
|
|
7798
|
+
text-align-last: var(--xmlui-textAlignLast-TableOfContentsItem-level-1);
|
|
7799
|
+
word-break: var(--xmlui-wordBreak-TableOfContentsItem-level-1);
|
|
7800
|
+
word-wrap: var(--xmlui-wordWrap-TableOfContentsItem-level-1);
|
|
7801
|
+
direction: var(--xmlui-direction-TableOfContentsItem-level-1);
|
|
7802
|
+
writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-1);
|
|
7803
|
+
line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-1);
|
|
7804
|
+
}
|
|
7805
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_2_1biyk_111 {
|
|
6703
7806
|
padding: var(--xmlui-padding-TableOfContentsItem-level-2);
|
|
6704
7807
|
padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-2, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-2, var(--xmlui-padding-TableOfContentsItem-level-2)));
|
|
6705
7808
|
padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-2, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-2, var(--xmlui-padding-TableOfContentsItem-level-2)));
|
|
6706
7809
|
padding-top: var(--xmlui-paddingTop-TableOfContentsItem-level-2, var(--xmlui-paddingVertical-TableOfContentsItem-level-2, var(--xmlui-padding-TableOfContentsItem-level-2)));
|
|
6707
7810
|
padding-bottom: var(--xmlui-paddingBottom-TableOfContentsItem-level-2, var(--xmlui-paddingVertical-TableOfContentsItem-level-2, var(--xmlui-padding-TableOfContentsItem-level-2)));
|
|
6708
|
-
|
|
6709
|
-
|
|
7811
|
+
color: var(--xmlui-textColor-TableOfContentsItem-level-2);
|
|
7812
|
+
font-family: var(--xmlui-fontFamily-TableOfContentsItem-level-2);
|
|
7813
|
+
font-size: var(--xmlui-fontSize-TableOfContentsItem-level-2);
|
|
7814
|
+
font-style: var(--xmlui-fontStyle-TableOfContentsItem-level-2);
|
|
7815
|
+
font-weight: var(--xmlui-fontWeight-TableOfContentsItem-level-2);
|
|
7816
|
+
font-stretch: var(--xmlui-fontStretch-TableOfContentsItem-level-2);
|
|
7817
|
+
text-decoration-line: var(--xmlui-textDecorationLine-TableOfContentsItem-level-2);
|
|
7818
|
+
text-decoration-color: var(--xmlui-textDecorationColor-TableOfContentsItem-level-2);
|
|
7819
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-TableOfContentsItem-level-2);
|
|
7820
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-TableOfContentsItem-level-2);
|
|
7821
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-TableOfContentsItem-level-2);
|
|
7822
|
+
line-height: var(--xmlui-lineHeight-TableOfContentsItem-level-2);
|
|
7823
|
+
background-color: var(--xmlui-backgroundColor-TableOfContentsItem-level-2);
|
|
7824
|
+
text-transform: var(--xmlui-textTransform-TableOfContentsItem-level-2);
|
|
7825
|
+
letter-spacing: var(--xmlui-letterSpacing-TableOfContentsItem-level-2);
|
|
7826
|
+
word-spacing: var(--xmlui-wordSpacing-TableOfContentsItem-level-2);
|
|
7827
|
+
text-shadow: var(--xmlui-textShadow-TableOfContentsItem-level-2);
|
|
7828
|
+
text-indent: var(--xmlui-textIndent-TableOfContentsItem-level-2);
|
|
7829
|
+
text-align: var(--xmlui-textAlign-TableOfContentsItem-level-2);
|
|
7830
|
+
text-align-last: var(--xmlui-textAlignLast-TableOfContentsItem-level-2);
|
|
7831
|
+
word-break: var(--xmlui-wordBreak-TableOfContentsItem-level-2);
|
|
7832
|
+
word-wrap: var(--xmlui-wordWrap-TableOfContentsItem-level-2);
|
|
7833
|
+
direction: var(--xmlui-direction-TableOfContentsItem-level-2);
|
|
7834
|
+
writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-2);
|
|
7835
|
+
line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-2);
|
|
7836
|
+
}
|
|
7837
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_3_1biyk_143 {
|
|
6710
7838
|
padding: var(--xmlui-padding-TableOfContentsItem-level-3);
|
|
6711
7839
|
padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-3, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-3, var(--xmlui-padding-TableOfContentsItem-level-3)));
|
|
6712
7840
|
padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-3, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-3, var(--xmlui-padding-TableOfContentsItem-level-3)));
|
|
6713
7841
|
padding-top: var(--xmlui-paddingTop-TableOfContentsItem-level-3, var(--xmlui-paddingVertical-TableOfContentsItem-level-3, var(--xmlui-padding-TableOfContentsItem-level-3)));
|
|
6714
7842
|
padding-bottom: var(--xmlui-paddingBottom-TableOfContentsItem-level-3, var(--xmlui-paddingVertical-TableOfContentsItem-level-3, var(--xmlui-padding-TableOfContentsItem-level-3)));
|
|
6715
|
-
|
|
6716
|
-
|
|
7843
|
+
color: var(--xmlui-textColor-TableOfContentsItem-level-3);
|
|
7844
|
+
font-family: var(--xmlui-fontFamily-TableOfContentsItem-level-3);
|
|
7845
|
+
font-size: var(--xmlui-fontSize-TableOfContentsItem-level-3);
|
|
7846
|
+
font-style: var(--xmlui-fontStyle-TableOfContentsItem-level-3);
|
|
7847
|
+
font-weight: var(--xmlui-fontWeight-TableOfContentsItem-level-3);
|
|
7848
|
+
font-stretch: var(--xmlui-fontStretch-TableOfContentsItem-level-3);
|
|
7849
|
+
text-decoration-line: var(--xmlui-textDecorationLine-TableOfContentsItem-level-3);
|
|
7850
|
+
text-decoration-color: var(--xmlui-textDecorationColor-TableOfContentsItem-level-3);
|
|
7851
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-TableOfContentsItem-level-3);
|
|
7852
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-TableOfContentsItem-level-3);
|
|
7853
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-TableOfContentsItem-level-3);
|
|
7854
|
+
line-height: var(--xmlui-lineHeight-TableOfContentsItem-level-3);
|
|
7855
|
+
background-color: var(--xmlui-backgroundColor-TableOfContentsItem-level-3);
|
|
7856
|
+
text-transform: var(--xmlui-textTransform-TableOfContentsItem-level-3);
|
|
7857
|
+
letter-spacing: var(--xmlui-letterSpacing-TableOfContentsItem-level-3);
|
|
7858
|
+
word-spacing: var(--xmlui-wordSpacing-TableOfContentsItem-level-3);
|
|
7859
|
+
text-shadow: var(--xmlui-textShadow-TableOfContentsItem-level-3);
|
|
7860
|
+
text-indent: var(--xmlui-textIndent-TableOfContentsItem-level-3);
|
|
7861
|
+
text-align: var(--xmlui-textAlign-TableOfContentsItem-level-3);
|
|
7862
|
+
text-align-last: var(--xmlui-textAlignLast-TableOfContentsItem-level-3);
|
|
7863
|
+
word-break: var(--xmlui-wordBreak-TableOfContentsItem-level-3);
|
|
7864
|
+
word-wrap: var(--xmlui-wordWrap-TableOfContentsItem-level-3);
|
|
7865
|
+
direction: var(--xmlui-direction-TableOfContentsItem-level-3);
|
|
7866
|
+
writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-3);
|
|
7867
|
+
line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-3);
|
|
7868
|
+
}
|
|
7869
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_4_1biyk_175 {
|
|
6717
7870
|
padding: var(--xmlui-padding-TableOfContentsItem-level-4);
|
|
6718
7871
|
padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-4, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-4, var(--xmlui-padding-TableOfContentsItem-level-4)));
|
|
6719
7872
|
padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-4, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-4, var(--xmlui-padding-TableOfContentsItem-level-4)));
|
|
6720
7873
|
padding-top: var(--xmlui-paddingTop-TableOfContentsItem-level-4, var(--xmlui-paddingVertical-TableOfContentsItem-level-4, var(--xmlui-padding-TableOfContentsItem-level-4)));
|
|
6721
7874
|
padding-bottom: var(--xmlui-paddingBottom-TableOfContentsItem-level-4, var(--xmlui-paddingVertical-TableOfContentsItem-level-4, var(--xmlui-padding-TableOfContentsItem-level-4)));
|
|
6722
|
-
|
|
6723
|
-
|
|
7875
|
+
color: var(--xmlui-textColor-TableOfContentsItem-level-4);
|
|
7876
|
+
font-family: var(--xmlui-fontFamily-TableOfContentsItem-level-4);
|
|
7877
|
+
font-size: var(--xmlui-fontSize-TableOfContentsItem-level-4);
|
|
7878
|
+
font-style: var(--xmlui-fontStyle-TableOfContentsItem-level-4);
|
|
7879
|
+
font-weight: var(--xmlui-fontWeight-TableOfContentsItem-level-4);
|
|
7880
|
+
font-stretch: var(--xmlui-fontStretch-TableOfContentsItem-level-4);
|
|
7881
|
+
text-decoration-line: var(--xmlui-textDecorationLine-TableOfContentsItem-level-4);
|
|
7882
|
+
text-decoration-color: var(--xmlui-textDecorationColor-TableOfContentsItem-level-4);
|
|
7883
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-TableOfContentsItem-level-4);
|
|
7884
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-TableOfContentsItem-level-4);
|
|
7885
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-TableOfContentsItem-level-4);
|
|
7886
|
+
line-height: var(--xmlui-lineHeight-TableOfContentsItem-level-4);
|
|
7887
|
+
background-color: var(--xmlui-backgroundColor-TableOfContentsItem-level-4);
|
|
7888
|
+
text-transform: var(--xmlui-textTransform-TableOfContentsItem-level-4);
|
|
7889
|
+
letter-spacing: var(--xmlui-letterSpacing-TableOfContentsItem-level-4);
|
|
7890
|
+
word-spacing: var(--xmlui-wordSpacing-TableOfContentsItem-level-4);
|
|
7891
|
+
text-shadow: var(--xmlui-textShadow-TableOfContentsItem-level-4);
|
|
7892
|
+
text-indent: var(--xmlui-textIndent-TableOfContentsItem-level-4);
|
|
7893
|
+
text-align: var(--xmlui-textAlign-TableOfContentsItem-level-4);
|
|
7894
|
+
text-align-last: var(--xmlui-textAlignLast-TableOfContentsItem-level-4);
|
|
7895
|
+
word-break: var(--xmlui-wordBreak-TableOfContentsItem-level-4);
|
|
7896
|
+
word-wrap: var(--xmlui-wordWrap-TableOfContentsItem-level-4);
|
|
7897
|
+
direction: var(--xmlui-direction-TableOfContentsItem-level-4);
|
|
7898
|
+
writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-4);
|
|
7899
|
+
line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-4);
|
|
7900
|
+
}
|
|
7901
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_5_1biyk_207 {
|
|
6724
7902
|
padding: var(--xmlui-padding-TableOfContentsItem-level-5);
|
|
6725
7903
|
padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-5, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-5, var(--xmlui-padding-TableOfContentsItem-level-5)));
|
|
6726
7904
|
padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-5, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-5, var(--xmlui-padding-TableOfContentsItem-level-5)));
|
|
6727
7905
|
padding-top: var(--xmlui-paddingTop-TableOfContentsItem-level-5, var(--xmlui-paddingVertical-TableOfContentsItem-level-5, var(--xmlui-padding-TableOfContentsItem-level-5)));
|
|
6728
7906
|
padding-bottom: var(--xmlui-paddingBottom-TableOfContentsItem-level-5, var(--xmlui-paddingVertical-TableOfContentsItem-level-5, var(--xmlui-padding-TableOfContentsItem-level-5)));
|
|
6729
|
-
|
|
6730
|
-
|
|
7907
|
+
color: var(--xmlui-textColor-TableOfContentsItem-level-5);
|
|
7908
|
+
font-family: var(--xmlui-fontFamily-TableOfContentsItem-level-5);
|
|
7909
|
+
font-size: var(--xmlui-fontSize-TableOfContentsItem-level-5);
|
|
7910
|
+
font-style: var(--xmlui-fontStyle-TableOfContentsItem-level-5);
|
|
7911
|
+
font-weight: var(--xmlui-fontWeight-TableOfContentsItem-level-5);
|
|
7912
|
+
font-stretch: var(--xmlui-fontStretch-TableOfContentsItem-level-5);
|
|
7913
|
+
text-decoration-line: var(--xmlui-textDecorationLine-TableOfContentsItem-level-5);
|
|
7914
|
+
text-decoration-color: var(--xmlui-textDecorationColor-TableOfContentsItem-level-5);
|
|
7915
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-TableOfContentsItem-level-5);
|
|
7916
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-TableOfContentsItem-level-5);
|
|
7917
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-TableOfContentsItem-level-5);
|
|
7918
|
+
line-height: var(--xmlui-lineHeight-TableOfContentsItem-level-5);
|
|
7919
|
+
background-color: var(--xmlui-backgroundColor-TableOfContentsItem-level-5);
|
|
7920
|
+
text-transform: var(--xmlui-textTransform-TableOfContentsItem-level-5);
|
|
7921
|
+
letter-spacing: var(--xmlui-letterSpacing-TableOfContentsItem-level-5);
|
|
7922
|
+
word-spacing: var(--xmlui-wordSpacing-TableOfContentsItem-level-5);
|
|
7923
|
+
text-shadow: var(--xmlui-textShadow-TableOfContentsItem-level-5);
|
|
7924
|
+
text-indent: var(--xmlui-textIndent-TableOfContentsItem-level-5);
|
|
7925
|
+
text-align: var(--xmlui-textAlign-TableOfContentsItem-level-5);
|
|
7926
|
+
text-align-last: var(--xmlui-textAlignLast-TableOfContentsItem-level-5);
|
|
7927
|
+
word-break: var(--xmlui-wordBreak-TableOfContentsItem-level-5);
|
|
7928
|
+
word-wrap: var(--xmlui-wordWrap-TableOfContentsItem-level-5);
|
|
7929
|
+
direction: var(--xmlui-direction-TableOfContentsItem-level-5);
|
|
7930
|
+
writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-5);
|
|
7931
|
+
line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-5);
|
|
7932
|
+
}
|
|
7933
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_6_1biyk_239 {
|
|
6731
7934
|
padding: var(--xmlui-padding-TableOfContentsItem-level-6);
|
|
6732
7935
|
padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-6, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-6, var(--xmlui-padding-TableOfContentsItem-level-6)));
|
|
6733
7936
|
padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-6, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-6, var(--xmlui-padding-TableOfContentsItem-level-6)));
|
|
6734
7937
|
padding-top: var(--xmlui-paddingTop-TableOfContentsItem-level-6, var(--xmlui-paddingVertical-TableOfContentsItem-level-6, var(--xmlui-padding-TableOfContentsItem-level-6)));
|
|
6735
7938
|
padding-bottom: var(--xmlui-paddingBottom-TableOfContentsItem-level-6, var(--xmlui-paddingVertical-TableOfContentsItem-level-6, var(--xmlui-padding-TableOfContentsItem-level-6)));
|
|
6736
|
-
|
|
6737
|
-
|
|
7939
|
+
color: var(--xmlui-textColor-TableOfContentsItem-level-6);
|
|
7940
|
+
font-family: var(--xmlui-fontFamily-TableOfContentsItem-level-6);
|
|
7941
|
+
font-size: var(--xmlui-fontSize-TableOfContentsItem-level-6);
|
|
7942
|
+
font-style: var(--xmlui-fontStyle-TableOfContentsItem-level-6);
|
|
7943
|
+
font-weight: var(--xmlui-fontWeight-TableOfContentsItem-level-6);
|
|
7944
|
+
font-stretch: var(--xmlui-fontStretch-TableOfContentsItem-level-6);
|
|
7945
|
+
text-decoration-line: var(--xmlui-textDecorationLine-TableOfContentsItem-level-6);
|
|
7946
|
+
text-decoration-color: var(--xmlui-textDecorationColor-TableOfContentsItem-level-6);
|
|
7947
|
+
text-decoration-style: var(--xmlui-textDecorationStyle-TableOfContentsItem-level-6);
|
|
7948
|
+
text-decoration-thickness: var(--xmlui-textDecorationThickness-TableOfContentsItem-level-6);
|
|
7949
|
+
text-underline-offset: var(--xmlui-textUnderlineOffset-TableOfContentsItem-level-6);
|
|
7950
|
+
line-height: var(--xmlui-lineHeight-TableOfContentsItem-level-6);
|
|
7951
|
+
background-color: var(--xmlui-backgroundColor-TableOfContentsItem-level-6);
|
|
7952
|
+
text-transform: var(--xmlui-textTransform-TableOfContentsItem-level-6);
|
|
7953
|
+
letter-spacing: var(--xmlui-letterSpacing-TableOfContentsItem-level-6);
|
|
7954
|
+
word-spacing: var(--xmlui-wordSpacing-TableOfContentsItem-level-6);
|
|
7955
|
+
text-shadow: var(--xmlui-textShadow-TableOfContentsItem-level-6);
|
|
7956
|
+
text-indent: var(--xmlui-textIndent-TableOfContentsItem-level-6);
|
|
7957
|
+
text-align: var(--xmlui-textAlign-TableOfContentsItem-level-6);
|
|
7958
|
+
text-align-last: var(--xmlui-textAlignLast-TableOfContentsItem-level-6);
|
|
7959
|
+
word-break: var(--xmlui-wordBreak-TableOfContentsItem-level-6);
|
|
7960
|
+
word-wrap: var(--xmlui-wordWrap-TableOfContentsItem-level-6);
|
|
7961
|
+
direction: var(--xmlui-direction-TableOfContentsItem-level-6);
|
|
7962
|
+
writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-6);
|
|
7963
|
+
line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-6);
|
|
7964
|
+
}
|
|
7965
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40._active_1biyk_271 {
|
|
6738
7966
|
border-left: 2px solid var(--xmlui-borderColor-TableOfContentsItem--active);
|
|
6739
7967
|
}
|
|
6740
|
-
.
|
|
7968
|
+
._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40._active_1biyk_271 ._link_1biyk_44 {
|
|
6741
7969
|
color: var(--xmlui-color-TableOfContentsItem--active);
|
|
6742
7970
|
font-weight: var(--xmlui-fontWeight-TableOfContentsItem--active);
|
|
6743
7971
|
}/*
|
|
@@ -6987,28 +8215,6 @@ li .htmlOl {
|
|
|
6987
8215
|
/*
|
|
6988
8216
|
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
6989
8217
|
*/
|
|
6990
|
-
/*
|
|
6991
|
-
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
6992
|
-
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
6993
|
-
*//*
|
|
6994
|
-
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
6995
|
-
*
|
|
6996
|
-
* We use a subset of these CSS variables in themes.
|
|
6997
|
-
*/
|
|
6998
|
-
/*
|
|
6999
|
-
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
7000
|
-
*/
|
|
7001
|
-
/*
|
|
7002
|
-
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7003
|
-
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
7004
|
-
*//*
|
|
7005
|
-
* This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
|
|
7006
|
-
*
|
|
7007
|
-
* We use a subset of these CSS variables in themes.
|
|
7008
|
-
*/
|
|
7009
|
-
/*
|
|
7010
|
-
* This function creates a CSS variable name by combining the prefix and the argument variable name
|
|
7011
|
-
*/
|
|
7012
8218
|
/*
|
|
7013
8219
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
7014
8220
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|