@spectrum-web-components/styles 1.1.0-beta.9 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +19 -23
- package/src/body-overrides.css +1 -1
- package/src/body-overrides.css.dev.js.map +1 -1
- package/src/body-overrides.css.js.map +1 -1
- package/src/code-overrides.css +1 -1
- package/src/code-overrides.css.dev.js.map +1 -1
- package/src/code-overrides.css.js.map +1 -1
- package/src/detail-overrides.css +1 -1
- package/src/detail-overrides.css.dev.js.map +1 -1
- package/src/detail-overrides.css.js.map +1 -1
- package/src/heading-overrides.css +1 -1
- package/src/heading-overrides.css.dev.js.map +1 -1
- package/src/heading-overrides.css.js.map +1 -1
- package/src/lang-overrides.css.dev.js.map +1 -1
- package/src/lang-overrides.css.js.map +1 -1
- package/src/spectrum-base.css.dev.js.map +1 -1
- package/src/spectrum-base.css.js.map +1 -1
- package/src/spectrum-body.css.dev.js.map +1 -1
- package/src/spectrum-body.css.js.map +1 -1
- package/src/spectrum-code.css.dev.js.map +1 -1
- package/src/spectrum-code.css.js.map +1 -1
- package/src/spectrum-detail.css.dev.js.map +1 -1
- package/src/spectrum-detail.css.js.map +1 -1
- package/src/spectrum-heading.css.dev.js.map +1 -1
- package/src/spectrum-heading.css.js.map +1 -1
- package/src/spectrum-lang.css.dev.js.map +1 -1
- package/src/spectrum-lang.css.js.map +1 -1
- package/src/spectrum-typography.css.dev.js.map +1 -1
- package/src/spectrum-typography.css.js.map +1 -1
- package/tokens/express/custom-dark-vars.css +1 -0
- package/tokens/express/custom-darkest-vars.css +1 -0
- package/tokens/express/custom-large-vars.css +1 -0
- package/tokens/express/custom-light-vars.css +1 -0
- package/tokens/express/custom-medium-vars.css +1 -0
- package/tokens/express/custom-vars.css +1 -0
- package/tokens/express/dark-vars.css +0 -1
- package/tokens/express/darkest-vars.css +0 -1
- package/tokens/express/global-vars.css +0 -7235
- package/tokens/express/index.css +213 -0
- package/tokens/express/large-vars.css +0 -3
- package/tokens/express/light-vars.css +0 -1
- package/tokens/express/medium-vars.css +0 -3
- package/tokens/express/system-theme-bridge.css +6904 -0
- package/tokens/global-vars.css +2 -2
- package/tokens/index.css +2266 -1248
- package/tokens/spectrum/custom-dark-vars.css +1 -0
- package/tokens/spectrum/custom-darkest-vars.css +1 -0
- package/tokens/spectrum/custom-large-vars.css +1 -0
- package/tokens/spectrum/custom-light-vars.css +1 -0
- package/tokens/spectrum/custom-medium-vars.css +1 -0
- package/tokens/spectrum/custom-vars.css +1 -0
- package/tokens/spectrum/dark-vars.css +13 -10
- package/tokens/spectrum/darkest-vars.css +13 -10
- package/tokens/spectrum/global-vars.css +24 -7258
- package/tokens/spectrum/index.css +708 -0
- package/tokens/spectrum/large-vars.css +1 -20
- package/tokens/spectrum/light-vars.css +14 -11
- package/tokens/spectrum/medium-vars.css +1 -19
- package/tokens/spectrum/system-theme-bridge.css +6910 -0
- package/tokens-v2/dark-vars.css +0 -10
- package/tokens-v2/global-vars.css +16 -24
- package/tokens-v2/index.css +16 -88
- package/tokens-v2/large-vars.css +0 -20
- package/tokens-v2/light-vars.css +0 -10
- package/tokens-v2/medium-vars.css +0 -20
- package/tokens-v2/spectrum/custom-dark-vars.css +1 -0
- package/tokens-v2/spectrum/custom-darkest-vars.css +1 -0
- package/tokens-v2/spectrum/custom-large-vars.css +1 -0
- package/tokens-v2/spectrum/custom-light-vars.css +1 -0
- package/tokens-v2/spectrum/custom-medium-vars.css +1 -0
- package/tokens-v2/spectrum/custom-vars.css +1 -0
- package/tokens-v2/{spectrum/global-vars.css → system-theme-bridge.css} +348 -672
|
@@ -86,6 +86,25 @@
|
|
|
86
86
|
--system-accordion-item-content-line-height-cjk: var(
|
|
87
87
|
--spectrum-cjk-line-height-100
|
|
88
88
|
);
|
|
89
|
+
--system-accordion-size-s-item-height: var(--spectrum-component-height-100);
|
|
90
|
+
--system-accordion-size-s-disclosure-indicator-height: var(
|
|
91
|
+
--spectrum-component-height-75
|
|
92
|
+
);
|
|
93
|
+
--system-accordion-size-s-component-edge-to-text: var(
|
|
94
|
+
--spectrum-component-edge-to-text-50
|
|
95
|
+
);
|
|
96
|
+
--system-accordion-size-s-item-header-font-size: var(
|
|
97
|
+
--spectrum-font-size-200
|
|
98
|
+
);
|
|
99
|
+
--system-accordion-size-s-item-content-font-size: var(
|
|
100
|
+
--spectrum-body-size-xs
|
|
101
|
+
);
|
|
102
|
+
--system-accordion-size-s-item-header-top-to-text-space: var(
|
|
103
|
+
--spectrum-accordion-top-to-text-regular-small
|
|
104
|
+
);
|
|
105
|
+
--system-accordion-size-s-item-header-bottom-to-text-space: var(
|
|
106
|
+
--spectrum-accordion-bottom-to-text-regular-small
|
|
107
|
+
);
|
|
89
108
|
--system-accordion-item-height: var(--spectrum-component-height-200);
|
|
90
109
|
--system-accordion-size-m-item-height: var(--spectrum-component-height-200);
|
|
91
110
|
--system-accordion-disclosure-indicator-height: var(
|
|
@@ -120,25 +139,6 @@
|
|
|
120
139
|
--system-accordion-size-m-item-header-bottom-to-text-space: var(
|
|
121
140
|
--spectrum-accordion-bottom-to-text-regular-medium
|
|
122
141
|
);
|
|
123
|
-
--system-accordion-size-s-item-height: var(--spectrum-component-height-100);
|
|
124
|
-
--system-accordion-size-s-disclosure-indicator-height: var(
|
|
125
|
-
--spectrum-component-height-75
|
|
126
|
-
);
|
|
127
|
-
--system-accordion-size-s-component-edge-to-text: var(
|
|
128
|
-
--spectrum-component-edge-to-text-50
|
|
129
|
-
);
|
|
130
|
-
--system-accordion-size-s-item-header-font-size: var(
|
|
131
|
-
--spectrum-font-size-200
|
|
132
|
-
);
|
|
133
|
-
--system-accordion-size-s-item-content-font-size: var(
|
|
134
|
-
--spectrum-body-size-xs
|
|
135
|
-
);
|
|
136
|
-
--system-accordion-size-s-item-header-top-to-text-space: var(
|
|
137
|
-
--spectrum-accordion-top-to-text-regular-small
|
|
138
|
-
);
|
|
139
|
-
--system-accordion-size-s-item-header-bottom-to-text-space: var(
|
|
140
|
-
--spectrum-accordion-bottom-to-text-regular-small
|
|
141
|
-
);
|
|
142
142
|
--system-accordion-size-l-item-height: var(--spectrum-component-height-300);
|
|
143
143
|
--system-accordion-size-l-disclosure-indicator-height: var(
|
|
144
144
|
--spectrum-component-height-200
|
|
@@ -259,10 +259,6 @@
|
|
|
259
259
|
--system-accordion-spacious-size-xl-item-header-bottom-to-text-space: var(
|
|
260
260
|
--spectrum-accordion-bottom-to-text-spacious-extra-large
|
|
261
261
|
);
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
:host,
|
|
265
|
-
:root {
|
|
266
262
|
--system-action-bar-height: var(--spectrum-action-bar-height);
|
|
267
263
|
--system-action-bar-corner-radius: var(--spectrum-corner-radius-100);
|
|
268
264
|
--system-action-bar-item-counter-font-size: var(--spectrum-font-size-100);
|
|
@@ -295,10 +291,6 @@
|
|
|
295
291
|
--system-action-bar-shadow-vertical: var(--spectrum-drop-shadow-y);
|
|
296
292
|
--system-action-bar-shadow-blur: var(--spectrum-drop-shadow-blur);
|
|
297
293
|
--system-action-bar-shadow-color: var(--spectrum-drop-shadow-color);
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
:host,
|
|
301
|
-
:root {
|
|
302
294
|
--system-action-button-animation-duration: var(
|
|
303
295
|
--spectrum-animation-duration-100
|
|
304
296
|
);
|
|
@@ -743,16 +735,24 @@
|
|
|
743
735
|
--system-action-button-size-xl-edge-to-text-size: var(
|
|
744
736
|
--spectrum-component-edge-to-text-300
|
|
745
737
|
);
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
:host,
|
|
749
|
-
:root {
|
|
750
738
|
--system-action-group-gap-size-compact: 0;
|
|
751
739
|
--system-action-group-horizontal-spacing-compact: -1px;
|
|
752
740
|
--system-action-group-vertical-spacing-compact: -1px;
|
|
753
741
|
--system-action-group-button-spacing-reset: 0;
|
|
754
742
|
--system-action-group-border-radius-reset: 0;
|
|
755
743
|
--system-action-group-border-radius: var(--spectrum-corner-radius-100);
|
|
744
|
+
--system-action-group-size-xs-horizontal-spacing-regular: var(
|
|
745
|
+
--spectrum-spacing-75
|
|
746
|
+
);
|
|
747
|
+
--system-action-group-size-s-horizontal-spacing-regular: var(
|
|
748
|
+
--spectrum-spacing-75
|
|
749
|
+
);
|
|
750
|
+
--system-action-group-size-xs-vertical-spacing-regular: var(
|
|
751
|
+
--spectrum-spacing-75
|
|
752
|
+
);
|
|
753
|
+
--system-action-group-size-s-vertical-spacing-regular: var(
|
|
754
|
+
--spectrum-spacing-75
|
|
755
|
+
);
|
|
756
756
|
--system-action-group-horizontal-spacing-regular: var(
|
|
757
757
|
--spectrum-spacing-100
|
|
758
758
|
);
|
|
@@ -775,22 +775,6 @@
|
|
|
775
775
|
--system-action-group-size-xl-vertical-spacing-regular: var(
|
|
776
776
|
--spectrum-spacing-100
|
|
777
777
|
);
|
|
778
|
-
--system-action-group-size-xs-horizontal-spacing-regular: var(
|
|
779
|
-
--spectrum-spacing-75
|
|
780
|
-
);
|
|
781
|
-
--system-action-group-size-s-horizontal-spacing-regular: var(
|
|
782
|
-
--spectrum-spacing-75
|
|
783
|
-
);
|
|
784
|
-
--system-action-group-size-xs-vertical-spacing-regular: var(
|
|
785
|
-
--spectrum-spacing-75
|
|
786
|
-
);
|
|
787
|
-
--system-action-group-size-s-vertical-spacing-regular: var(
|
|
788
|
-
--spectrum-spacing-75
|
|
789
|
-
);
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
:host,
|
|
793
|
-
:root {
|
|
794
778
|
--system-alert-banner-neutral-background: var(
|
|
795
779
|
--spectrum-neutral-subdued-background-color-default
|
|
796
780
|
);
|
|
@@ -821,10 +805,6 @@
|
|
|
821
805
|
--spectrum-negative-background-color-default
|
|
822
806
|
);
|
|
823
807
|
--system-alert-banner-font-color: var(--spectrum-white);
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
:host,
|
|
827
|
-
:root {
|
|
828
808
|
--system-alert-dialog-min-width: var(--spectrum-alert-dialog-minimum-width);
|
|
829
809
|
--system-alert-dialog-max-width: var(--spectrum-alert-dialog-maximum-width);
|
|
830
810
|
--system-alert-dialog-icon-size: var(--spectrum-workflow-icon-size-100);
|
|
@@ -867,18 +847,10 @@
|
|
|
867
847
|
--system-alert-dialog-title-to-divider: var(--spectrum-spacing-200);
|
|
868
848
|
--system-alert-dialog-divider-to-description: var(--spectrum-spacing-300);
|
|
869
849
|
--system-alert-dialog-title-to-icon: var(--spectrum-spacing-300);
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
:host,
|
|
873
|
-
:root {
|
|
874
850
|
--system-asset-transition-duration: var(--spectrum-animation-duration-100);
|
|
875
851
|
--system-asset-folder-background-color: var(--spectrum-gray-200);
|
|
876
852
|
--system-asset-file-background-color: var(--spectrum-gray-25);
|
|
877
853
|
--system-asset-icon-outline-color: var(--spectrum-gray-500);
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
:host,
|
|
881
|
-
:root {
|
|
882
854
|
--system-avatar-color-opacity: 1;
|
|
883
855
|
--system-avatar-inline-size: var(--spectrum-avatar-size-100);
|
|
884
856
|
--system-avatar-block-size: var(--spectrum-avatar-size-100);
|
|
@@ -910,10 +882,6 @@
|
|
|
910
882
|
--system-avatar-size-600-block-size: var(--spectrum-avatar-size-600);
|
|
911
883
|
--system-avatar-size-700-inline-size: var(--spectrum-avatar-size-700);
|
|
912
884
|
--system-avatar-size-700-block-size: var(--spectrum-avatar-size-700);
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
:host,
|
|
916
|
-
:root {
|
|
917
885
|
--system-badge-corner-radius: var(--spectrum-corner-radius-100);
|
|
918
886
|
--system-badge-line-height: var(--spectrum-line-height-100);
|
|
919
887
|
--system-badge-line-height-cjk: var(--spectrum-cjk-line-height-100);
|
|
@@ -1108,11 +1076,8 @@
|
|
|
1108
1076
|
--system-badge-size-xl-icon-only-spacing-horizontal: var(
|
|
1109
1077
|
--spectrum-component-edge-to-visual-only-300
|
|
1110
1078
|
);
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1113
|
-
:host,
|
|
1114
|
-
:root {
|
|
1115
1079
|
--system-button-animation-duration: var(--spectrum-animation-duration-100);
|
|
1080
|
+
--system-button-border-radius: var(--spectrum-corner-radius-100);
|
|
1116
1081
|
--system-button-border-width: var(--spectrum-border-width-200);
|
|
1117
1082
|
--system-button-line-height: 1.2;
|
|
1118
1083
|
--system-button-focus-ring-gap: var(--spectrum-focus-indicator-gap);
|
|
@@ -1122,6 +1087,7 @@
|
|
|
1122
1087
|
--system-button-focus-indicator-color: var(
|
|
1123
1088
|
--spectrum-focus-indicator-color
|
|
1124
1089
|
);
|
|
1090
|
+
--system-button-intended-icon-size: var(--spectrum-workflow-icon-size-50);
|
|
1125
1091
|
--system-button-background-color-default: var(--spectrum-gray-50);
|
|
1126
1092
|
--system-button-background-color-hover: var(--spectrum-gray-100);
|
|
1127
1093
|
--system-button-background-color-down: var(--spectrum-gray-200);
|
|
@@ -1817,105 +1783,76 @@
|
|
|
1817
1783
|
--system-button-static-black-secondary-outline-content-color-disabled: var(
|
|
1818
1784
|
--spectrum-disabled-static-black-content-color
|
|
1819
1785
|
);
|
|
1820
|
-
--system-button-min-width: calc(
|
|
1821
|
-
var(--spectrum-component-height-
|
|
1786
|
+
--system-button-size-s-min-width: calc(
|
|
1787
|
+
var(--spectrum-component-height-75) *
|
|
1822
1788
|
var(--spectrum-button-minimum-width-multiplier)
|
|
1823
1789
|
);
|
|
1790
|
+
--system-button-size-s-border-radius: var(
|
|
1791
|
+
--spectrum-component-pill-edge-to-text-75
|
|
1792
|
+
);
|
|
1793
|
+
--system-button-size-s-height: var(--spectrum-component-height-75);
|
|
1794
|
+
--system-button-size-s-font-size: var(--spectrum-font-size-75);
|
|
1795
|
+
--system-button-size-s-edge-to-visual: calc(
|
|
1796
|
+
var(--spectrum-component-pill-edge-to-visual-75) -
|
|
1797
|
+
var(--system-button-border-width)
|
|
1798
|
+
);
|
|
1799
|
+
--system-button-size-s-edge-to-visual-only: var(
|
|
1800
|
+
--spectrum-component-pill-edge-to-visual-only-75
|
|
1801
|
+
);
|
|
1802
|
+
--system-button-size-s-edge-to-text: calc(
|
|
1803
|
+
var(--spectrum-component-pill-edge-to-text-75) -
|
|
1804
|
+
var(--system-button-border-width)
|
|
1805
|
+
);
|
|
1806
|
+
--system-button-size-s-padding-label-to-icon: var(
|
|
1807
|
+
--spectrum-text-to-visual-75
|
|
1808
|
+
);
|
|
1809
|
+
--system-button-size-s-top-to-text: var(
|
|
1810
|
+
--spectrum-button-top-to-text-small
|
|
1811
|
+
);
|
|
1812
|
+
--system-button-size-s-bottom-to-text: var(
|
|
1813
|
+
--spectrum-button-bottom-to-text-small
|
|
1814
|
+
);
|
|
1815
|
+
--system-button-size-s-top-to-icon: var(
|
|
1816
|
+
--spectrum-component-top-to-workflow-icon-75
|
|
1817
|
+
);
|
|
1818
|
+
--system-button-size-s-intended-icon-size: var(
|
|
1819
|
+
--spectrum-workflow-icon-size-75
|
|
1820
|
+
);
|
|
1824
1821
|
--system-button-size-m-min-width: calc(
|
|
1825
1822
|
var(--spectrum-component-height-100) *
|
|
1826
1823
|
var(--spectrum-button-minimum-width-multiplier)
|
|
1827
1824
|
);
|
|
1828
|
-
--system-button-border-radius: var(
|
|
1829
|
-
--spectrum-component-pill-edge-to-text-100
|
|
1830
|
-
);
|
|
1831
1825
|
--system-button-size-m-border-radius: var(
|
|
1832
1826
|
--spectrum-component-pill-edge-to-text-100
|
|
1833
1827
|
);
|
|
1834
|
-
--system-button-height: var(--spectrum-component-height-100);
|
|
1835
1828
|
--system-button-size-m-height: var(--spectrum-component-height-100);
|
|
1836
|
-
--system-button-font-size: var(--spectrum-font-size-100);
|
|
1837
1829
|
--system-button-size-m-font-size: var(--spectrum-font-size-100);
|
|
1838
|
-
--system-button-edge-to-visual: calc(
|
|
1839
|
-
var(--spectrum-component-pill-edge-to-visual-100) -
|
|
1840
|
-
var(--system-button-border-width)
|
|
1841
|
-
);
|
|
1842
1830
|
--system-button-size-m-edge-to-visual: calc(
|
|
1843
1831
|
var(--spectrum-component-pill-edge-to-visual-100) -
|
|
1844
1832
|
var(--system-button-border-width)
|
|
1845
1833
|
);
|
|
1846
|
-
--system-button-edge-to-visual-only: var(
|
|
1847
|
-
--spectrum-component-pill-edge-to-visual-only-100
|
|
1848
|
-
);
|
|
1849
1834
|
--system-button-size-m-edge-to-visual-only: var(
|
|
1850
1835
|
--spectrum-component-pill-edge-to-visual-only-100
|
|
1851
1836
|
);
|
|
1852
|
-
--system-button-edge-to-text: calc(
|
|
1853
|
-
var(--spectrum-component-pill-edge-to-text-100) -
|
|
1854
|
-
var(--system-button-border-width)
|
|
1855
|
-
);
|
|
1856
1837
|
--system-button-size-m-edge-to-text: calc(
|
|
1857
1838
|
var(--spectrum-component-pill-edge-to-text-100) -
|
|
1858
1839
|
var(--system-button-border-width)
|
|
1859
1840
|
);
|
|
1860
|
-
--system-button-padding-label-to-icon: var(--spectrum-text-to-visual-100);
|
|
1861
1841
|
--system-button-size-m-padding-label-to-icon: var(
|
|
1862
1842
|
--spectrum-text-to-visual-100
|
|
1863
1843
|
);
|
|
1864
|
-
--system-button-top-to-text: var(--spectrum-button-top-to-text-medium);
|
|
1865
1844
|
--system-button-size-m-top-to-text: var(
|
|
1866
1845
|
--spectrum-button-top-to-text-medium
|
|
1867
1846
|
);
|
|
1868
|
-
--system-button-bottom-to-text: var(
|
|
1869
|
-
--spectrum-button-bottom-to-text-medium
|
|
1870
|
-
);
|
|
1871
1847
|
--system-button-size-m-bottom-to-text: var(
|
|
1872
1848
|
--spectrum-button-bottom-to-text-medium
|
|
1873
1849
|
);
|
|
1874
|
-
--system-button-top-to-icon: var(
|
|
1875
|
-
--spectrum-component-top-to-workflow-icon-100
|
|
1876
|
-
);
|
|
1877
1850
|
--system-button-size-m-top-to-icon: var(
|
|
1878
1851
|
--spectrum-component-top-to-workflow-icon-100
|
|
1879
1852
|
);
|
|
1880
|
-
--system-button-intended-icon-size: var(--spectrum-workflow-icon-size-100);
|
|
1881
1853
|
--system-button-size-m-intended-icon-size: var(
|
|
1882
1854
|
--spectrum-workflow-icon-size-100
|
|
1883
1855
|
);
|
|
1884
|
-
--system-button-size-s-min-width: calc(
|
|
1885
|
-
var(--spectrum-component-height-75) *
|
|
1886
|
-
var(--spectrum-button-minimum-width-multiplier)
|
|
1887
|
-
);
|
|
1888
|
-
--system-button-size-s-border-radius: var(
|
|
1889
|
-
--spectrum-component-pill-edge-to-text-75
|
|
1890
|
-
);
|
|
1891
|
-
--system-button-size-s-height: var(--spectrum-component-height-75);
|
|
1892
|
-
--system-button-size-s-font-size: var(--spectrum-font-size-75);
|
|
1893
|
-
--system-button-size-s-edge-to-visual: calc(
|
|
1894
|
-
var(--spectrum-component-pill-edge-to-visual-75) -
|
|
1895
|
-
var(--system-button-border-width)
|
|
1896
|
-
);
|
|
1897
|
-
--system-button-size-s-edge-to-visual-only: var(
|
|
1898
|
-
--spectrum-component-pill-edge-to-visual-only-75
|
|
1899
|
-
);
|
|
1900
|
-
--system-button-size-s-edge-to-text: calc(
|
|
1901
|
-
var(--spectrum-component-pill-edge-to-text-75) -
|
|
1902
|
-
var(--system-button-border-width)
|
|
1903
|
-
);
|
|
1904
|
-
--system-button-size-s-padding-label-to-icon: var(
|
|
1905
|
-
--spectrum-text-to-visual-75
|
|
1906
|
-
);
|
|
1907
|
-
--system-button-size-s-top-to-text: var(
|
|
1908
|
-
--spectrum-button-top-to-text-small
|
|
1909
|
-
);
|
|
1910
|
-
--system-button-size-s-bottom-to-text: var(
|
|
1911
|
-
--spectrum-button-bottom-to-text-small
|
|
1912
|
-
);
|
|
1913
|
-
--system-button-size-s-top-to-icon: var(
|
|
1914
|
-
--spectrum-component-top-to-workflow-icon-75
|
|
1915
|
-
);
|
|
1916
|
-
--system-button-size-s-intended-icon-size: var(
|
|
1917
|
-
--spectrum-workflow-icon-size-75
|
|
1918
|
-
);
|
|
1919
1856
|
--system-button-size-l-min-width: calc(
|
|
1920
1857
|
var(--spectrum-component-height-200) *
|
|
1921
1858
|
var(--spectrum-button-minimum-width-multiplier)
|
|
@@ -1986,20 +1923,16 @@
|
|
|
1986
1923
|
--system-button-size-xl-intended-icon-size: var(
|
|
1987
1924
|
--spectrum-workflow-icon-size-300
|
|
1988
1925
|
);
|
|
1989
|
-
}
|
|
1990
|
-
|
|
1991
|
-
:host,
|
|
1992
|
-
:root {
|
|
1993
1926
|
--system-button-group-spacing-horizontal: var(--spectrum-spacing-300);
|
|
1994
|
-
--system-button-group-size-m-spacing-horizontal: var(
|
|
1995
|
-
--spectrum-spacing-300
|
|
1996
|
-
);
|
|
1997
1927
|
--system-button-group-spacing-vertical: var(--spectrum-spacing-300);
|
|
1998
|
-
--system-button-group-size-m-spacing-vertical: var(--spectrum-spacing-300);
|
|
1999
1928
|
--system-button-group-size-s-spacing-horizontal: var(
|
|
2000
1929
|
--spectrum-spacing-200
|
|
2001
1930
|
);
|
|
2002
1931
|
--system-button-group-size-s-spacing-vertical: var(--spectrum-spacing-200);
|
|
1932
|
+
--system-button-group-size-m-spacing-horizontal: var(
|
|
1933
|
+
--spectrum-spacing-300
|
|
1934
|
+
);
|
|
1935
|
+
--system-button-group-size-m-spacing-vertical: var(--spectrum-spacing-300);
|
|
2003
1936
|
--system-button-group-size-l-spacing-horizontal: var(
|
|
2004
1937
|
--spectrum-spacing-300
|
|
2005
1938
|
);
|
|
@@ -2008,10 +1941,6 @@
|
|
|
2008
1941
|
--spectrum-spacing-300
|
|
2009
1942
|
);
|
|
2010
1943
|
--system-button-group-size-xl-spacing-vertical: var(--spectrum-spacing-300);
|
|
2011
|
-
}
|
|
2012
|
-
|
|
2013
|
-
:host,
|
|
2014
|
-
:root {
|
|
2015
1944
|
--system-breadcrumbs-block-size: var(--spectrum-breadcrumbs-height);
|
|
2016
1945
|
--system-breadcrumbs-block-size-compact: var(
|
|
2017
1946
|
--spectrum-breadcrumbs-height-compact
|
|
@@ -2156,10 +2085,6 @@
|
|
|
2156
2085
|
--system-breadcrumbs-focus-indicator-color: var(
|
|
2157
2086
|
--spectrum-focus-indicator-color
|
|
2158
2087
|
);
|
|
2159
|
-
}
|
|
2160
|
-
|
|
2161
|
-
:host,
|
|
2162
|
-
:root {
|
|
2163
2088
|
--system-checkbox-control-color-default: var(--spectrum-gray-600);
|
|
2164
2089
|
--system-checkbox-control-color-hover: var(--spectrum-gray-700);
|
|
2165
2090
|
--system-checkbox-control-color-down: var(--spectrum-gray-800);
|
|
@@ -2210,7 +2135,7 @@
|
|
|
2210
2135
|
);
|
|
2211
2136
|
--system-checkbox-line-height: var(--spectrum-line-height-100);
|
|
2212
2137
|
--system-checkbox-line-height-cjk: var(--spectrum-cjk-line-height-100);
|
|
2213
|
-
--system-checkbox-control-corner-radius:
|
|
2138
|
+
--system-checkbox-control-corner-radius: var(--spectrum-corner-radius-75);
|
|
2214
2139
|
--system-checkbox-focus-indicator-gap: var(--spectrum-focus-indicator-gap);
|
|
2215
2140
|
--system-checkbox-focus-indicator-thickness: var(
|
|
2216
2141
|
--spectrum-focus-indicator-thickness
|
|
@@ -2219,6 +2144,17 @@
|
|
|
2219
2144
|
--system-checkbox-animation-duration: var(
|
|
2220
2145
|
--spectrum-animation-duration-100
|
|
2221
2146
|
);
|
|
2147
|
+
--system-checkbox-size-s-font-size: var(--spectrum-font-size-75);
|
|
2148
|
+
--system-checkbox-size-s-height: var(--spectrum-component-height-75);
|
|
2149
|
+
--system-checkbox-size-s-control-size: var(
|
|
2150
|
+
--spectrum-checkbox-control-size-small
|
|
2151
|
+
);
|
|
2152
|
+
--system-checkbox-size-s-top-to-text: var(
|
|
2153
|
+
--spectrum-component-top-to-text-75
|
|
2154
|
+
);
|
|
2155
|
+
--system-checkbox-size-s-text-to-control: var(
|
|
2156
|
+
--spectrum-text-to-control-75
|
|
2157
|
+
);
|
|
2222
2158
|
--system-checkbox-font-size: var(--spectrum-font-size-100);
|
|
2223
2159
|
--system-checkbox-size-m-font-size: var(--spectrum-font-size-100);
|
|
2224
2160
|
--system-checkbox-height: var(--spectrum-component-height-100);
|
|
@@ -2237,17 +2173,6 @@
|
|
|
2237
2173
|
--system-checkbox-size-m-text-to-control: var(
|
|
2238
2174
|
--spectrum-text-to-control-100
|
|
2239
2175
|
);
|
|
2240
|
-
--system-checkbox-size-s-font-size: var(--spectrum-font-size-75);
|
|
2241
|
-
--system-checkbox-size-s-height: var(--spectrum-component-height-75);
|
|
2242
|
-
--system-checkbox-size-s-control-size: var(
|
|
2243
|
-
--spectrum-checkbox-control-size-small
|
|
2244
|
-
);
|
|
2245
|
-
--system-checkbox-size-s-top-to-text: var(
|
|
2246
|
-
--spectrum-component-top-to-text-75
|
|
2247
|
-
);
|
|
2248
|
-
--system-checkbox-size-s-text-to-control: var(
|
|
2249
|
-
--spectrum-text-to-control-75
|
|
2250
|
-
);
|
|
2251
2176
|
--system-checkbox-size-l-font-size: var(--spectrum-font-size-200);
|
|
2252
2177
|
--system-checkbox-size-l-height: var(--spectrum-component-height-200);
|
|
2253
2178
|
--system-checkbox-size-l-control-size: var(
|
|
@@ -2270,10 +2195,6 @@
|
|
|
2270
2195
|
--system-checkbox-size-xl-text-to-control: var(
|
|
2271
2196
|
--spectrum-text-to-control-300
|
|
2272
2197
|
);
|
|
2273
|
-
}
|
|
2274
|
-
|
|
2275
|
-
:host,
|
|
2276
|
-
:root {
|
|
2277
2198
|
--system-card-background-color: var(--spectrum-background-layer-2-color);
|
|
2278
2199
|
--system-card-body-spacing: var(--spectrum-spacing-400);
|
|
2279
2200
|
--system-card-title-padding-top: var(--spectrum-spacing-300);
|
|
@@ -2330,14 +2251,12 @@
|
|
|
2330
2251
|
--system-card-content-margin-top-quiet: var(--spectrum-spacing-100);
|
|
2331
2252
|
--system-card-minimum-width-quiet: var(--spectrum-card-minimum-width);
|
|
2332
2253
|
--system-card-background-color-quiet: var(--spectrum-background-base-color);
|
|
2333
|
-
}
|
|
2334
|
-
|
|
2335
|
-
:host,
|
|
2336
|
-
:root {
|
|
2337
2254
|
--system-clear-button-background-color: transparent;
|
|
2338
2255
|
--system-clear-button-background-color-hover: transparent;
|
|
2339
2256
|
--system-clear-button-background-color-down: transparent;
|
|
2340
2257
|
--system-clear-button-background-color-key-focus: transparent;
|
|
2258
|
+
--system-clear-button-height: var(--spectrum-component-height-100);
|
|
2259
|
+
--system-clear-button-width: var(--spectrum-component-height-100);
|
|
2341
2260
|
--system-clear-button-padding: var(--spectrum-in-field-button-edge-to-fill);
|
|
2342
2261
|
--system-clear-button-icon-color: var(
|
|
2343
2262
|
--spectrum-neutral-content-color-default
|
|
@@ -2351,54 +2270,72 @@
|
|
|
2351
2270
|
--system-clear-button-icon-color-key-focus: var(
|
|
2352
2271
|
--spectrum-neutral-content-color-key-focus
|
|
2353
2272
|
);
|
|
2354
|
-
--system-clear-button-height: var(--spectrum-component-height-100);
|
|
2355
|
-
--system-clear-button-size-m-height: var(--spectrum-component-height-100);
|
|
2356
|
-
--system-clear-button-width: var(--spectrum-component-height-100);
|
|
2357
|
-
--system-clear-button-size-m-width: var(--spectrum-component-height-100);
|
|
2358
2273
|
--system-clear-button-size-s-height: var(--spectrum-component-height-75);
|
|
2359
2274
|
--system-clear-button-size-s-width: var(--spectrum-component-height-75);
|
|
2360
2275
|
--system-clear-button-size-l-height: var(--spectrum-component-height-200);
|
|
2361
2276
|
--system-clear-button-size-l-width: var(--spectrum-component-height-200);
|
|
2362
2277
|
--system-clear-button-size-xl-height: var(--spectrum-component-height-300);
|
|
2363
2278
|
--system-clear-button-size-xl-width: var(--spectrum-component-height-300);
|
|
2364
|
-
--system-clear-button-quiet-background-color:
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
--system-clear-button-
|
|
2279
|
+
--system-clear-button-quiet-background-color: var(
|
|
2280
|
+
--spectrum-clear-button-background-color-quiet,
|
|
2281
|
+
transparent
|
|
2282
|
+
);
|
|
2283
|
+
--system-clear-button-quiet-background-color-hover: var(
|
|
2284
|
+
--spectrum-clear-button-background-color-hover-quiet,
|
|
2285
|
+
transparent
|
|
2286
|
+
);
|
|
2287
|
+
--system-clear-button-quiet-background-color-down: var(
|
|
2288
|
+
--spectrum-clear-button-background-color-down-quiet,
|
|
2289
|
+
transparent
|
|
2290
|
+
);
|
|
2291
|
+
--system-clear-button-quiet-background-color-key-focus: var(
|
|
2292
|
+
--spectrum-clear-button-background-color-key-focus-quiet,
|
|
2293
|
+
transparent
|
|
2294
|
+
);
|
|
2295
|
+
--system-clear-button-over-background-icon-color: var(
|
|
2296
|
+
--spectrum-clear-button-icon-color-over-background,
|
|
2297
|
+
var(--spectrum-white)
|
|
2298
|
+
);
|
|
2369
2299
|
--system-clear-button-over-background-icon-color-hover: var(
|
|
2370
|
-
--spectrum-
|
|
2300
|
+
--spectrum-clear-button-icon-color-hover-over-background,
|
|
2301
|
+
var(--spectrum-white)
|
|
2371
2302
|
);
|
|
2372
2303
|
--system-clear-button-over-background-icon-color-down: var(
|
|
2373
|
-
--spectrum-
|
|
2304
|
+
--spectrum-clear-button-icon-color-down-over-background,
|
|
2305
|
+
var(--spectrum-white)
|
|
2374
2306
|
);
|
|
2375
2307
|
--system-clear-button-over-background-icon-color-key-focus: var(
|
|
2376
|
-
--spectrum-
|
|
2308
|
+
--spectrum-clear-button-icon-color-key-focus-over-background,
|
|
2309
|
+
var(--spectrum-white)
|
|
2310
|
+
);
|
|
2311
|
+
--system-clear-button-over-background-background-color: var(
|
|
2312
|
+
--spectrum-clear-button-background-color-over-background,
|
|
2313
|
+
transparent
|
|
2377
2314
|
);
|
|
2378
|
-
--system-clear-button-over-background-background-color: transparent;
|
|
2379
2315
|
--system-clear-button-over-background-background-color-hover: var(
|
|
2380
|
-
--spectrum-
|
|
2316
|
+
--spectrum-clear-button-background-color-hover-over-background,
|
|
2317
|
+
var(--spectrum-transparent-white-400)
|
|
2381
2318
|
);
|
|
2382
2319
|
--system-clear-button-over-background-background-color-down: var(
|
|
2383
|
-
--spectrum-
|
|
2320
|
+
--spectrum-clear-button-background-color-hover-over-background,
|
|
2321
|
+
var(--spectrum-transparent-white-500)
|
|
2384
2322
|
);
|
|
2385
2323
|
--system-clear-button-over-background-background-color-key-focus: var(
|
|
2386
|
-
--spectrum-
|
|
2324
|
+
--spectrum-clear-button-background-color-hover-over-background,
|
|
2325
|
+
var(--spectrum-transparent-white-400)
|
|
2387
2326
|
);
|
|
2388
2327
|
--system-clear-button-disabled-icon-color: var(
|
|
2389
2328
|
--spectrum-disabled-content-color
|
|
2390
2329
|
);
|
|
2391
2330
|
--system-clear-button-disabled-icon-color-hover: var(
|
|
2392
|
-
--spectrum-
|
|
2331
|
+
--spectrum-clear-button-icon-color-hover-disabled,
|
|
2332
|
+
var(--spectrum-disabled-content-color)
|
|
2393
2333
|
);
|
|
2394
2334
|
--system-clear-button-disabled-icon-color-down: var(
|
|
2395
|
-
--spectrum-
|
|
2335
|
+
--spectrum-clear-button-icon-color-down-disabled,
|
|
2336
|
+
var(--spectrum-disabled-content-color)
|
|
2396
2337
|
);
|
|
2397
2338
|
--system-clear-button-disabled-background-color: transparent;
|
|
2398
|
-
}
|
|
2399
|
-
|
|
2400
|
-
:host,
|
|
2401
|
-
:root {
|
|
2402
2339
|
--system-close-button-background-color-default: transparent;
|
|
2403
2340
|
--system-close-button-background-color-hover: var(--spectrum-gray-100);
|
|
2404
2341
|
--system-close-button-background-color-down: var(--spectrum-gray-200);
|
|
@@ -2468,15 +2405,11 @@
|
|
|
2468
2405
|
--system-close-button-static-black-focus-indicator-color: var(
|
|
2469
2406
|
--spectrum-static-black-focus-indicator-color
|
|
2470
2407
|
);
|
|
2408
|
+
--system-close-button-size-s-size: var(--spectrum-component-height-75);
|
|
2471
2409
|
--system-close-button-size: var(--spectrum-component-height-100);
|
|
2472
2410
|
--system-close-button-size-m-size: var(--spectrum-component-height-100);
|
|
2473
|
-
--system-close-button-size-s-size: var(--spectrum-component-height-75);
|
|
2474
2411
|
--system-close-button-size-l-size: var(--spectrum-component-height-200);
|
|
2475
2412
|
--system-close-button-size-xl-size: var(--spectrum-component-height-300);
|
|
2476
|
-
}
|
|
2477
|
-
|
|
2478
|
-
:host,
|
|
2479
|
-
:root {
|
|
2480
2413
|
--system-coach-indicator-ring-border-size: var(--spectrum-border-width-200);
|
|
2481
2414
|
--system-coach-indicator-min-inline-size: calc(
|
|
2482
2415
|
var(--spectrum-coach-indicator-ring-diameter) * 3
|
|
@@ -2528,10 +2461,6 @@
|
|
|
2528
2461
|
--spectrum-coach-indicator-quiet-ring-diameter
|
|
2529
2462
|
);
|
|
2530
2463
|
--system-coach-indicator-quiet-animation-name: pulse-quiet;
|
|
2531
|
-
}
|
|
2532
|
-
|
|
2533
|
-
:host,
|
|
2534
|
-
:root {
|
|
2535
2464
|
--system-coach-mark-min-width: var(--spectrum-coach-mark-minimum-width);
|
|
2536
2465
|
--system-coach-mark-width: var(--spectrum-coach-mark-width);
|
|
2537
2466
|
--system-coach-mark-max-width: var(--spectrum-coach-mark-maximum-width);
|
|
@@ -2567,7 +2496,7 @@
|
|
|
2567
2496
|
--system-coach-mark-content-font-size: var(--spectrum-coach-mark-body-size);
|
|
2568
2497
|
--system-coach-mark-step-color: var(--spectrum-coach-mark-pagination-color);
|
|
2569
2498
|
--system-coach-mark-step-font-weight: var(
|
|
2570
|
-
--spectrum-body-
|
|
2499
|
+
--spectrum-body-medium-font-weight
|
|
2571
2500
|
);
|
|
2572
2501
|
--system-coach-mark-step-font-family: var(--spectrum-sans-serif-font);
|
|
2573
2502
|
--system-coach-mark-step-font-style: var(
|
|
@@ -2587,10 +2516,6 @@
|
|
|
2587
2516
|
--system-coach-mark-buttongroup-spacing-horizontal: var(
|
|
2588
2517
|
--spectrum-spacing-100
|
|
2589
2518
|
);
|
|
2590
|
-
}
|
|
2591
|
-
|
|
2592
|
-
:host,
|
|
2593
|
-
:root {
|
|
2594
2519
|
--system-color-area-border-radius: var(
|
|
2595
2520
|
--spectrum-color-area-border-rounding
|
|
2596
2521
|
);
|
|
@@ -2608,10 +2533,6 @@
|
|
|
2608
2533
|
--system-color-area-width: var(--spectrum-color-area-width);
|
|
2609
2534
|
--system-color-area-min-width: var(--spectrum-color-area-minimum-width);
|
|
2610
2535
|
--system-color-area-min-height: var(--spectrum-color-area-minimum-height);
|
|
2611
|
-
}
|
|
2612
|
-
|
|
2613
|
-
:host,
|
|
2614
|
-
:root {
|
|
2615
2536
|
--system-color-handle-size: var(--spectrum-color-handle-size);
|
|
2616
2537
|
--system-color-handle-focused-size: var(
|
|
2617
2538
|
--spectrum-color-handle-size-key-focus
|
|
@@ -2647,10 +2568,6 @@
|
|
|
2647
2568
|
--system-color-handle-fill-color-disabled: var(
|
|
2648
2569
|
--spectrum-disabled-background-color
|
|
2649
2570
|
);
|
|
2650
|
-
}
|
|
2651
|
-
|
|
2652
|
-
:host,
|
|
2653
|
-
:root {
|
|
2654
2571
|
--system-color-loupe-width: var(--spectrum-color-loupe-width);
|
|
2655
2572
|
--system-color-loupe-height: var(--spectrum-color-loupe-height);
|
|
2656
2573
|
--system-color-loupe-offset: var(
|
|
@@ -2685,10 +2602,6 @@
|
|
|
2685
2602
|
--system-color-loupe-checkerboard-light-color: var(
|
|
2686
2603
|
--spectrum-opacity-checkerboard-square-light
|
|
2687
2604
|
);
|
|
2688
|
-
}
|
|
2689
|
-
|
|
2690
|
-
:host,
|
|
2691
|
-
:root {
|
|
2692
2605
|
--system-color-slider-handle-margin-block: var(
|
|
2693
2606
|
--spectrum-component-top-to-text-75
|
|
2694
2607
|
);
|
|
@@ -2705,10 +2618,6 @@
|
|
|
2705
2618
|
--system-color-slider-checkerboard-light-color: var(
|
|
2706
2619
|
--spectrum-opacity-checkerboard-square-light
|
|
2707
2620
|
);
|
|
2708
|
-
}
|
|
2709
|
-
|
|
2710
|
-
:host,
|
|
2711
|
-
:root {
|
|
2712
2621
|
--system-color-wheel-width: var(--spectrum-color-wheel-width);
|
|
2713
2622
|
--system-color-wheel-min-width: var(--spectrum-color-wheel-minimum-width);
|
|
2714
2623
|
--system-color-wheel-height: var(--spectrum-color-wheel-width);
|
|
@@ -2725,10 +2634,6 @@
|
|
|
2725
2634
|
var(--system-color-wheel-width) / 2 -
|
|
2726
2635
|
var(--system-color-wheel-track-width) / 2
|
|
2727
2636
|
);
|
|
2728
|
-
}
|
|
2729
|
-
|
|
2730
|
-
:host,
|
|
2731
|
-
:root {
|
|
2732
2637
|
--system-combobox-border-color-default: var(--spectrum-gray-500);
|
|
2733
2638
|
--system-combobox-border-color-hover: var(--spectrum-gray-600);
|
|
2734
2639
|
--system-combobox-border-color-focus: var(--spectrum-gray-500);
|
|
@@ -2767,6 +2672,33 @@
|
|
|
2767
2672
|
--system-combobox-border-color-invalid-key-focus: var(
|
|
2768
2673
|
--spectrum-negative-border-color-key-focus
|
|
2769
2674
|
);
|
|
2675
|
+
--system-combobox-size-s-block-size: var(--spectrum-component-height-75);
|
|
2676
|
+
--system-combobox-size-s-icon-size: var(--spectrum-workflow-icon-size-75);
|
|
2677
|
+
--system-combobox-size-s-font-size: var(--spectrum-font-size-75);
|
|
2678
|
+
--system-combobox-size-s-spacing-inline-icon-to-button: var(
|
|
2679
|
+
--spectrum-combo-box-visual-to-field-button-small
|
|
2680
|
+
);
|
|
2681
|
+
--system-combobox-size-s-block-spacing-edge-to-progress-circle: var(
|
|
2682
|
+
--spectrum-field-top-to-progress-circle-small
|
|
2683
|
+
);
|
|
2684
|
+
--system-combobox-size-s-block-spacing-edge-to-alert: var(
|
|
2685
|
+
--spectrum-field-top-to-alert-icon-small
|
|
2686
|
+
);
|
|
2687
|
+
--system-combobox-size-s-spacing-edge-to-menu: var(
|
|
2688
|
+
--spectrum-component-to-menu-small
|
|
2689
|
+
);
|
|
2690
|
+
--system-combobox-size-s-spacing-block-start-edge-to-text: var(
|
|
2691
|
+
--spectrum-component-top-to-text-75
|
|
2692
|
+
);
|
|
2693
|
+
--system-combobox-size-s-spacing-block-end-edge-to-text: var(
|
|
2694
|
+
--spectrum-component-bottom-to-text-75
|
|
2695
|
+
);
|
|
2696
|
+
--system-combobox-size-s-spacing-inline-start-edge-to-text: var(
|
|
2697
|
+
--spectrum-component-edge-to-text-75
|
|
2698
|
+
);
|
|
2699
|
+
--system-combobox-size-s-spacing-inline-end-edge-to-text: var(
|
|
2700
|
+
--spectrum-component-edge-to-text-75
|
|
2701
|
+
);
|
|
2770
2702
|
--system-combobox-block-size: var(--spectrum-component-height-100);
|
|
2771
2703
|
--system-combobox-size-m-block-size: var(--spectrum-component-height-100);
|
|
2772
2704
|
--system-combobox-icon-size: var(--spectrum-workflow-icon-size-100);
|
|
@@ -2821,33 +2753,6 @@
|
|
|
2821
2753
|
--system-combobox-size-m-spacing-inline-end-edge-to-text: var(
|
|
2822
2754
|
--spectrum-component-edge-to-text-100
|
|
2823
2755
|
);
|
|
2824
|
-
--system-combobox-size-s-block-size: var(--spectrum-component-height-75);
|
|
2825
|
-
--system-combobox-size-s-icon-size: var(--spectrum-workflow-icon-size-75);
|
|
2826
|
-
--system-combobox-size-s-font-size: var(--spectrum-font-size-75);
|
|
2827
|
-
--system-combobox-size-s-spacing-inline-icon-to-button: var(
|
|
2828
|
-
--spectrum-combo-box-visual-to-field-button-small
|
|
2829
|
-
);
|
|
2830
|
-
--system-combobox-size-s-block-spacing-edge-to-progress-circle: var(
|
|
2831
|
-
--spectrum-field-top-to-progress-circle-small
|
|
2832
|
-
);
|
|
2833
|
-
--system-combobox-size-s-block-spacing-edge-to-alert: var(
|
|
2834
|
-
--spectrum-field-top-to-alert-icon-small
|
|
2835
|
-
);
|
|
2836
|
-
--system-combobox-size-s-spacing-edge-to-menu: var(
|
|
2837
|
-
--spectrum-component-to-menu-small
|
|
2838
|
-
);
|
|
2839
|
-
--system-combobox-size-s-spacing-block-start-edge-to-text: var(
|
|
2840
|
-
--spectrum-component-top-to-text-75
|
|
2841
|
-
);
|
|
2842
|
-
--system-combobox-size-s-spacing-block-end-edge-to-text: var(
|
|
2843
|
-
--spectrum-component-bottom-to-text-75
|
|
2844
|
-
);
|
|
2845
|
-
--system-combobox-size-s-spacing-inline-start-edge-to-text: var(
|
|
2846
|
-
--spectrum-component-edge-to-text-75
|
|
2847
|
-
);
|
|
2848
|
-
--system-combobox-size-s-spacing-inline-end-edge-to-text: var(
|
|
2849
|
-
--spectrum-component-edge-to-text-75
|
|
2850
|
-
);
|
|
2851
2756
|
--system-combobox-size-l-block-size: var(--spectrum-component-height-200);
|
|
2852
2757
|
--system-combobox-size-l-icon-size: var(--spectrum-workflow-icon-size-200);
|
|
2853
2758
|
--system-combobox-size-l-font-size: var(--spectrum-font-size-200);
|
|
@@ -2911,25 +2816,21 @@
|
|
|
2911
2816
|
--system-combobox-quiet-spacing-inline-start-edge-to-text: var(
|
|
2912
2817
|
--spectrum-field-edge-to-text-quiet
|
|
2913
2818
|
);
|
|
2819
|
+
--system-combobox-quiet-size-s-spacing-label-to: var(
|
|
2820
|
+
--spectrum-field-label-to-component-quiet-small
|
|
2821
|
+
);
|
|
2914
2822
|
--system-combobox-quiet-spacing-label-to: var(
|
|
2915
2823
|
--spectrum-field-label-to-component-quiet-medium
|
|
2916
2824
|
);
|
|
2917
2825
|
--system-combobox-quiet-size-m-spacing-label-to: var(
|
|
2918
2826
|
--spectrum-field-label-to-component-quiet-medium
|
|
2919
2827
|
);
|
|
2920
|
-
--system-combobox-quiet-size-s-spacing-label-to: var(
|
|
2921
|
-
--spectrum-field-label-to-component-quiet-small
|
|
2922
|
-
);
|
|
2923
2828
|
--system-combobox-quiet-size-l-spacing-label-to: var(
|
|
2924
2829
|
--spectrum-field-label-to-component-quiet-large
|
|
2925
2830
|
);
|
|
2926
2831
|
--system-combobox-quiet-size-xl-spacing-label-to: var(
|
|
2927
2832
|
--spectrum-field-label-to-component-quiet-extra-large
|
|
2928
2833
|
);
|
|
2929
|
-
}
|
|
2930
|
-
|
|
2931
|
-
:host,
|
|
2932
|
-
:root {
|
|
2933
2834
|
--system-contextual-help-padding: var(--spectrum-spacing-400);
|
|
2934
2835
|
--system-contextual-help-content-spacing: var(--spectrum-spacing-100);
|
|
2935
2836
|
--system-contextual-help-link-spacing: var(--spectrum-spacing-300);
|
|
@@ -2938,10 +2839,6 @@
|
|
|
2938
2839
|
);
|
|
2939
2840
|
--system-contextual-help-heading-color: var(--spectrum-heading-color);
|
|
2940
2841
|
--system-contextual-help-body-color: var(--spectrum-body-color);
|
|
2941
|
-
}
|
|
2942
|
-
|
|
2943
|
-
:host,
|
|
2944
|
-
:root {
|
|
2945
2842
|
--system-dialog-fullscreen-header-text-size: 28px;
|
|
2946
2843
|
--system-dialog-min-inline-size: 288px;
|
|
2947
2844
|
--system-dialog-confirm-small-width: 400px;
|
|
@@ -2982,10 +2879,6 @@
|
|
|
2982
2879
|
26px - var(--spectrum-component-bottom-to-text-300)
|
|
2983
2880
|
);
|
|
2984
2881
|
--system-dialog-confirm-divider-height: var(--spectrum-spacing-50);
|
|
2985
|
-
}
|
|
2986
|
-
|
|
2987
|
-
:host,
|
|
2988
|
-
:root {
|
|
2989
2882
|
--system-divider-background-color-small: var(--spectrum-gray-200);
|
|
2990
2883
|
--system-divider-background-color-medium: var(--spectrum-gray-200);
|
|
2991
2884
|
--system-divider-background-color-large: var(--spectrum-gray-800);
|
|
@@ -3007,10 +2900,6 @@
|
|
|
3007
2900
|
--system-divider-background-color-large-static-black: var(
|
|
3008
2901
|
--spectrum-transparent-black-900
|
|
3009
2902
|
);
|
|
3010
|
-
}
|
|
3011
|
-
|
|
3012
|
-
:host,
|
|
3013
|
-
:root {
|
|
3014
2903
|
--system-drop-zone-padding: var(--spectrum-spacing-400);
|
|
3015
2904
|
--system-drop-zone-illustration-to-heading: var(--spectrum-spacing-400);
|
|
3016
2905
|
--system-drop-zone-heading-to-body: var(--spectrum-spacing-75);
|
|
@@ -3074,16 +2963,8 @@
|
|
|
3074
2963
|
--system-drop-zone-heading-font-size-cjk: var(
|
|
3075
2964
|
--spectrum-drop-zone-cjk-title-size
|
|
3076
2965
|
);
|
|
3077
|
-
}
|
|
3078
|
-
|
|
3079
|
-
:host,
|
|
3080
|
-
:root {
|
|
3081
2966
|
--system-field-group-margin: var(--spectrum-spacing-300);
|
|
3082
|
-
--system-field-group-readonly-delimiter: '
|
|
3083
|
-
}
|
|
3084
|
-
|
|
3085
|
-
:host,
|
|
3086
|
-
:root {
|
|
2967
|
+
--system-field-group-readonly-delimiter: ',';
|
|
3087
2968
|
--system-field-label-color: var(
|
|
3088
2969
|
--spectrum-neutral-subdued-content-color-default
|
|
3089
2970
|
);
|
|
@@ -3172,10 +3053,6 @@
|
|
|
3172
3053
|
--system-field-label-size-xl-text-to-asterisk: var(
|
|
3173
3054
|
--spectrum-field-label-text-to-asterisk-extra-large
|
|
3174
3055
|
);
|
|
3175
|
-
}
|
|
3176
|
-
|
|
3177
|
-
:host,
|
|
3178
|
-
:root {
|
|
3179
3056
|
--system-help-text-line-height: var(--spectrum-line-height-100);
|
|
3180
3057
|
--system-help-text-content-color-default: var(
|
|
3181
3058
|
--spectrum-neutral-subdued-content-color-default
|
|
@@ -3213,30 +3090,6 @@
|
|
|
3213
3090
|
--system-help-text-lang-ko-line-height-cjk: var(
|
|
3214
3091
|
--spectrum-cjk-line-height-100
|
|
3215
3092
|
);
|
|
3216
|
-
--system-help-text-min-height: var(--spectrum-component-height-75);
|
|
3217
|
-
--system-help-text-size-m-min-height: var(--spectrum-component-height-75);
|
|
3218
|
-
--system-help-text-icon-size: var(--spectrum-workflow-icon-size-100);
|
|
3219
|
-
--system-help-text-size-m-icon-size: var(--spectrum-workflow-icon-size-100);
|
|
3220
|
-
--system-help-text-font-size: var(--spectrum-font-size-75);
|
|
3221
|
-
--system-help-text-size-m-font-size: var(--spectrum-font-size-75);
|
|
3222
|
-
--system-help-text-text-to-visual: var(--spectrum-text-to-visual-75);
|
|
3223
|
-
--system-help-text-size-m-text-to-visual: var(--spectrum-text-to-visual-75);
|
|
3224
|
-
--system-help-text-top-to-workflow-icon: var(
|
|
3225
|
-
--spectrum-help-text-top-to-workflow-icon-medium
|
|
3226
|
-
);
|
|
3227
|
-
--system-help-text-size-m-top-to-workflow-icon: var(
|
|
3228
|
-
--spectrum-help-text-top-to-workflow-icon-medium
|
|
3229
|
-
);
|
|
3230
|
-
--system-help-text-top-to-text: var(--spectrum-component-top-to-text-75);
|
|
3231
|
-
--system-help-text-size-m-top-to-text: var(
|
|
3232
|
-
--spectrum-component-top-to-text-75
|
|
3233
|
-
);
|
|
3234
|
-
--system-help-text-bottom-to-text: var(
|
|
3235
|
-
--spectrum-component-bottom-to-text-75
|
|
3236
|
-
);
|
|
3237
|
-
--system-help-text-size-m-bottom-to-text: var(
|
|
3238
|
-
--spectrum-component-bottom-to-text-75
|
|
3239
|
-
);
|
|
3240
3093
|
--system-help-text-size-s-min-height: var(--spectrum-component-height-75);
|
|
3241
3094
|
--system-help-text-size-s-icon-size: var(--spectrum-workflow-icon-size-75);
|
|
3242
3095
|
--system-help-text-size-s-font-size: var(--spectrum-font-size-75);
|
|
@@ -3250,6 +3103,19 @@
|
|
|
3250
3103
|
--system-help-text-size-s-bottom-to-text: var(
|
|
3251
3104
|
--spectrum-component-bottom-to-text-75
|
|
3252
3105
|
);
|
|
3106
|
+
--system-help-text-size-m-min-height: var(--spectrum-component-height-75);
|
|
3107
|
+
--system-help-text-size-m-icon-size: var(--spectrum-workflow-icon-size-100);
|
|
3108
|
+
--system-help-text-size-m-font-size: var(--spectrum-font-size-75);
|
|
3109
|
+
--system-help-text-size-m-text-to-visual: var(--spectrum-text-to-visual-75);
|
|
3110
|
+
--system-help-text-size-m-top-to-workflow-icon: var(
|
|
3111
|
+
--spectrum-help-text-top-to-workflow-icon-medium
|
|
3112
|
+
);
|
|
3113
|
+
--system-help-text-size-m-top-to-text: var(
|
|
3114
|
+
--spectrum-component-top-to-text-75
|
|
3115
|
+
);
|
|
3116
|
+
--system-help-text-size-m-bottom-to-text: var(
|
|
3117
|
+
--spectrum-component-bottom-to-text-75
|
|
3118
|
+
);
|
|
3253
3119
|
--system-help-text-size-l-min-height: var(--spectrum-component-height-100);
|
|
3254
3120
|
--system-help-text-size-l-icon-size: var(--spectrum-workflow-icon-size-200);
|
|
3255
3121
|
--system-help-text-size-l-font-size: var(--spectrum-font-size-100);
|
|
@@ -3282,10 +3148,6 @@
|
|
|
3282
3148
|
--system-help-text-size-xl-bottom-to-text: var(
|
|
3283
3149
|
--spectrum-component-bottom-to-text-200
|
|
3284
3150
|
);
|
|
3285
|
-
}
|
|
3286
|
-
|
|
3287
|
-
:host,
|
|
3288
|
-
:root {
|
|
3289
3151
|
--system-illustrated-message-description-max-inline-size: var(
|
|
3290
3152
|
--spectrum-illustrated-message-maximum-width
|
|
3291
3153
|
);
|
|
@@ -3343,10 +3205,6 @@
|
|
|
3343
3205
|
--system-illustrated-message-lang-ko-title-font-size: var(
|
|
3344
3206
|
--spectrum-illustrated-message-cjk-title-size
|
|
3345
3207
|
);
|
|
3346
|
-
}
|
|
3347
|
-
|
|
3348
|
-
:host,
|
|
3349
|
-
:root {
|
|
3350
3208
|
--system-icon-size-xxs: var(--spectrum-workflow-icon-size-xxs);
|
|
3351
3209
|
--system-icon-size-xs: var(--spectrum-workflow-icon-size-50);
|
|
3352
3210
|
--system-icon-size-s: var(--spectrum-workflow-icon-size-75);
|
|
@@ -3583,10 +3441,6 @@
|
|
|
3583
3441
|
--system-ui-icon-asterisk-300-icon-size: var(
|
|
3584
3442
|
--spectrum-asterisk-icon-size-300
|
|
3585
3443
|
);
|
|
3586
|
-
}
|
|
3587
|
-
|
|
3588
|
-
:host,
|
|
3589
|
-
:root {
|
|
3590
3444
|
--system-infield-button-border-width: var(--spectrum-border-width-100);
|
|
3591
3445
|
--system-infield-button-border-color: inherit;
|
|
3592
3446
|
--system-infield-button-border-radius: var(--spectrum-corner-radius-100);
|
|
@@ -3624,6 +3478,9 @@
|
|
|
3624
3478
|
--system-infield-button-stacked-fill-padding-inner: var(
|
|
3625
3479
|
--spectrum-in-field-button-inner-edge-to-disclosure-icon-stacked-medium
|
|
3626
3480
|
);
|
|
3481
|
+
--system-infield-button-animation-duration: var(
|
|
3482
|
+
--spectrum-animation-duration-100
|
|
3483
|
+
);
|
|
3627
3484
|
--system-infield-button-icon-color: var(
|
|
3628
3485
|
--spectrum-neutral-content-color-default
|
|
3629
3486
|
);
|
|
@@ -3728,10 +3585,6 @@
|
|
|
3728
3585
|
--system-infield-button-quiet-border-width: 0;
|
|
3729
3586
|
--system-infield-button-quiet-disabled-background-color: transparent;
|
|
3730
3587
|
--system-infield-button-quiet-disabled-border-color: transparent;
|
|
3731
|
-
}
|
|
3732
|
-
|
|
3733
|
-
:host,
|
|
3734
|
-
:root {
|
|
3735
3588
|
--system-link-animation-duration: var(--spectrum-animation-duration-100);
|
|
3736
3589
|
--system-link-text-color-primary-default: var(
|
|
3737
3590
|
--spectrum-accent-content-color-default
|
|
@@ -3759,10 +3612,6 @@
|
|
|
3759
3612
|
);
|
|
3760
3613
|
--system-link-text-color-white: var(--spectrum-white);
|
|
3761
3614
|
--system-link-text-color-black: var(--spectrum-black);
|
|
3762
|
-
}
|
|
3763
|
-
|
|
3764
|
-
:host,
|
|
3765
|
-
:root {
|
|
3766
3615
|
--system-menu-item-top-to-action: var(--spectrum-spacing-50);
|
|
3767
3616
|
--system-menu-item-top-to-checkbox: var(--spectrum-spacing-50);
|
|
3768
3617
|
--system-menu-item-label-line-height: var(--spectrum-line-height-100);
|
|
@@ -4104,15 +3953,17 @@
|
|
|
4104
3953
|
--system-menu-size-xl-back-icon-margin: var(
|
|
4105
3954
|
--spectrum-navigational-indicator-top-to-back-icon-extra-large
|
|
4106
3955
|
);
|
|
4107
|
-
}
|
|
4108
|
-
|
|
4109
|
-
:host,
|
|
4110
|
-
:root {
|
|
4111
3956
|
--system-meter-min-width: var(--spectrum-meter-minimum-width);
|
|
4112
3957
|
--system-meter-max-width: var(--spectrum-meter-maximum-width);
|
|
3958
|
+
--system-meter-inline-size: var(--spectrum-meter-width);
|
|
3959
|
+
--system-meter-top-to-text: var(--spectrum-component-top-to-text);
|
|
4113
3960
|
--system-meter-fill-color-positive: var(--spectrum-positive-visual-color);
|
|
4114
3961
|
--system-meter-fill-color-notice: var(--spectrum-notice-visual-color);
|
|
4115
3962
|
--system-meter-fill-color-negative: var(--spectrum-negative-visual-color);
|
|
3963
|
+
--system-meter-size-s-thickness: var(--spectrum-meter-thickness-small);
|
|
3964
|
+
--system-meter-size-s-inline-size: var(--spectrum-progressbar-size-2400);
|
|
3965
|
+
--system-meter-size-s-font-size: var(--spectrum-font-size-75);
|
|
3966
|
+
--system-meter-size-s-top-to-text: var(--spectrum-component-top-to-text-75);
|
|
4116
3967
|
--system-meter-thickness: var(--spectrum-meter-thickness-large);
|
|
4117
3968
|
--system-meter-size-l-thickness: var(--spectrum-meter-thickness-large);
|
|
4118
3969
|
--system-meter-inline-size: var(--spectrum-progressbar-size-2500);
|
|
@@ -4123,20 +3974,9 @@
|
|
|
4123
3974
|
--system-meter-size-l-top-to-text: var(
|
|
4124
3975
|
--spectrum-component-top-to-text-200
|
|
4125
3976
|
);
|
|
4126
|
-
--system-meter-size-s-thickness: var(--spectrum-meter-thickness-small);
|
|
4127
|
-
--system-meter-size-s-inline-size: var(--spectrum-progressbar-size-2400);
|
|
4128
|
-
--system-meter-size-s-font-size: var(--spectrum-font-size-75);
|
|
4129
|
-
--system-meter-size-s-top-to-text: var(--spectrum-component-top-to-text-75);
|
|
4130
|
-
}
|
|
4131
|
-
|
|
4132
|
-
:host,
|
|
4133
|
-
:root {
|
|
4134
3977
|
--system-modal-confirm-exit-animation-delay: var(
|
|
4135
3978
|
--spectrum-animation-duration-0
|
|
4136
3979
|
);
|
|
4137
|
-
--system-modal-confirm-entry-animation-distance: var(
|
|
4138
|
-
--spectrum-dialog-confirm-entry-animation-distance
|
|
4139
|
-
);
|
|
4140
3980
|
--system-modal-fullscreen-margin: 32px;
|
|
4141
3981
|
--system-modal-max-height: 90vh;
|
|
4142
3982
|
--system-modal-max-width: 90%;
|
|
@@ -4154,10 +3994,6 @@
|
|
|
4154
3994
|
--system-modal-transition-animation-duration: var(
|
|
4155
3995
|
--spectrum-animation-duration-100
|
|
4156
3996
|
);
|
|
4157
|
-
}
|
|
4158
|
-
|
|
4159
|
-
:host,
|
|
4160
|
-
:root {
|
|
4161
3997
|
--system-picker-background-color-default: var(--spectrum-gray-50);
|
|
4162
3998
|
--system-picker-background-color-default-open: var(--spectrum-gray-100);
|
|
4163
3999
|
--system-picker-background-color-active: var(--spectrum-gray-200);
|
|
@@ -4401,10 +4237,6 @@
|
|
|
4401
4237
|
--system-picker-size-xl-next-to-popover-bottom-open-spacing-to-popover: var(
|
|
4402
4238
|
--spectrum-component-to-menu-extra-large
|
|
4403
4239
|
);
|
|
4404
|
-
}
|
|
4405
|
-
|
|
4406
|
-
:host,
|
|
4407
|
-
:root {
|
|
4408
4240
|
--system-picker-button-background-color: var(--spectrum-gray-50);
|
|
4409
4241
|
--system-picker-button-background-color-hover: var(--spectrum-gray-100);
|
|
4410
4242
|
--system-picker-button-background-color-down: var(--spectrum-gray-200);
|
|
@@ -4515,10 +4347,6 @@
|
|
|
4515
4347
|
--system-picker-button-size-xl-fill-padding: var(
|
|
4516
4348
|
--spectrum-field-edge-to-disclosure-icon-300
|
|
4517
4349
|
);
|
|
4518
|
-
}
|
|
4519
|
-
|
|
4520
|
-
:host,
|
|
4521
|
-
:root {
|
|
4522
4350
|
--system-popover-border-width: var(--spectrum-border-width-100);
|
|
4523
4351
|
--system-popover-animation-distance: var(--spectrum-spacing-100);
|
|
4524
4352
|
--system-popover-background-color: var(--spectrum-background-layer-2-color);
|
|
@@ -4541,10 +4369,6 @@
|
|
|
4541
4369
|
var(--system-popover-pointer-edge-offset) -
|
|
4542
4370
|
var(--spectrum-popover-tip-width) / 2
|
|
4543
4371
|
);
|
|
4544
|
-
}
|
|
4545
|
-
|
|
4546
|
-
:host,
|
|
4547
|
-
:root {
|
|
4548
4372
|
--system-progress-bar-animation-ease-in-out-indeterminate: var(
|
|
4549
4373
|
--spectrum-animation-ease-in-out
|
|
4550
4374
|
);
|
|
@@ -4620,10 +4444,6 @@
|
|
|
4620
4444
|
--system-progress-bar-size-xl-spacing-top-to-text: var(
|
|
4621
4445
|
--spectrum-component-top-to-text-300
|
|
4622
4446
|
);
|
|
4623
|
-
}
|
|
4624
|
-
|
|
4625
|
-
:host,
|
|
4626
|
-
:root {
|
|
4627
4447
|
--system-progress-circle-track-border-color: var(--spectrum-gray-200);
|
|
4628
4448
|
--system-progress-circle-fill-border-color: var(
|
|
4629
4449
|
--spectrum-accent-content-color-default
|
|
@@ -4657,10 +4477,6 @@
|
|
|
4657
4477
|
--system-progress-circle-large-thickness: var(
|
|
4658
4478
|
--spectrum-progress-circle-thickness-large
|
|
4659
4479
|
);
|
|
4660
|
-
}
|
|
4661
|
-
|
|
4662
|
-
:host,
|
|
4663
|
-
:root {
|
|
4664
4480
|
--system-radio-button-border-color-default: var(--spectrum-gray-600);
|
|
4665
4481
|
--system-radio-button-border-color-hover: var(--spectrum-gray-700);
|
|
4666
4482
|
--system-radio-button-border-color-down: var(--spectrum-gray-800);
|
|
@@ -4802,10 +4618,6 @@
|
|
|
4802
4618
|
--system-radio-emphasized-button-checked-border-color-focus: var(
|
|
4803
4619
|
--spectrum-accent-color-1000
|
|
4804
4620
|
);
|
|
4805
|
-
}
|
|
4806
|
-
|
|
4807
|
-
:host,
|
|
4808
|
-
:root {
|
|
4809
4621
|
--system-search-border-color-default: var(--spectrum-gray-500);
|
|
4810
4622
|
--system-search-border-color-hover: var(--spectrum-gray-600);
|
|
4811
4623
|
--system-search-border-color-focus: var(--spectrum-gray-800);
|
|
@@ -4895,10 +4707,6 @@
|
|
|
4895
4707
|
--system-search-quiet-edge-to-visual: var(
|
|
4896
4708
|
--spectrum-field-edge-to-visual-quiet
|
|
4897
4709
|
);
|
|
4898
|
-
}
|
|
4899
|
-
|
|
4900
|
-
:host,
|
|
4901
|
-
:root {
|
|
4902
4710
|
--system-side-nav-focus-ring-size: var(
|
|
4903
4711
|
--spectrum-focus-indicator-thickness
|
|
4904
4712
|
);
|
|
@@ -5025,10 +4833,6 @@
|
|
|
5025
4833
|
--system-side-nav-lang-ko-header-line-height: var(
|
|
5026
4834
|
--spectrum-cjk-line-height-100
|
|
5027
4835
|
);
|
|
5028
|
-
}
|
|
5029
|
-
|
|
5030
|
-
:host,
|
|
5031
|
-
:root {
|
|
5032
4836
|
--system-slider-track-color: var(--spectrum-gray-200);
|
|
5033
4837
|
--system-slider-track-fill-color: var(--spectrum-gray-700);
|
|
5034
4838
|
--system-slider-ramp-track-color: var(--spectrum-gray-400);
|
|
@@ -5181,10 +4985,6 @@
|
|
|
5181
4985
|
--spectrum-spacing-200
|
|
5182
4986
|
);
|
|
5183
4987
|
--system-slider-size-xl-value-inline-size: 22px;
|
|
5184
|
-
}
|
|
5185
|
-
|
|
5186
|
-
:host,
|
|
5187
|
-
:root {
|
|
5188
4988
|
--system-split-view-vertical-width: 100%;
|
|
5189
4989
|
--system-split-view-vertical-gripper-width: 50%;
|
|
5190
4990
|
--system-split-view-vertical-gripper-outer-width: 100%;
|
|
@@ -5205,15 +5005,28 @@
|
|
|
5205
5005
|
--system-split-view-gripper-border-width-vertical: var(
|
|
5206
5006
|
--spectrum-border-width-400
|
|
5207
5007
|
);
|
|
5208
|
-
}
|
|
5209
|
-
|
|
5210
|
-
:host,
|
|
5211
|
-
:root {
|
|
5212
5008
|
--system-status-light-corner-radius: 50%;
|
|
5213
5009
|
--system-status-light-font-weight: 400;
|
|
5214
5010
|
--system-status-light-border-width: var(--spectrum-border-width-100);
|
|
5011
|
+
--system-status-light-height: var(--spectrum-component-height-100);
|
|
5012
|
+
--system-status-light-dot-size: var(
|
|
5013
|
+
--spectrum-status-light-dot-size-medium
|
|
5014
|
+
);
|
|
5215
5015
|
--system-status-light-line-height: var(--spectrum-line-height-100);
|
|
5216
5016
|
--system-status-light-line-height-cjk: var(--spectrum-cjk-line-height-100);
|
|
5017
|
+
--system-status-light-font-size: var(--spectrum-font-size-100);
|
|
5018
|
+
--system-status-light-spacing-dot-to-label: var(
|
|
5019
|
+
--spectrum-text-to-visual-100
|
|
5020
|
+
);
|
|
5021
|
+
--system-status-light-spacing-top-to-dot: var(
|
|
5022
|
+
--spectrum-status-light-top-to-dot-medium
|
|
5023
|
+
);
|
|
5024
|
+
--system-status-light-spacing-top-to-label: var(
|
|
5025
|
+
--spectrum-component-top-to-text-100
|
|
5026
|
+
);
|
|
5027
|
+
--system-status-light-spacing-bottom-to-label: var(
|
|
5028
|
+
--spectrum-component-bottom-to-text-100
|
|
5029
|
+
);
|
|
5217
5030
|
--system-status-light-content-color-default: var(
|
|
5218
5031
|
--spectrum-neutral-content-color-default
|
|
5219
5032
|
);
|
|
@@ -5280,40 +5093,6 @@
|
|
|
5280
5093
|
--system-status-light-nonsemantic-magenta-color: var(
|
|
5281
5094
|
--spectrum-magenta-visual-color
|
|
5282
5095
|
);
|
|
5283
|
-
--system-status-light-height: var(--spectrum-component-height-100);
|
|
5284
|
-
--system-status-light-size-m-height: var(--spectrum-component-height-100);
|
|
5285
|
-
--system-status-light-dot-size: var(
|
|
5286
|
-
--spectrum-status-light-dot-size-medium
|
|
5287
|
-
);
|
|
5288
|
-
--system-status-light-size-m-dot-size: var(
|
|
5289
|
-
--spectrum-status-light-dot-size-medium
|
|
5290
|
-
);
|
|
5291
|
-
--system-status-light-font-size: var(--spectrum-font-size-100);
|
|
5292
|
-
--system-status-light-size-m-font-size: var(--spectrum-font-size-100);
|
|
5293
|
-
--system-status-light-spacing-dot-to-label: var(
|
|
5294
|
-
--spectrum-text-to-visual-100
|
|
5295
|
-
);
|
|
5296
|
-
--system-status-light-size-m-spacing-dot-to-label: var(
|
|
5297
|
-
--spectrum-text-to-visual-100
|
|
5298
|
-
);
|
|
5299
|
-
--system-status-light-spacing-top-to-dot: var(
|
|
5300
|
-
--spectrum-status-light-top-to-dot-medium
|
|
5301
|
-
);
|
|
5302
|
-
--system-status-light-size-m-spacing-top-to-dot: var(
|
|
5303
|
-
--spectrum-status-light-top-to-dot-medium
|
|
5304
|
-
);
|
|
5305
|
-
--system-status-light-spacing-top-to-label: var(
|
|
5306
|
-
--spectrum-component-top-to-text-100
|
|
5307
|
-
);
|
|
5308
|
-
--system-status-light-size-m-spacing-top-to-label: var(
|
|
5309
|
-
--spectrum-component-top-to-text-100
|
|
5310
|
-
);
|
|
5311
|
-
--system-status-light-spacing-bottom-to-label: var(
|
|
5312
|
-
--spectrum-component-bottom-to-text-100
|
|
5313
|
-
);
|
|
5314
|
-
--system-status-light-size-m-spacing-bottom-to-label: var(
|
|
5315
|
-
--spectrum-component-bottom-to-text-100
|
|
5316
|
-
);
|
|
5317
5096
|
--system-status-light-size-s-height: var(--spectrum-component-height-75);
|
|
5318
5097
|
--system-status-light-size-s-dot-size: var(
|
|
5319
5098
|
--spectrum-status-light-dot-size-small
|
|
@@ -5331,6 +5110,23 @@
|
|
|
5331
5110
|
--system-status-light-size-s-spacing-bottom-to-label: var(
|
|
5332
5111
|
--spectrum-component-bottom-to-text-75
|
|
5333
5112
|
);
|
|
5113
|
+
--system-status-light-size-m-height: var(--spectrum-component-height-100);
|
|
5114
|
+
--system-status-light-size-m-dot-size: var(
|
|
5115
|
+
--spectrum-status-light-dot-size-medium
|
|
5116
|
+
);
|
|
5117
|
+
--system-status-light-size-m-font-size: var(--spectrum-font-size-100);
|
|
5118
|
+
--system-status-light-size-m-spacing-dot-to-label: var(
|
|
5119
|
+
--spectrum-text-to-visual-100
|
|
5120
|
+
);
|
|
5121
|
+
--system-status-light-size-m-spacing-top-to-dot: var(
|
|
5122
|
+
--spectrum-status-light-top-to-dot-medium
|
|
5123
|
+
);
|
|
5124
|
+
--system-status-light-size-m-spacing-top-to-label: var(
|
|
5125
|
+
--spectrum-component-top-to-text-100
|
|
5126
|
+
);
|
|
5127
|
+
--system-status-light-size-m-spacing-bottom-to-label: var(
|
|
5128
|
+
--spectrum-component-bottom-to-text-100
|
|
5129
|
+
);
|
|
5334
5130
|
--system-status-light-size-l-height: var(--spectrum-component-height-200);
|
|
5335
5131
|
--system-status-light-size-l-dot-size: var(
|
|
5336
5132
|
--spectrum-status-light-dot-size-large
|
|
@@ -5365,10 +5161,6 @@
|
|
|
5365
5161
|
--system-status-light-size-xl-spacing-bottom-to-label: var(
|
|
5366
5162
|
--spectrum-component-bottom-to-text-300
|
|
5367
5163
|
);
|
|
5368
|
-
}
|
|
5369
|
-
|
|
5370
|
-
:host,
|
|
5371
|
-
:root {
|
|
5372
5164
|
--system-stepper-border-width: var(--spectrum-border-width-100);
|
|
5373
5165
|
--system-stepper-border-color: var(--spectrum-gray-500);
|
|
5374
5166
|
--system-stepper-border-color-hover: var(--spectrum-gray-600);
|
|
@@ -5382,8 +5174,8 @@
|
|
|
5382
5174
|
--system-stepper-animation-duration: var(--spectrum-animation-duration-100);
|
|
5383
5175
|
--system-stepper-buttons-border-style: none;
|
|
5384
5176
|
--system-stepper-buttons-border-width: 0;
|
|
5385
|
-
--system-stepper-buttons-background-color: var(--spectrum-gray-25);
|
|
5386
5177
|
--system-stepper-buttons-border-color: var(--spectrum-gray-500);
|
|
5178
|
+
--system-stepper-buttons-background-color: var(--spectrum-gray-25);
|
|
5387
5179
|
--system-stepper-buttons-border-color-hover: var(--spectrum-gray-600);
|
|
5388
5180
|
--system-stepper-buttons-border-color-focus: var(--spectrum-gray-800);
|
|
5389
5181
|
--system-stepper-buttons-border-color-keyboard-focus: var(
|
|
@@ -5394,6 +5186,10 @@
|
|
|
5394
5186
|
);
|
|
5395
5187
|
--system-stepper-button-border-radius-reset: 0px;
|
|
5396
5188
|
--system-stepper-button-border-width: var(--spectrum-border-width-100);
|
|
5189
|
+
--system-stepper-button-background-color-focus: var(--spectrum-gray-300);
|
|
5190
|
+
--system-stepper-button-background-color-keyboard-focus: var(
|
|
5191
|
+
--spectrum-gray-100
|
|
5192
|
+
);
|
|
5397
5193
|
--system-stepper-border-color-invalid: var(
|
|
5398
5194
|
--spectrum-negative-border-color-default
|
|
5399
5195
|
);
|
|
@@ -5416,11 +5212,16 @@
|
|
|
5416
5212
|
--system-stepper-focus-indicator-color: var(
|
|
5417
5213
|
--spectrum-focus-indicator-color
|
|
5418
5214
|
);
|
|
5215
|
+
--system-stepper-button-border-color-quiet: transparent;
|
|
5419
5216
|
--system-stepper-button-border-color-disabled: var(--spectrum-gray-100);
|
|
5420
5217
|
--system-stepper-button-border-width-disabled: var(
|
|
5421
5218
|
--spectrum-border-width-100
|
|
5422
5219
|
);
|
|
5423
5220
|
--system-stepper-buttons-background-color-disabled: var(--spectrum-gray-50);
|
|
5221
|
+
--system-stepper-size-s-button-width: var(
|
|
5222
|
+
--spectrum-in-field-button-width-stacked-small
|
|
5223
|
+
);
|
|
5224
|
+
--system-stepper-size-s-height: var(--spectrum-component-height-75);
|
|
5424
5225
|
--system-stepper-button-width: var(
|
|
5425
5226
|
--spectrum-in-field-button-width-stacked-medium
|
|
5426
5227
|
);
|
|
@@ -5429,10 +5230,6 @@
|
|
|
5429
5230
|
);
|
|
5430
5231
|
--system-stepper-height: var(--spectrum-component-height-100);
|
|
5431
5232
|
--system-stepper-size-m-height: var(--spectrum-component-height-100);
|
|
5432
|
-
--system-stepper-size-s-button-width: var(
|
|
5433
|
-
--spectrum-in-field-button-width-stacked-small
|
|
5434
|
-
);
|
|
5435
|
-
--system-stepper-size-s-height: var(--spectrum-component-height-75);
|
|
5436
5233
|
--system-stepper-size-l-button-width: var(
|
|
5437
5234
|
--spectrum-in-field-button-width-stacked-large
|
|
5438
5235
|
);
|
|
@@ -5441,10 +5238,6 @@
|
|
|
5441
5238
|
--spectrum-in-field-button-width-stacked-extra-large
|
|
5442
5239
|
);
|
|
5443
5240
|
--system-stepper-size-xl-height: var(--spectrum-component-height-300);
|
|
5444
|
-
}
|
|
5445
|
-
|
|
5446
|
-
:host,
|
|
5447
|
-
:root {
|
|
5448
5241
|
--system-swatch-border-radius: var(--spectrum-corner-radius-100);
|
|
5449
5242
|
--system-swatch-focus-indicator-border-radius: var(
|
|
5450
5243
|
--spectrum-corner-radius-200
|
|
@@ -5510,31 +5303,9 @@
|
|
|
5510
5303
|
--system-swatch-size-l-slash-thickness: var(
|
|
5511
5304
|
--spectrum-swatch-slash-thickness-large
|
|
5512
5305
|
);
|
|
5513
|
-
}
|
|
5514
|
-
|
|
5515
|
-
:host,
|
|
5516
|
-
:root {
|
|
5517
5306
|
--system-swatch-group-spacing-compact: var(--spectrum-spacing-50);
|
|
5518
5307
|
--system-swatch-group-spacing-regular: var(--spectrum-spacing-75);
|
|
5519
5308
|
--system-swatch-group-spacing-spacious: var(--spectrum-spacing-100);
|
|
5520
|
-
}
|
|
5521
|
-
|
|
5522
|
-
:host,
|
|
5523
|
-
:root {
|
|
5524
|
-
--system-opacity-checkerboard-dark: var(
|
|
5525
|
-
--spectrum-opacity-checkerboard-square-dark
|
|
5526
|
-
);
|
|
5527
|
-
--system-opacity-checkerboard-light: var(
|
|
5528
|
-
--spectrum-opacity-checkerboard-square-light
|
|
5529
|
-
);
|
|
5530
|
-
--system-opacity-checkerboard-size: var(
|
|
5531
|
-
--spectrum-opacity-checkerboard-square-size
|
|
5532
|
-
);
|
|
5533
|
-
--system-opacity-checkerboard-position: left top;
|
|
5534
|
-
}
|
|
5535
|
-
|
|
5536
|
-
:host,
|
|
5537
|
-
:root {
|
|
5538
5309
|
--system-switch-handle-border-color-default: var(--spectrum-gray-600);
|
|
5539
5310
|
--system-switch-handle-border-color-hover: var(--spectrum-gray-700);
|
|
5540
5311
|
--system-switch-handle-border-color-down: var(--spectrum-gray-800);
|
|
@@ -5618,36 +5389,6 @@
|
|
|
5618
5389
|
--system-switch-emphasized-handle-border-color-selected-focus: var(
|
|
5619
5390
|
--spectrum-accent-color-1000
|
|
5620
5391
|
);
|
|
5621
|
-
--system-switch-min-height: var(--spectrum-component-height-100);
|
|
5622
|
-
--system-switch-size-m-min-height: var(--spectrum-component-height-100);
|
|
5623
|
-
--system-switch-control-width: var(--spectrum-switch-control-width-medium);
|
|
5624
|
-
--system-switch-size-m-control-width: var(
|
|
5625
|
-
--spectrum-switch-control-width-medium
|
|
5626
|
-
);
|
|
5627
|
-
--system-switch-control-height: var(
|
|
5628
|
-
--spectrum-switch-control-height-medium
|
|
5629
|
-
);
|
|
5630
|
-
--system-switch-size-m-control-height: var(
|
|
5631
|
-
--spectrum-switch-control-height-medium
|
|
5632
|
-
);
|
|
5633
|
-
--system-switch-control-label-spacing: var(--spectrum-text-to-control-100);
|
|
5634
|
-
--system-switch-size-m-control-label-spacing: var(
|
|
5635
|
-
--spectrum-text-to-control-100
|
|
5636
|
-
);
|
|
5637
|
-
--system-switch-spacing-top-to-control: var(
|
|
5638
|
-
--spectrum-switch-top-to-control-medium
|
|
5639
|
-
);
|
|
5640
|
-
--system-switch-size-m-spacing-top-to-control: var(
|
|
5641
|
-
--spectrum-switch-top-to-control-medium
|
|
5642
|
-
);
|
|
5643
|
-
--system-switch-spacing-top-to-label: var(
|
|
5644
|
-
--spectrum-component-top-to-text-100
|
|
5645
|
-
);
|
|
5646
|
-
--system-switch-size-m-spacing-top-to-label: var(
|
|
5647
|
-
--spectrum-component-top-to-text-100
|
|
5648
|
-
);
|
|
5649
|
-
--system-switch-font-size: var(--spectrum-font-size-100);
|
|
5650
|
-
--system-switch-size-m-font-size: var(--spectrum-font-size-100);
|
|
5651
5392
|
--system-switch-size-s-min-height: var(--spectrum-component-height-75);
|
|
5652
5393
|
--system-switch-size-s-control-width: var(
|
|
5653
5394
|
--spectrum-switch-control-width-small
|
|
@@ -5665,6 +5406,23 @@
|
|
|
5665
5406
|
--spectrum-component-top-to-text-75
|
|
5666
5407
|
);
|
|
5667
5408
|
--system-switch-size-s-font-size: var(--spectrum-font-size-75);
|
|
5409
|
+
--system-switch-size-m-min-height: var(--spectrum-component-height-100);
|
|
5410
|
+
--system-switch-size-m-control-width: var(
|
|
5411
|
+
--spectrum-switch-control-width-medium
|
|
5412
|
+
);
|
|
5413
|
+
--system-switch-size-m-control-height: var(
|
|
5414
|
+
--spectrum-switch-control-height-medium
|
|
5415
|
+
);
|
|
5416
|
+
--system-switch-size-m-control-label-spacing: var(
|
|
5417
|
+
--spectrum-text-to-control-100
|
|
5418
|
+
);
|
|
5419
|
+
--system-switch-size-m-spacing-top-to-control: var(
|
|
5420
|
+
--spectrum-switch-top-to-control-medium
|
|
5421
|
+
);
|
|
5422
|
+
--system-switch-size-m-spacing-top-to-label: var(
|
|
5423
|
+
--spectrum-component-top-to-text-100
|
|
5424
|
+
);
|
|
5425
|
+
--system-switch-size-m-font-size: var(--spectrum-font-size-100);
|
|
5668
5426
|
--system-switch-size-l-min-height: var(--spectrum-component-height-200);
|
|
5669
5427
|
--system-switch-size-l-control-width: var(
|
|
5670
5428
|
--spectrum-switch-control-width-large
|
|
@@ -5699,10 +5457,6 @@
|
|
|
5699
5457
|
--spectrum-component-top-to-text-300
|
|
5700
5458
|
);
|
|
5701
5459
|
--system-switch-size-xl-font-size: var(--spectrum-font-size-300);
|
|
5702
|
-
}
|
|
5703
|
-
|
|
5704
|
-
:host,
|
|
5705
|
-
:root {
|
|
5706
5460
|
--system-table-header-top-to-text: var(
|
|
5707
5461
|
--spectrum-table-column-header-row-top-to-text-medium
|
|
5708
5462
|
);
|
|
@@ -5780,10 +5534,10 @@
|
|
|
5780
5534
|
--spectrum-neutral-subdued-content-color-down
|
|
5781
5535
|
);
|
|
5782
5536
|
--system-table-icon-color-focus: var(
|
|
5783
|
-
--spectrum-neutral-subdued-content-color-
|
|
5537
|
+
--spectrum-neutral-subdued-content-color-focus
|
|
5784
5538
|
);
|
|
5785
5539
|
--system-table-icon-color-focus-hover: var(
|
|
5786
|
-
--spectrum-neutral-subdued-content-
|
|
5540
|
+
--spectrum-neutral-subdued-content-focus-hover
|
|
5787
5541
|
);
|
|
5788
5542
|
--system-table-icon-color-key-focus: var(
|
|
5789
5543
|
--spectrum-neutral-subdued-content-color-key-focus
|
|
@@ -6122,11 +5876,7 @@
|
|
|
6122
5876
|
--system-table-quiet-row-background-color: var(
|
|
6123
5877
|
--spectrum-transparent-white-25
|
|
6124
5878
|
);
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
:host,
|
|
6128
|
-
:root {
|
|
6129
|
-
--system-tabs-font-weight: var(--spectrum-regular-font-weight);
|
|
5879
|
+
--system-tabs-font-weight: var(--spectrum-default-font-weight);
|
|
6130
5880
|
--system-tabs-item-height: var(--spectrum-tab-item-height-medium);
|
|
6131
5881
|
--system-tabs-item-horizontal-spacing: var(
|
|
6132
5882
|
--spectrum-tab-item-to-tab-item-horizontal-medium
|
|
@@ -6267,10 +6017,6 @@
|
|
|
6267
6017
|
--system-tabs-emphasized-selection-indicator-color: var(
|
|
6268
6018
|
--spectrum-accent-content-color-default
|
|
6269
6019
|
);
|
|
6270
|
-
}
|
|
6271
|
-
|
|
6272
|
-
:host,
|
|
6273
|
-
:root {
|
|
6274
6020
|
--system-tag-border-color: var(--spectrum-gray-700);
|
|
6275
6021
|
--system-tag-border-color-hover: var(--spectrum-gray-800);
|
|
6276
6022
|
--system-tag-border-color-active: var(--spectrum-gray-900);
|
|
@@ -6433,6 +6179,48 @@
|
|
|
6433
6179
|
);
|
|
6434
6180
|
--system-tag-content-color-emphasized: var(--spectrum-white);
|
|
6435
6181
|
--system-tag-content-color-disabled: var(--spectrum-disabled-content-color);
|
|
6182
|
+
--system-tag-size-s-height: var(--spectrum-component-height-75);
|
|
6183
|
+
--system-tag-size-s-font-size: var(--spectrum-font-size-75);
|
|
6184
|
+
--system-tag-size-s-icon-size: var(--spectrum-workflow-icon-size-75);
|
|
6185
|
+
--system-tag-size-s-clear-button-spacing-inline-start: var(
|
|
6186
|
+
--spectrum-text-to-visual-75
|
|
6187
|
+
);
|
|
6188
|
+
--system-tag-size-s-clear-button-spacing-block: var(
|
|
6189
|
+
--spectrum-tag-top-to-cross-icon-small
|
|
6190
|
+
);
|
|
6191
|
+
--system-tag-size-s-icon-spacing-block-start: var(
|
|
6192
|
+
--spectrum-component-top-to-workflow-icon-75
|
|
6193
|
+
);
|
|
6194
|
+
--system-tag-size-s-icon-spacing-block-end: var(
|
|
6195
|
+
--spectrum-component-top-to-workflow-icon-75
|
|
6196
|
+
);
|
|
6197
|
+
--system-tag-size-s-icon-spacing-inline-end: var(
|
|
6198
|
+
--spectrum-text-to-visual-75
|
|
6199
|
+
);
|
|
6200
|
+
--system-tag-size-s-avatar-spacing-block-start: var(
|
|
6201
|
+
--spectrum-tag-top-to-avatar-small
|
|
6202
|
+
);
|
|
6203
|
+
--system-tag-size-s-avatar-spacing-block-end: var(
|
|
6204
|
+
--spectrum-tag-top-to-avatar-small
|
|
6205
|
+
);
|
|
6206
|
+
--system-tag-size-s-avatar-spacing-inline-end: var(
|
|
6207
|
+
--spectrum-text-to-visual-75
|
|
6208
|
+
);
|
|
6209
|
+
--system-tag-size-s-label-spacing-block: var(
|
|
6210
|
+
--spectrum-component-top-to-text-75
|
|
6211
|
+
);
|
|
6212
|
+
--system-tag-size-s-corner-radius: var(
|
|
6213
|
+
--system-tag-size-small-corner-radius
|
|
6214
|
+
);
|
|
6215
|
+
--system-tag-size-s-spacing-inline-start: var(
|
|
6216
|
+
--system-tag-size-small-spacing-inline-start
|
|
6217
|
+
);
|
|
6218
|
+
--system-tag-size-s-label-spacing-inline-end: var(
|
|
6219
|
+
--system-tag-size-small-label-spacing-inline-end
|
|
6220
|
+
);
|
|
6221
|
+
--system-tag-size-s-clear-button-spacing-inline-end: var(
|
|
6222
|
+
--system-tag-size-small-clear-button-spacing-inline-end
|
|
6223
|
+
);
|
|
6436
6224
|
--system-tag-height: var(--spectrum-component-height-100);
|
|
6437
6225
|
--system-tag-size-m-height: var(--spectrum-component-height-100);
|
|
6438
6226
|
--system-tag-font-size: var(--spectrum-font-size-100);
|
|
@@ -6509,48 +6297,6 @@
|
|
|
6509
6297
|
--system-tag-size-m-clear-button-spacing-inline-end: var(
|
|
6510
6298
|
--system-tag-size-medium-clear-button-spacing-inline-end
|
|
6511
6299
|
);
|
|
6512
|
-
--system-tag-size-s-height: var(--spectrum-component-height-75);
|
|
6513
|
-
--system-tag-size-s-font-size: var(--spectrum-font-size-75);
|
|
6514
|
-
--system-tag-size-s-icon-size: var(--spectrum-workflow-icon-size-75);
|
|
6515
|
-
--system-tag-size-s-clear-button-spacing-inline-start: var(
|
|
6516
|
-
--spectrum-text-to-visual-75
|
|
6517
|
-
);
|
|
6518
|
-
--system-tag-size-s-clear-button-spacing-block: var(
|
|
6519
|
-
--spectrum-tag-top-to-cross-icon-small
|
|
6520
|
-
);
|
|
6521
|
-
--system-tag-size-s-icon-spacing-block-start: var(
|
|
6522
|
-
--spectrum-component-top-to-workflow-icon-75
|
|
6523
|
-
);
|
|
6524
|
-
--system-tag-size-s-icon-spacing-block-end: var(
|
|
6525
|
-
--spectrum-component-top-to-workflow-icon-75
|
|
6526
|
-
);
|
|
6527
|
-
--system-tag-size-s-icon-spacing-inline-end: var(
|
|
6528
|
-
--spectrum-text-to-visual-75
|
|
6529
|
-
);
|
|
6530
|
-
--system-tag-size-s-avatar-spacing-block-start: var(
|
|
6531
|
-
--spectrum-tag-top-to-avatar-small
|
|
6532
|
-
);
|
|
6533
|
-
--system-tag-size-s-avatar-spacing-block-end: var(
|
|
6534
|
-
--spectrum-tag-top-to-avatar-small
|
|
6535
|
-
);
|
|
6536
|
-
--system-tag-size-s-avatar-spacing-inline-end: var(
|
|
6537
|
-
--spectrum-text-to-visual-75
|
|
6538
|
-
);
|
|
6539
|
-
--system-tag-size-s-label-spacing-block: var(
|
|
6540
|
-
--spectrum-component-top-to-text-75
|
|
6541
|
-
);
|
|
6542
|
-
--system-tag-size-s-corner-radius: var(
|
|
6543
|
-
--system-tag-size-small-corner-radius
|
|
6544
|
-
);
|
|
6545
|
-
--system-tag-size-s-spacing-inline-start: var(
|
|
6546
|
-
--system-tag-size-small-spacing-inline-start
|
|
6547
|
-
);
|
|
6548
|
-
--system-tag-size-s-label-spacing-inline-end: var(
|
|
6549
|
-
--system-tag-size-small-label-spacing-inline-end
|
|
6550
|
-
);
|
|
6551
|
-
--system-tag-size-s-clear-button-spacing-inline-end: var(
|
|
6552
|
-
--system-tag-size-small-clear-button-spacing-inline-end
|
|
6553
|
-
);
|
|
6554
6300
|
--system-tag-size-l-height: var(--spectrum-component-height-200);
|
|
6555
6301
|
--system-tag-size-l-font-size: var(--spectrum-font-size-200);
|
|
6556
6302
|
--system-tag-size-l-icon-size: var(--spectrum-workflow-icon-size-200);
|
|
@@ -6593,16 +6339,8 @@
|
|
|
6593
6339
|
--system-tag-size-l-clear-button-spacing-inline-end: var(
|
|
6594
6340
|
--system-tag-size-large-clear-button-spacing-inline-end
|
|
6595
6341
|
);
|
|
6596
|
-
}
|
|
6597
|
-
|
|
6598
|
-
:host,
|
|
6599
|
-
:root {
|
|
6600
6342
|
--system-tag-group-item-margin-block: var(--spectrum-spacing-75);
|
|
6601
6343
|
--system-tag-group-item-margin-inline: var(--spectrum-spacing-75);
|
|
6602
|
-
}
|
|
6603
|
-
|
|
6604
|
-
:host,
|
|
6605
|
-
:root {
|
|
6606
6344
|
--system-textfield-border-color: var(--spectrum-gray-500);
|
|
6607
6345
|
--system-textfield-border-color-hover: var(--spectrum-gray-600);
|
|
6608
6346
|
--system-textfield-border-color-focus: var(--spectrum-gray-800);
|
|
@@ -6721,6 +6459,58 @@
|
|
|
6721
6459
|
--system-textfield-text-area-min-block-size: var(
|
|
6722
6460
|
--spectrum-text-area-minimum-height
|
|
6723
6461
|
);
|
|
6462
|
+
--system-textfield-size-s-height: var(--spectrum-component-height-75);
|
|
6463
|
+
--system-textfield-size-s-label-spacing-block-quiet: var(
|
|
6464
|
+
--spectrum-field-label-to-component-quiet-small
|
|
6465
|
+
);
|
|
6466
|
+
--system-textfield-size-s-label-spacing-inline-side-label: var(
|
|
6467
|
+
--spectrum-spacing-100
|
|
6468
|
+
);
|
|
6469
|
+
--system-textfield-size-s-placeholder-font-size: var(
|
|
6470
|
+
--spectrum-font-size-75
|
|
6471
|
+
);
|
|
6472
|
+
--system-textfield-size-s-spacing-inline: var(
|
|
6473
|
+
--spectrum-component-edge-to-text-75
|
|
6474
|
+
);
|
|
6475
|
+
--system-textfield-size-s-icon-size-invalid: var(
|
|
6476
|
+
--spectrum-workflow-icon-size-75
|
|
6477
|
+
);
|
|
6478
|
+
--system-textfield-size-s-icon-size-valid: var(
|
|
6479
|
+
--spectrum-checkmark-icon-size-75
|
|
6480
|
+
);
|
|
6481
|
+
--system-textfield-size-s-icon-spacing-inline-end-invalid: var(
|
|
6482
|
+
--spectrum-field-edge-to-alert-icon-small
|
|
6483
|
+
);
|
|
6484
|
+
--system-textfield-size-s-icon-spacing-inline-end-valid: var(
|
|
6485
|
+
--spectrum-field-edge-to-validation-icon-small
|
|
6486
|
+
);
|
|
6487
|
+
--system-textfield-size-s-icon-spacing-block-invalid: var(
|
|
6488
|
+
--spectrum-field-top-to-alert-icon-small
|
|
6489
|
+
);
|
|
6490
|
+
--system-textfield-size-s-icon-spacing-block-valid: var(
|
|
6491
|
+
--spectrum-field-top-to-validation-icon-small
|
|
6492
|
+
);
|
|
6493
|
+
--system-textfield-size-s-icon-spacing-inline-start-invalid: var(
|
|
6494
|
+
--spectrum-field-text-to-alert-icon-small
|
|
6495
|
+
);
|
|
6496
|
+
--system-textfield-size-s-icon-spacing-inline-start-valid: var(
|
|
6497
|
+
--spectrum-field-text-to-validation-icon-small
|
|
6498
|
+
);
|
|
6499
|
+
--system-textfield-size-s-character-count-font-size: var(
|
|
6500
|
+
--spectrum-font-size-75
|
|
6501
|
+
);
|
|
6502
|
+
--system-textfield-size-s-character-count-spacing-block: var(
|
|
6503
|
+
--spectrum-component-bottom-to-text-75
|
|
6504
|
+
);
|
|
6505
|
+
--system-textfield-size-s-character-count-spacing-block-quiet: var(
|
|
6506
|
+
--spectrum-character-count-to-field-quiet-small
|
|
6507
|
+
);
|
|
6508
|
+
--system-textfield-size-s-character-count-spacing-block-side: var(
|
|
6509
|
+
--spectrum-side-label-character-count-top-margin-small
|
|
6510
|
+
);
|
|
6511
|
+
--system-textfield-size-s-text-area-min-block-size-quiet: var(
|
|
6512
|
+
--spectrum-component-height-75
|
|
6513
|
+
);
|
|
6724
6514
|
--system-textfield-height: var(--spectrum-component-height-100);
|
|
6725
6515
|
--system-textfield-size-m-height: var(--spectrum-component-height-100);
|
|
6726
6516
|
--system-textfield-label-spacing-block-quiet: var(
|
|
@@ -6819,58 +6609,6 @@
|
|
|
6819
6609
|
--system-textfield-size-m-text-area-min-block-size-quiet: var(
|
|
6820
6610
|
--spectrum-component-height-100
|
|
6821
6611
|
);
|
|
6822
|
-
--system-textfield-size-s-height: var(--spectrum-component-height-75);
|
|
6823
|
-
--system-textfield-size-s-label-spacing-block-quiet: var(
|
|
6824
|
-
--spectrum-field-label-to-component-quiet-small
|
|
6825
|
-
);
|
|
6826
|
-
--system-textfield-size-s-label-spacing-inline-side-label: var(
|
|
6827
|
-
--spectrum-spacing-100
|
|
6828
|
-
);
|
|
6829
|
-
--system-textfield-size-s-placeholder-font-size: var(
|
|
6830
|
-
--spectrum-font-size-75
|
|
6831
|
-
);
|
|
6832
|
-
--system-textfield-size-s-spacing-inline: var(
|
|
6833
|
-
--spectrum-component-edge-to-text-75
|
|
6834
|
-
);
|
|
6835
|
-
--system-textfield-size-s-icon-size-invalid: var(
|
|
6836
|
-
--spectrum-workflow-icon-size-75
|
|
6837
|
-
);
|
|
6838
|
-
--system-textfield-size-s-icon-size-valid: var(
|
|
6839
|
-
--spectrum-checkmark-icon-size-75
|
|
6840
|
-
);
|
|
6841
|
-
--system-textfield-size-s-icon-spacing-inline-end-invalid: var(
|
|
6842
|
-
--spectrum-field-edge-to-alert-icon-small
|
|
6843
|
-
);
|
|
6844
|
-
--system-textfield-size-s-icon-spacing-inline-end-valid: var(
|
|
6845
|
-
--spectrum-field-edge-to-validation-icon-small
|
|
6846
|
-
);
|
|
6847
|
-
--system-textfield-size-s-icon-spacing-block-invalid: var(
|
|
6848
|
-
--spectrum-field-top-to-alert-icon-small
|
|
6849
|
-
);
|
|
6850
|
-
--system-textfield-size-s-icon-spacing-block-valid: var(
|
|
6851
|
-
--spectrum-field-top-to-validation-icon-small
|
|
6852
|
-
);
|
|
6853
|
-
--system-textfield-size-s-icon-spacing-inline-start-invalid: var(
|
|
6854
|
-
--spectrum-field-text-to-alert-icon-small
|
|
6855
|
-
);
|
|
6856
|
-
--system-textfield-size-s-icon-spacing-inline-start-valid: var(
|
|
6857
|
-
--spectrum-field-text-to-validation-icon-small
|
|
6858
|
-
);
|
|
6859
|
-
--system-textfield-size-s-character-count-font-size: var(
|
|
6860
|
-
--spectrum-font-size-75
|
|
6861
|
-
);
|
|
6862
|
-
--system-textfield-size-s-character-count-spacing-block: var(
|
|
6863
|
-
--spectrum-component-bottom-to-text-75
|
|
6864
|
-
);
|
|
6865
|
-
--system-textfield-size-s-character-count-spacing-block-quiet: var(
|
|
6866
|
-
--spectrum-character-count-to-field-quiet-small
|
|
6867
|
-
);
|
|
6868
|
-
--system-textfield-size-s-character-count-spacing-block-side: var(
|
|
6869
|
-
--spectrum-side-label-character-count-top-margin-small
|
|
6870
|
-
);
|
|
6871
|
-
--system-textfield-size-s-text-area-min-block-size-quiet: var(
|
|
6872
|
-
--spectrum-component-height-75
|
|
6873
|
-
);
|
|
6874
6612
|
--system-textfield-size-l-height: var(--spectrum-component-height-200);
|
|
6875
6613
|
--system-textfield-size-l-label-spacing-block-quiet: var(
|
|
6876
6614
|
--spectrum-field-label-to-component-quiet-large
|
|
@@ -6975,53 +6713,7 @@
|
|
|
6975
6713
|
--system-textfield-size-xl-text-area-min-block-size-quiet: var(
|
|
6976
6714
|
--spectrum-component-height-300
|
|
6977
6715
|
);
|
|
6978
|
-
}
|
|
6979
|
-
|
|
6980
|
-
:host,
|
|
6981
|
-
:root {
|
|
6982
|
-
--system-thumbnail-size: var(--spectrum-thumbnail-size-500);
|
|
6983
6716
|
--system-thumbnail-border-radius: 2px;
|
|
6984
|
-
--system-thumbnail-border-width: var(--spectrum-border-width-100);
|
|
6985
|
-
--system-thumbnail-border-color-rgba: rgba(
|
|
6986
|
-
var(--spectrum-gray-800-rgb),
|
|
6987
|
-
var(--spectrum-thumbnail-border-opacity)
|
|
6988
|
-
);
|
|
6989
|
-
--system-thumbnail-layer-border-width-inner: var(
|
|
6990
|
-
--spectrum-border-width-400
|
|
6991
|
-
);
|
|
6992
|
-
--system-thumbnail-layer-border-color-inner: var(--spectrum-white);
|
|
6993
|
-
--system-thumbnail-layer-border-width-outer: var(
|
|
6994
|
-
--spectrum-border-width-100
|
|
6995
|
-
);
|
|
6996
|
-
--system-thumbnail-layer-border-color-outer: var(--spectrum-gray-500);
|
|
6997
|
-
--system-thumbnail-border-width-selected: var(--spectrum-border-width-200);
|
|
6998
|
-
--system-thumbnail-border-color-selected: var(--spectrum-accent-color-800);
|
|
6999
|
-
--system-thumbnail-focus-indicator-thickness: var(
|
|
7000
|
-
--spectrum-focus-indicator-thickness
|
|
7001
|
-
);
|
|
7002
|
-
--system-thumbnail-focus-indicator-gap: var(--spectrum-focus-indicator-gap);
|
|
7003
|
-
--system-thumbnail-focus-indicator-color: var(
|
|
7004
|
-
--spectrum-focus-indicator-color
|
|
7005
|
-
);
|
|
7006
|
-
--system-thumbnail-color-opacity-disabled: var(
|
|
7007
|
-
--spectrum-thumbnail-opacity-disabled
|
|
7008
|
-
);
|
|
7009
|
-
--system-thumbnail-size-50-size: var(--spectrum-thumbnail-size-50);
|
|
7010
|
-
--system-thumbnail-size-75-size: var(--spectrum-thumbnail-size-75);
|
|
7011
|
-
--system-thumbnail-size-100-size: var(--spectrum-thumbnail-size-100);
|
|
7012
|
-
--system-thumbnail-size-200-size: var(--spectrum-thumbnail-size-200);
|
|
7013
|
-
--system-thumbnail-size-300-size: var(--spectrum-thumbnail-size-300);
|
|
7014
|
-
--system-thumbnail-size-400-size: var(--spectrum-thumbnail-size-400);
|
|
7015
|
-
--system-thumbnail-size-500-size: var(--spectrum-thumbnail-size-500);
|
|
7016
|
-
--system-thumbnail-size-600-size: var(--spectrum-thumbnail-size-600);
|
|
7017
|
-
--system-thumbnail-size-700-size: var(--spectrum-thumbnail-size-700);
|
|
7018
|
-
--system-thumbnail-size-800-size: var(--spectrum-thumbnail-size-800);
|
|
7019
|
-
--system-thumbnail-size-900-size: var(--spectrum-thumbnail-size-900);
|
|
7020
|
-
--system-thumbnail-size-1000-size: var(--spectrum-thumbnail-size-1000);
|
|
7021
|
-
}
|
|
7022
|
-
|
|
7023
|
-
:host,
|
|
7024
|
-
:root {
|
|
7025
6717
|
--system-toast-background-color-default: var(
|
|
7026
6718
|
--spectrum-neutral-subdued-background-color-default
|
|
7027
6719
|
);
|
|
@@ -7066,10 +6758,6 @@
|
|
|
7066
6758
|
);
|
|
7067
6759
|
--system-toast-text-and-icon-color: var(--spectrum-white);
|
|
7068
6760
|
--system-toast-divider-color: var(--spectrum-transparent-white-400);
|
|
7069
|
-
}
|
|
7070
|
-
|
|
7071
|
-
:host,
|
|
7072
|
-
:root {
|
|
7073
6761
|
--system-tooltip-backgound-color-default-neutral: var(
|
|
7074
6762
|
--spectrum-neutral-subdued-background-color-default
|
|
7075
6763
|
);
|
|
@@ -7117,12 +6805,8 @@
|
|
|
7117
6805
|
--system-tooltip-background-color-default: var(
|
|
7118
6806
|
--system-tooltip-backgound-color-default-neutral
|
|
7119
6807
|
);
|
|
7120
|
-
|
|
7121
|
-
|
|
7122
|
-
:host,
|
|
7123
|
-
:root {
|
|
7124
|
-
--system-tray-exit-animation-delay: 0ms;
|
|
7125
|
-
--system-tray-entry-animation-delay: 160ms;
|
|
6808
|
+
--system-tray-exit-animation-delay: 0s;
|
|
6809
|
+
--system-tray-entry-animation-delay: 0.16s;
|
|
7126
6810
|
--system-tray-max-inline-size: 375px;
|
|
7127
6811
|
--system-tray-spacing-edge-to-safe-zone: 64px;
|
|
7128
6812
|
--system-tray-entry-animation-duration: var(
|
|
@@ -7133,10 +6817,6 @@
|
|
|
7133
6817
|
);
|
|
7134
6818
|
--system-tray-corner-radius: var(--spectrum-corner-radius-100);
|
|
7135
6819
|
--system-tray-background-color: var(--spectrum-background-layer-2-color);
|
|
7136
|
-
}
|
|
7137
|
-
|
|
7138
|
-
:host,
|
|
7139
|
-
:root {
|
|
7140
6820
|
--system-underlay-background-entry-animation-delay: var(
|
|
7141
6821
|
--spectrum-animation-duration-0
|
|
7142
6822
|
);
|
|
@@ -7159,10 +6839,6 @@
|
|
|
7159
6839
|
var(--spectrum-black-rgb),
|
|
7160
6840
|
var(--spectrum-overlay-opacity)
|
|
7161
6841
|
);
|
|
7162
|
-
}
|
|
7163
|
-
|
|
7164
|
-
:host,
|
|
7165
|
-
:root {
|
|
7166
6842
|
--system-heading-sans-serif-font-family: var(
|
|
7167
6843
|
--spectrum-sans-font-family-stack
|
|
7168
6844
|
);
|
|
@@ -7170,10 +6846,6 @@
|
|
|
7170
6846
|
--system-heading-cjk-font-family: var(--spectrum-cjk-font-family-stack);
|
|
7171
6847
|
--system-heading-cjk-letter-spacing: var(--spectrum-cjk-letter-spacing);
|
|
7172
6848
|
--system-heading-font-color: var(--spectrum-heading-color);
|
|
7173
|
-
--system-heading-font-size: var(--spectrum-heading-size-m);
|
|
7174
|
-
--system-heading-size-m-font-size: var(--spectrum-heading-size-m);
|
|
7175
|
-
--system-heading-cjk-font-size: var(--spectrum-heading-cjk-size-m);
|
|
7176
|
-
--system-heading-size-m-cjk-font-size: var(--spectrum-heading-cjk-size-m);
|
|
7177
6849
|
--system-heading-size-xxs-font-size: var(--spectrum-heading-size-xxs);
|
|
7178
6850
|
--system-heading-size-xxs-cjk-font-size: var(
|
|
7179
6851
|
--spectrum-heading-cjk-size-xxs
|
|
@@ -7182,6 +6854,10 @@
|
|
|
7182
6854
|
--system-heading-size-xs-cjk-font-size: var(--spectrum-heading-cjk-size-xs);
|
|
7183
6855
|
--system-heading-size-s-font-size: var(--spectrum-heading-size-s);
|
|
7184
6856
|
--system-heading-size-s-cjk-font-size: var(--spectrum-heading-cjk-size-s);
|
|
6857
|
+
--system-heading-font-size: var(--spectrum-heading-size-m);
|
|
6858
|
+
--system-heading-size-m-font-size: var(--spectrum-heading-size-m);
|
|
6859
|
+
--system-heading-cjk-font-size: var(--spectrum-heading-cjk-size-m);
|
|
6860
|
+
--system-heading-size-m-cjk-font-size: var(--spectrum-heading-cjk-size-m);
|
|
7185
6861
|
--system-heading-size-l-font-size: var(--spectrum-heading-size-l);
|
|
7186
6862
|
--system-heading-size-l-cjk-font-size: var(--spectrum-heading-cjk-size-l);
|
|
7187
6863
|
--system-heading-size-xl-font-size: var(--spectrum-heading-size-xl);
|
|
@@ -7201,10 +6877,10 @@
|
|
|
7201
6877
|
--system-body-cjk-font-family: var(--spectrum-cjk-font-family-stack);
|
|
7202
6878
|
--system-body-cjk-letter-spacing: var(--spectrum-cjk-letter-spacing);
|
|
7203
6879
|
--system-body-font-color: var(--spectrum-body-color);
|
|
7204
|
-
--system-body-font-size: var(--spectrum-body-size-m);
|
|
7205
|
-
--system-body-size-m-font-size: var(--spectrum-body-size-m);
|
|
7206
6880
|
--system-body-size-xs-font-size: var(--spectrum-body-size-xs);
|
|
7207
6881
|
--system-body-size-s-font-size: var(--spectrum-body-size-s);
|
|
6882
|
+
--system-body-font-size: var(--spectrum-body-size-m);
|
|
6883
|
+
--system-body-size-m-font-size: var(--spectrum-body-size-m);
|
|
7208
6884
|
--system-body-size-l-font-size: var(--spectrum-body-size-l);
|
|
7209
6885
|
--system-body-size-xl-font-size: var(--spectrum-body-size-xl);
|
|
7210
6886
|
--system-body-size-xxl-font-size: var(--spectrum-body-size-xxl);
|
|
@@ -7215,18 +6891,18 @@
|
|
|
7215
6891
|
--system-detail-serif-font-family: var(--spectrum-serif-font-family-stack);
|
|
7216
6892
|
--system-detail-cjk-font-family: var(--spectrum-cjk-font-family-stack);
|
|
7217
6893
|
--system-detail-font-color: var(--spectrum-detail-color);
|
|
6894
|
+
--system-detail-size-s-font-size: var(--spectrum-detail-size-s);
|
|
7218
6895
|
--system-detail-font-size: var(--spectrum-detail-size-m);
|
|
7219
6896
|
--system-detail-size-m-font-size: var(--spectrum-detail-size-m);
|
|
7220
|
-
--system-detail-size-s-font-size: var(--spectrum-detail-size-s);
|
|
7221
6897
|
--system-detail-size-l-font-size: var(--spectrum-detail-size-l);
|
|
7222
6898
|
--system-detail-size-xl-font-size: var(--spectrum-detail-size-xl);
|
|
7223
6899
|
--system-code-font-family: var(--spectrum-code-font-family-stack);
|
|
7224
6900
|
--system-code-cjk-letter-spacing: var(--spectrum-cjk-letter-spacing);
|
|
7225
6901
|
--system-code-font-color: var(--spectrum-code-color);
|
|
7226
|
-
--system-code-font-size: var(--spectrum-code-size-m);
|
|
7227
|
-
--system-code-size-m-font-size: var(--spectrum-code-size-m);
|
|
7228
6902
|
--system-code-size-xs-font-size: var(--spectrum-code-size-xs);
|
|
7229
6903
|
--system-code-size-s-font-size: var(--spectrum-code-size-s);
|
|
6904
|
+
--system-code-font-size: var(--spectrum-code-size-m);
|
|
6905
|
+
--system-code-size-m-font-size: var(--spectrum-code-size-m);
|
|
7230
6906
|
--system-code-size-l-font-size: var(--spectrum-code-size-l);
|
|
7231
6907
|
--system-code-size-xl-font-size: var(--spectrum-code-size-xl);
|
|
7232
6908
|
}
|