@carbon/charts-react 1.9.0-rc.5 → 1.9.0-rc.6
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/LICENSE.md +201 -0
- package/dist/charts/AlluvialChart.d.ts +5 -5
- package/dist/charts/AreaChart.d.ts +5 -5
- package/dist/charts/BaseChart.d.ts +16 -16
- package/dist/charts/BoxplotChart.d.ts +5 -5
- package/dist/charts/BubbleChart.d.ts +5 -5
- package/dist/charts/BulletChart.d.ts +5 -5
- package/dist/charts/ChoroplethChart.d.ts +5 -5
- package/dist/charts/CirclePackChart.d.ts +5 -5
- package/dist/charts/ComboChart.d.ts +5 -5
- package/dist/charts/DonutChart.d.ts +5 -5
- package/dist/charts/GaugeChart.d.ts +5 -5
- package/dist/charts/GroupedBarChart.d.ts +5 -5
- package/dist/charts/HeatmapChart.d.ts +5 -5
- package/dist/charts/HistogramChart.d.ts +5 -5
- package/dist/charts/LineChart.d.ts +5 -5
- package/dist/charts/LollipopChart.d.ts +5 -5
- package/dist/charts/MeterChart.d.ts +5 -5
- package/dist/charts/PieChart.d.ts +5 -5
- package/dist/charts/RadarChart.d.ts +5 -5
- package/dist/charts/ScatterChart.d.ts +5 -5
- package/dist/charts/SimpleBarChart.d.ts +5 -5
- package/dist/charts/StackedAreaChart.d.ts +5 -5
- package/dist/charts/StackedBarChart.d.ts +5 -5
- package/dist/charts/TreeChart.d.ts +5 -5
- package/dist/charts/TreemapChart.d.ts +5 -5
- package/dist/charts/WordCloudChart.d.ts +5 -5
- package/dist/charts/index.d.ts +26 -26
- package/dist/diagrams/CardNode.d.ts +12 -12
- package/dist/diagrams/CardNodeColumn.d.ts +7 -7
- package/dist/diagrams/CardNodeLabel.d.ts +6 -6
- package/dist/diagrams/CardNodeSubtitle.d.ts +6 -6
- package/dist/diagrams/CardNodeTitle.d.ts +6 -6
- package/dist/diagrams/Edge.d.ts +17 -17
- package/dist/diagrams/Marker.d.ts +20 -20
- package/dist/diagrams/ShapeNode.d.ts +17 -17
- package/dist/diagrams/index.d.ts +9 -9
- package/dist/diagrams/utils.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/styles.css +386 -187
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/package.json +30 -26
package/dist/styles.css
CHANGED
|
@@ -88,6 +88,14 @@ video {
|
|
|
88
88
|
vertical-align: baseline;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
+
button,
|
|
92
|
+
select,
|
|
93
|
+
input,
|
|
94
|
+
textarea {
|
|
95
|
+
border-radius: 0;
|
|
96
|
+
font-family: inherit;
|
|
97
|
+
}
|
|
98
|
+
|
|
91
99
|
/* HTML5 display-role reset for older browsers */
|
|
92
100
|
article,
|
|
93
101
|
aside,
|
|
@@ -1779,6 +1787,157 @@ em {
|
|
|
1779
1787
|
--cds-border-tile: var(--cds-border-tile-03, #c6c6c6);
|
|
1780
1788
|
}
|
|
1781
1789
|
|
|
1790
|
+
:root {
|
|
1791
|
+
--cds-layout-size-height-xs: 1.5rem;
|
|
1792
|
+
--cds-layout-size-height-sm: 2rem;
|
|
1793
|
+
--cds-layout-size-height-md: 2.5rem;
|
|
1794
|
+
--cds-layout-size-height-lg: 3rem;
|
|
1795
|
+
--cds-layout-size-height-xl: 4rem;
|
|
1796
|
+
--cds-layout-size-height-2xl: 5rem;
|
|
1797
|
+
--cds-layout-size-height-min: 0px;
|
|
1798
|
+
--cds-layout-size-height-max: 999999999px;
|
|
1799
|
+
--cds-layout-density-padding-inline-condensed: 0.5rem;
|
|
1800
|
+
--cds-layout-density-padding-inline-normal: 1rem;
|
|
1801
|
+
--cds-layout-density-padding-inline-min: 0px;
|
|
1802
|
+
--cds-layout-density-padding-inline-max: 999999999px;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
.cds--layout--size-xs {
|
|
1806
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-xs, 1.5rem);
|
|
1807
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.cds--layout-constraint--size\:default-xs {
|
|
1811
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-xs, 1.5rem));
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.cds--layout-constraint--size\:min-xs {
|
|
1815
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-xs, 1.5rem);
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.cds--layout-constraint--size\:max-xs {
|
|
1819
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-xs, 1.5rem);
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
.cds--layout--size-sm {
|
|
1823
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-sm, 2rem);
|
|
1824
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
.cds--layout-constraint--size\:default-sm {
|
|
1828
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-sm, 2rem));
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
.cds--layout-constraint--size\:min-sm {
|
|
1832
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-sm, 2rem);
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
.cds--layout-constraint--size\:max-sm {
|
|
1836
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-sm, 2rem);
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
.cds--layout--size-md {
|
|
1840
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-md, 2.5rem);
|
|
1841
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
.cds--layout-constraint--size\:default-md {
|
|
1845
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-md, 2.5rem));
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
.cds--layout-constraint--size\:min-md {
|
|
1849
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-md, 2.5rem);
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
.cds--layout-constraint--size\:max-md {
|
|
1853
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-md, 2.5rem);
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
.cds--layout--size-lg {
|
|
1857
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-lg, 3rem);
|
|
1858
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
.cds--layout-constraint--size\:default-lg {
|
|
1862
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-lg, 3rem));
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.cds--layout-constraint--size\:min-lg {
|
|
1866
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-lg, 3rem);
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
.cds--layout-constraint--size\:max-lg {
|
|
1870
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-lg, 3rem);
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
.cds--layout--size-xl {
|
|
1874
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-xl, 4rem);
|
|
1875
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.cds--layout-constraint--size\:default-xl {
|
|
1879
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-xl, 4rem));
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.cds--layout-constraint--size\:min-xl {
|
|
1883
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-xl, 4rem);
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.cds--layout-constraint--size\:max-xl {
|
|
1887
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-xl, 4rem);
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.cds--layout--size-2xl {
|
|
1891
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-2xl, 5rem);
|
|
1892
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
.cds--layout-constraint--size\:default-2xl {
|
|
1896
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-2xl, 5rem));
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
.cds--layout-constraint--size\:min-2xl {
|
|
1900
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-2xl, 5rem);
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.cds--layout-constraint--size\:max-2xl {
|
|
1904
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-2xl, 5rem);
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.cds--layout--density-condensed {
|
|
1908
|
+
--cds-layout-density-padding-inline-context: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
|
|
1909
|
+
--cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context);
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
.cds--layout-constraint--density\:default-condensed {
|
|
1913
|
+
--cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-condensed, 0.5rem));
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.cds--layout-constraint--density\:min-condensed {
|
|
1917
|
+
--cds-layout-density-padding-inline-min: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.cds--layout-constraint--density\:max-condensed {
|
|
1921
|
+
--cds-layout-density-padding-inline-max: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
.cds--layout--density-normal {
|
|
1925
|
+
--cds-layout-density-padding-inline-context: var(--cds-layout-density-padding-inline-normal, 1rem);
|
|
1926
|
+
--cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context);
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
.cds--layout-constraint--density\:default-normal {
|
|
1930
|
+
--cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-normal, 1rem));
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.cds--layout-constraint--density\:min-normal {
|
|
1934
|
+
--cds-layout-density-padding-inline-min: var(--cds-layout-density-padding-inline-normal, 1rem);
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.cds--layout-constraint--density\:max-normal {
|
|
1938
|
+
--cds-layout-density-padding-inline-max: var(--cds-layout-density-padding-inline-normal, 1rem);
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1782
1941
|
.cds--white {
|
|
1783
1942
|
background: var(--cds-background);
|
|
1784
1943
|
color: var(--cds-text-primary);
|
|
@@ -2492,6 +2651,8 @@ em {
|
|
|
2492
2651
|
}
|
|
2493
2652
|
|
|
2494
2653
|
.cds--accordion {
|
|
2654
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
2655
|
+
--cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
|
|
2495
2656
|
box-sizing: border-box;
|
|
2496
2657
|
padding: 0;
|
|
2497
2658
|
border: 0;
|
|
@@ -2537,11 +2698,10 @@ em {
|
|
|
2537
2698
|
position: relative;
|
|
2538
2699
|
display: flex;
|
|
2539
2700
|
width: 100%;
|
|
2540
|
-
min-height:
|
|
2701
|
+
min-height: var(--cds-layout-size-height-local);
|
|
2541
2702
|
flex-direction: row-reverse;
|
|
2542
|
-
align-items:
|
|
2703
|
+
align-items: center;
|
|
2543
2704
|
justify-content: flex-start;
|
|
2544
|
-
padding: 0.625rem 0;
|
|
2545
2705
|
margin: 0;
|
|
2546
2706
|
color: var(--cds-text-primary, #161616);
|
|
2547
2707
|
cursor: pointer;
|
|
@@ -2579,16 +2739,6 @@ em {
|
|
|
2579
2739
|
}
|
|
2580
2740
|
}
|
|
2581
2741
|
|
|
2582
|
-
.cds--accordion--lg .cds--accordion__heading {
|
|
2583
|
-
min-height: 3rem;
|
|
2584
|
-
align-items: center;
|
|
2585
|
-
}
|
|
2586
|
-
|
|
2587
|
-
.cds--accordion--sm .cds--accordion__heading {
|
|
2588
|
-
min-height: 2rem;
|
|
2589
|
-
padding: 0.3125rem 0;
|
|
2590
|
-
}
|
|
2591
|
-
|
|
2592
2742
|
.cds--accordion__heading[disabled] {
|
|
2593
2743
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
2594
2744
|
cursor: not-allowed;
|
|
@@ -2617,7 +2767,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
2617
2767
|
width: 1rem;
|
|
2618
2768
|
height: 1rem;
|
|
2619
2769
|
flex: 0 0 1rem;
|
|
2620
|
-
margin:
|
|
2770
|
+
margin: 0 var(--cds-layout-density-padding-inline-local) 0 0;
|
|
2621
2771
|
fill: var(--cds-icon-primary, #161616);
|
|
2622
2772
|
transform: rotate(-270deg) /*rtl:ignore*/;
|
|
2623
2773
|
transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
@@ -2631,14 +2781,13 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
2631
2781
|
z-index: 1;
|
|
2632
2782
|
width: 100%;
|
|
2633
2783
|
padding-right: 1rem;
|
|
2634
|
-
margin: 0 0 0
|
|
2784
|
+
margin: 0 0 0 var(--cds-layout-density-padding-inline-local);
|
|
2635
2785
|
text-align: left;
|
|
2636
2786
|
}
|
|
2637
2787
|
|
|
2638
2788
|
.cds--accordion__content {
|
|
2639
2789
|
display: none;
|
|
2640
|
-
padding-
|
|
2641
|
-
padding-left: 1rem;
|
|
2790
|
+
padding-inline: var(--cds-layout-density-padding-inline-local);
|
|
2642
2791
|
transition: padding cubic-bezier(0.2, 0, 0.38, 0.9) 110ms;
|
|
2643
2792
|
}
|
|
2644
2793
|
@media (min-width: 480px) {
|
|
@@ -2663,7 +2812,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
2663
2812
|
}
|
|
2664
2813
|
|
|
2665
2814
|
.cds--accordion--start .cds--accordion__arrow {
|
|
2666
|
-
margin: 2px 0 0
|
|
2815
|
+
margin: 2px 0 0 var(--cds-layout-density-padding-inline-local);
|
|
2667
2816
|
}
|
|
2668
2817
|
|
|
2669
2818
|
.cds--accordion--start .cds--accordion__title {
|
|
@@ -2671,7 +2820,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
2671
2820
|
}
|
|
2672
2821
|
|
|
2673
2822
|
.cds--accordion--start .cds--accordion__content {
|
|
2674
|
-
margin-left:
|
|
2823
|
+
margin-left: calc(var(--cds-layout-density-padding-inline-local) + 1rem);
|
|
2675
2824
|
}
|
|
2676
2825
|
|
|
2677
2826
|
.cds--accordion__item--collapsing .cds--accordion__content,
|
|
@@ -3182,6 +3331,12 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3182
3331
|
}
|
|
3183
3332
|
|
|
3184
3333
|
.cds--btn {
|
|
3334
|
+
--cds-layout-size-height-local: clamp(var(--cds-layout-size-height-min), var(--cds-layout-size-height, var(--cds-layout-size-height-lg)), var(--cds-layout-size-height-max));
|
|
3335
|
+
--cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
|
|
3336
|
+
--temp-1lh: (var(--cds-body-compact-01-line-height) * 1em);
|
|
3337
|
+
--temp-padding-block-max: calc(
|
|
3338
|
+
(var(--cds-layout-size-height-lg) - var(--temp-1lh)) / 2 - 0.0625rem
|
|
3339
|
+
);
|
|
3185
3340
|
box-sizing: border-box;
|
|
3186
3341
|
padding: 0;
|
|
3187
3342
|
border: 0;
|
|
@@ -3197,15 +3352,16 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3197
3352
|
display: inline-flex;
|
|
3198
3353
|
width: max-content;
|
|
3199
3354
|
max-width: 20rem;
|
|
3200
|
-
|
|
3355
|
+
height: var(--cds-layout-size-height-local);
|
|
3201
3356
|
flex-shrink: 0;
|
|
3202
|
-
align-items: center;
|
|
3203
3357
|
justify-content: space-between;
|
|
3204
|
-
padding: calc(0.875rem - 3px) calc(4rem - 1px) calc(0.875rem - 3px) calc(1rem - 1px);
|
|
3205
3358
|
margin: 0;
|
|
3206
3359
|
border-radius: 0;
|
|
3207
3360
|
cursor: pointer;
|
|
3208
3361
|
outline: none;
|
|
3362
|
+
padding-block-start: min((var(--cds-layout-size-height-local) - var(--temp-1lh)) / 2 - 0.0625rem, var(--temp-padding-block-max));
|
|
3363
|
+
padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) * 3 + 1rem - 0.0625rem);
|
|
3364
|
+
padding-inline-start: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
3209
3365
|
text-align: left;
|
|
3210
3366
|
text-decoration: none;
|
|
3211
3367
|
transition: background 70ms cubic-bezier(0, 0, 0.38, 0.9), box-shadow 70ms cubic-bezier(0, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0, 0, 0.38, 0.9), outline 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
@@ -3225,10 +3381,12 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3225
3381
|
}
|
|
3226
3382
|
.cds--btn .cds--btn__icon {
|
|
3227
3383
|
position: absolute;
|
|
3228
|
-
|
|
3384
|
+
top: min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));
|
|
3385
|
+
right: var(--cds-layout-density-padding-inline-local);
|
|
3229
3386
|
width: 1rem;
|
|
3230
3387
|
height: 1rem;
|
|
3231
3388
|
flex-shrink: 0;
|
|
3389
|
+
margin-block-start: 0.0625rem;
|
|
3232
3390
|
}
|
|
3233
3391
|
|
|
3234
3392
|
.cds--btn::-moz-focus-inner {
|
|
@@ -3331,7 +3489,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3331
3489
|
border-color: transparent;
|
|
3332
3490
|
background-color: transparent;
|
|
3333
3491
|
color: var(--cds-link-primary, #0f62fe);
|
|
3334
|
-
padding: calc(
|
|
3492
|
+
padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
3335
3493
|
}
|
|
3336
3494
|
.cds--btn--ghost:hover {
|
|
3337
3495
|
background-color: var(--cds-layer-hover);
|
|
@@ -3363,19 +3521,19 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3363
3521
|
color: var(--cds-text-on-color-disabled, #8d8d8d);
|
|
3364
3522
|
outline: none;
|
|
3365
3523
|
}
|
|
3366
|
-
.cds--btn--ghost.cds--btn--sm {
|
|
3367
|
-
padding: calc(0.375rem - 3px) 1rem;
|
|
3368
|
-
}
|
|
3369
|
-
.cds--btn--ghost.cds--btn--field, .cds--btn--ghost.cds--btn--md {
|
|
3370
|
-
padding: calc(0.675rem - 3px) 1rem;
|
|
3371
|
-
}
|
|
3372
3524
|
.cds--btn--ghost:not([disabled]) svg {
|
|
3373
3525
|
fill: var(--cds-icon-primary, #161616);
|
|
3374
3526
|
}
|
|
3375
3527
|
|
|
3376
3528
|
.cds--btn--icon-only {
|
|
3377
|
-
|
|
3378
|
-
|
|
3529
|
+
width: var(--cds-layout-size-height-local);
|
|
3530
|
+
height: var(--cds-layout-size-height-local);
|
|
3531
|
+
justify-content: center;
|
|
3532
|
+
padding: 0;
|
|
3533
|
+
padding-block-start: min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));
|
|
3534
|
+
}
|
|
3535
|
+
.cds--btn--icon-only > :first-child {
|
|
3536
|
+
margin-block-start: 0.0625rem;
|
|
3379
3537
|
}
|
|
3380
3538
|
.cds--btn--icon-only .cds--btn__icon {
|
|
3381
3539
|
position: static;
|
|
@@ -3407,15 +3565,12 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3407
3565
|
cursor: not-allowed;
|
|
3408
3566
|
}
|
|
3409
3567
|
|
|
3410
|
-
.cds--
|
|
3411
|
-
|
|
3412
|
-
padding-right: 0.6875rem;
|
|
3413
|
-
padding-left: 0.6875rem;
|
|
3568
|
+
.cds--icon-tooltip--disabled .cds--tooltip-trigger__wrapper {
|
|
3569
|
+
cursor: not-allowed;
|
|
3414
3570
|
}
|
|
3415
3571
|
|
|
3416
|
-
.cds--
|
|
3417
|
-
|
|
3418
|
-
padding-left: 0.4375rem;
|
|
3572
|
+
.cds--icon-tooltip--disabled .cds--btn--icon-only[disabled] {
|
|
3573
|
+
pointer-events: none;
|
|
3419
3574
|
}
|
|
3420
3575
|
|
|
3421
3576
|
.cds--btn--danger {
|
|
@@ -3487,7 +3642,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3487
3642
|
border-color: transparent;
|
|
3488
3643
|
background-color: transparent;
|
|
3489
3644
|
color: var(--cds-button-danger-secondary, #da1e28);
|
|
3490
|
-
padding: calc(
|
|
3645
|
+
padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
3491
3646
|
}
|
|
3492
3647
|
.cds--btn--danger--ghost:hover {
|
|
3493
3648
|
background-color: var(--cds-button-danger-hover, #b81921);
|
|
@@ -3516,46 +3671,12 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3516
3671
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
3517
3672
|
outline: none;
|
|
3518
3673
|
}
|
|
3519
|
-
.cds--btn--danger--ghost.cds--btn--sm {
|
|
3520
|
-
padding: calc(0.375rem - 3px) 1rem;
|
|
3521
|
-
}
|
|
3522
|
-
.cds--btn--danger--ghost.cds--btn--field, .cds--btn--danger--ghost.cds--btn--md {
|
|
3523
|
-
padding: calc(0.675rem - 3px) 1rem;
|
|
3524
|
-
}
|
|
3525
|
-
|
|
3526
|
-
.cds--btn--sm {
|
|
3527
|
-
min-height: 2rem;
|
|
3528
|
-
padding: calc(0.375rem - 3px) calc(4rem - 4px) calc(0.375rem - 3px) calc(1rem - 4px);
|
|
3529
|
-
}
|
|
3530
|
-
|
|
3531
|
-
.cds--btn--2xl:not(.cds--btn--icon-only) {
|
|
3532
|
-
align-items: baseline;
|
|
3533
|
-
padding-top: 1rem;
|
|
3534
|
-
padding-right: 4rem;
|
|
3535
|
-
padding-left: 1rem;
|
|
3536
|
-
min-height: 5rem;
|
|
3537
|
-
}
|
|
3538
|
-
|
|
3539
|
-
.cds--btn--xl:not(.cds--btn--icon-only) {
|
|
3540
|
-
align-items: baseline;
|
|
3541
|
-
padding-top: 1rem;
|
|
3542
|
-
padding-right: 4rem;
|
|
3543
|
-
padding-left: 1rem;
|
|
3544
|
-
min-height: 4rem;
|
|
3545
|
-
}
|
|
3546
|
-
|
|
3547
|
-
.cds--btn--field,
|
|
3548
|
-
.cds--btn--md {
|
|
3549
|
-
min-height: 2.5rem;
|
|
3550
|
-
padding: calc(0.675rem - 3px) calc(4rem - 4px) calc(0.675rem - 3px) calc(1rem - 4px);
|
|
3551
|
-
}
|
|
3552
3674
|
|
|
3553
3675
|
.cds--btn--expressive {
|
|
3554
3676
|
font-size: var(--cds-body-compact-02-font-size, 1rem);
|
|
3555
3677
|
font-weight: var(--cds-body-compact-02-font-weight, 400);
|
|
3556
3678
|
line-height: var(--cds-body-compact-02-line-height, 1.375);
|
|
3557
3679
|
letter-spacing: var(--cds-body-compact-02-letter-spacing, 0);
|
|
3558
|
-
min-height: 3rem;
|
|
3559
3680
|
}
|
|
3560
3681
|
|
|
3561
3682
|
.cds--btn--icon-only.cds--btn--expressive {
|
|
@@ -3856,6 +3977,7 @@ input[data-invalid] ~ .cds--form-requirement,
|
|
|
3856
3977
|
.cds--date-picker-input__wrapper--warn ~ .cds--form-requirement,
|
|
3857
3978
|
.cds--date-picker-input__wrapper--invalid ~ .cds--form-requirement,
|
|
3858
3979
|
.cds--time-picker--invalid ~ .cds--form-requirement,
|
|
3980
|
+
.cds--time-picker--warning ~ .cds--form-requirement,
|
|
3859
3981
|
.cds--text-input__field-wrapper[data-invalid] ~ .cds--form-requirement,
|
|
3860
3982
|
.cds--text-input__field-wrapper--warning ~ .cds--form-requirement,
|
|
3861
3983
|
.cds--text-input__field-wrapper--warning > .cds--text-input ~ .cds--form-requirement,
|
|
@@ -4247,8 +4369,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
4247
4369
|
.cds--copy-btn {
|
|
4248
4370
|
position: relative;
|
|
4249
4371
|
display: flex;
|
|
4250
|
-
width: 2.5rem;
|
|
4251
|
-
height: 2.5rem;
|
|
4252
4372
|
align-items: center;
|
|
4253
4373
|
justify-content: center;
|
|
4254
4374
|
padding: 0;
|
|
@@ -4658,11 +4778,13 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
4658
4778
|
transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
4659
4779
|
}
|
|
4660
4780
|
|
|
4781
|
+
.cds--btn > .cds--snippet__icon {
|
|
4782
|
+
margin-block-start: 0;
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4661
4785
|
.cds--copy-btn {
|
|
4662
4786
|
display: flex;
|
|
4663
4787
|
overflow: visible;
|
|
4664
|
-
width: 2.5rem;
|
|
4665
|
-
height: 2.5rem;
|
|
4666
4788
|
align-items: center;
|
|
4667
4789
|
justify-content: center;
|
|
4668
4790
|
padding: 0;
|
|
@@ -4705,16 +4827,13 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
4705
4827
|
right: 0;
|
|
4706
4828
|
}
|
|
4707
4829
|
|
|
4708
|
-
.cds--snippet--inline.cds--btn
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
.cds--snippet--inline.cds--btn--md {
|
|
4714
|
-
min-height: 1.25rem;
|
|
4830
|
+
.cds--snippet--inline.cds--btn {
|
|
4831
|
+
width: initial;
|
|
4832
|
+
height: 1.25rem;
|
|
4833
|
+
padding-inline: 0;
|
|
4715
4834
|
}
|
|
4716
4835
|
|
|
4717
|
-
.cds--snippet--inline.cds--btn--primary:hover {
|
|
4836
|
+
.cds--snippet--inline.cds--btn.cds--btn--primary:hover {
|
|
4718
4837
|
color: var(--cds-text-primary, #161616);
|
|
4719
4838
|
}
|
|
4720
4839
|
|
|
@@ -4723,12 +4842,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
4723
4842
|
right: 0.5rem;
|
|
4724
4843
|
}
|
|
4725
4844
|
|
|
4726
|
-
.cds--snippet--multi .cds--copy-btn
|
|
4845
|
+
.cds--snippet--multi .cds--copy-btn {
|
|
4727
4846
|
z-index: 10;
|
|
4728
|
-
width: 2rem;
|
|
4729
|
-
height: 2rem;
|
|
4730
|
-
min-height: 2rem;
|
|
4731
|
-
padding: 0;
|
|
4732
4847
|
}
|
|
4733
4848
|
|
|
4734
4849
|
.cds--snippet-btn--expand {
|
|
@@ -4979,6 +5094,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
4979
5094
|
|
|
4980
5095
|
/* stylelint-enable */
|
|
4981
5096
|
.cds--text-input {
|
|
5097
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
5098
|
+
--cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
|
|
4982
5099
|
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
4983
5100
|
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
4984
5101
|
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
@@ -4986,8 +5103,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
4986
5103
|
outline: 2px solid transparent;
|
|
4987
5104
|
outline-offset: -2px;
|
|
4988
5105
|
width: 100%;
|
|
4989
|
-
height:
|
|
4990
|
-
padding: 0
|
|
5106
|
+
height: var(--cds-layout-size-height-local);
|
|
5107
|
+
padding: 0 var(--cds-layout-density-padding-inline-local);
|
|
4991
5108
|
border: none;
|
|
4992
5109
|
border-bottom: 1px solid var(--cds-border-strong);
|
|
4993
5110
|
background-color: var(--cds-field);
|
|
@@ -5024,14 +5141,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5024
5141
|
display: none;
|
|
5025
5142
|
}
|
|
5026
5143
|
|
|
5027
|
-
.cds--text-input--lg {
|
|
5028
|
-
height: 3rem;
|
|
5029
|
-
}
|
|
5030
|
-
|
|
5031
|
-
.cds--text-input--sm {
|
|
5032
|
-
height: 2rem;
|
|
5033
|
-
}
|
|
5034
|
-
|
|
5035
5144
|
.cds--password-input {
|
|
5036
5145
|
padding-right: 2.5rem;
|
|
5037
5146
|
}
|
|
@@ -5575,6 +5684,10 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5575
5684
|
}
|
|
5576
5685
|
|
|
5577
5686
|
.cds--tag {
|
|
5687
|
+
--cds-layout-size-height-xs: 1.125rem;
|
|
5688
|
+
--cds-layout-size-height-sm: 1.125rem;
|
|
5689
|
+
--cds-layout-size-height-md: 1.5rem;
|
|
5690
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-md)));
|
|
5578
5691
|
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
5579
5692
|
font-weight: var(--cds-label-01-font-weight, 400);
|
|
5580
5693
|
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
@@ -5584,16 +5697,25 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5584
5697
|
display: inline-flex;
|
|
5585
5698
|
min-width: 2rem;
|
|
5586
5699
|
max-width: 100%;
|
|
5587
|
-
min-height:
|
|
5700
|
+
min-height: var(--cds-layout-size-height-local);
|
|
5588
5701
|
align-items: center;
|
|
5589
5702
|
justify-content: center;
|
|
5590
|
-
padding: 0.25rem 0.5rem;
|
|
5591
5703
|
margin: 0.25rem;
|
|
5592
5704
|
border-radius: 0.9375rem;
|
|
5593
5705
|
cursor: default;
|
|
5706
|
+
padding-inline: 0.5rem;
|
|
5594
5707
|
vertical-align: middle;
|
|
5595
5708
|
word-break: break-word;
|
|
5596
5709
|
}
|
|
5710
|
+
.cds--layout--size-xs .cds--tag {
|
|
5711
|
+
--cds-layout-size-height: var(--cds-layout-size-height-xs);
|
|
5712
|
+
}
|
|
5713
|
+
.cds--layout--size-sm .cds--tag {
|
|
5714
|
+
--cds-layout-size-height: var(--cds-layout-size-height-sm);
|
|
5715
|
+
}
|
|
5716
|
+
.cds--layout--size-md .cds--tag {
|
|
5717
|
+
--cds-layout-size-height: var(--cds-layout-size-height-md);
|
|
5718
|
+
}
|
|
5597
5719
|
.cds--tag.cds--tag--interactive:hover,
|
|
5598
5720
|
.cds--tag .cds--tag__close-icon:hover {
|
|
5599
5721
|
background-color: var(--cds-tag-hover-gray, #c6c6c6);
|
|
@@ -5764,8 +5886,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5764
5886
|
|
|
5765
5887
|
.cds--tag__close-icon {
|
|
5766
5888
|
display: flex;
|
|
5767
|
-
width:
|
|
5768
|
-
height:
|
|
5889
|
+
width: var(--cds-layout-size-height-local);
|
|
5890
|
+
height: var(--cds-layout-size-height-local);
|
|
5769
5891
|
flex-shrink: 0;
|
|
5770
5892
|
align-items: center;
|
|
5771
5893
|
justify-content: center;
|
|
@@ -5819,18 +5941,11 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5819
5941
|
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
5820
5942
|
}
|
|
5821
5943
|
|
|
5822
|
-
.cds--tag--sm {
|
|
5823
|
-
min-height: 1.125rem;
|
|
5824
|
-
padding: 0 0.5rem;
|
|
5825
|
-
}
|
|
5826
|
-
|
|
5827
5944
|
.cds--tag--sm.cds--tag--filter {
|
|
5828
5945
|
padding-right: 0;
|
|
5829
5946
|
}
|
|
5830
5947
|
|
|
5831
5948
|
.cds--tag--sm .cds--tag__close-icon {
|
|
5832
|
-
width: 1.125rem;
|
|
5833
|
-
height: 1.125rem;
|
|
5834
5949
|
margin-left: 0.3125rem;
|
|
5835
5950
|
}
|
|
5836
5951
|
|
|
@@ -6739,13 +6854,18 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6739
6854
|
transform: rotate(180deg);
|
|
6740
6855
|
}
|
|
6741
6856
|
|
|
6857
|
+
.cds--contained-list {
|
|
6858
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-lg)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-xl)));
|
|
6859
|
+
--cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
|
|
6860
|
+
}
|
|
6861
|
+
|
|
6742
6862
|
.cds--contained-list__header {
|
|
6743
6863
|
position: sticky;
|
|
6744
6864
|
z-index: 1;
|
|
6745
6865
|
top: 0;
|
|
6746
6866
|
display: flex;
|
|
6747
6867
|
align-items: center;
|
|
6748
|
-
padding-inline:
|
|
6868
|
+
padding-inline: var(--cds-layout-density-padding-inline-local);
|
|
6749
6869
|
}
|
|
6750
6870
|
|
|
6751
6871
|
.cds--contained-list__label {
|
|
@@ -6755,7 +6875,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6755
6875
|
.cds--contained-list .cds--search {
|
|
6756
6876
|
position: sticky;
|
|
6757
6877
|
z-index: 1;
|
|
6758
|
-
top:
|
|
6878
|
+
top: var(--cds-layout-size-height-local);
|
|
6759
6879
|
}
|
|
6760
6880
|
.cds--contained-list .cds--search.cds--search--expandable .cds--search-input {
|
|
6761
6881
|
background-color: var(--cds-field);
|
|
@@ -6794,46 +6914,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6794
6914
|
outline: none;
|
|
6795
6915
|
}
|
|
6796
6916
|
|
|
6797
|
-
.cds--contained-list--on-page.cds--contained-list--sm .cds--contained-list__header {
|
|
6798
|
-
height: 2rem;
|
|
6799
|
-
}
|
|
6800
|
-
|
|
6801
|
-
.cds--contained-list--sm .cds--contained-list-item__content,
|
|
6802
|
-
.cds--contained-list--sm .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
6803
|
-
min-height: 2rem;
|
|
6804
|
-
padding: calc(0.5rem - 0.125rem) 1rem;
|
|
6805
|
-
}
|
|
6806
|
-
|
|
6807
|
-
.cds--contained-list--on-page.cds--contained-list--md .cds--contained-list__header {
|
|
6808
|
-
height: 2.5rem;
|
|
6809
|
-
}
|
|
6810
|
-
|
|
6811
|
-
.cds--contained-list--md .cds--contained-list-item__content,
|
|
6812
|
-
.cds--contained-list--md .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
6813
|
-
min-height: 2.5rem;
|
|
6814
|
-
padding: calc(0.75rem - 0.125rem) 1rem;
|
|
6815
|
-
}
|
|
6816
|
-
|
|
6817
|
-
.cds--contained-list--on-page.cds--contained-list--lg .cds--contained-list__header {
|
|
6818
|
-
height: 3rem;
|
|
6819
|
-
}
|
|
6820
|
-
|
|
6821
|
-
.cds--contained-list--lg .cds--contained-list-item__content,
|
|
6822
|
-
.cds--contained-list--lg .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
6823
|
-
min-height: 3rem;
|
|
6824
|
-
padding: calc(1rem - 0.125rem) 1rem;
|
|
6825
|
-
}
|
|
6826
|
-
|
|
6827
|
-
.cds--contained-list--on-page.cds--contained-list--xl .cds--contained-list__header {
|
|
6828
|
-
height: 4rem;
|
|
6829
|
-
}
|
|
6830
|
-
|
|
6831
|
-
.cds--contained-list--xl .cds--contained-list-item__content,
|
|
6832
|
-
.cds--contained-list--xl .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
6833
|
-
min-height: 4rem;
|
|
6834
|
-
padding: calc(1.5rem - 0.125rem) 1rem;
|
|
6835
|
-
}
|
|
6836
|
-
|
|
6837
6917
|
.cds--contained-list--on-page + .cds--contained-list--on-page {
|
|
6838
6918
|
margin-block-start: 1rem;
|
|
6839
6919
|
}
|
|
@@ -6843,6 +6923,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6843
6923
|
font-weight: var(--cds-heading-compact-01-font-weight, 600);
|
|
6844
6924
|
line-height: var(--cds-heading-compact-01-line-height, 1.28572);
|
|
6845
6925
|
letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
|
|
6926
|
+
height: var(--cds-layout-size-height-local);
|
|
6846
6927
|
border-bottom: 1px solid var(--cds-border-subtle);
|
|
6847
6928
|
background-color: var(--cds-background, #ffffff);
|
|
6848
6929
|
color: var(--cds-text-primary, #161616);
|
|
@@ -6904,10 +6985,13 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6904
6985
|
|
|
6905
6986
|
.cds--contained-list-item__content,
|
|
6906
6987
|
.cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
6988
|
+
--temp-1lh: (var(--cds-body-01-line-height) * 1em);
|
|
6907
6989
|
font-size: var(--cds-body-01-font-size, 0.875rem);
|
|
6908
6990
|
font-weight: var(--cds-body-01-font-weight, 400);
|
|
6909
6991
|
line-height: var(--cds-body-01-line-height, 1.42857);
|
|
6910
6992
|
letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
|
|
6993
|
+
min-height: var(--cds-layout-size-height-local);
|
|
6994
|
+
padding: calc((var(--cds-layout-size-height-local) - var(--temp-1lh)) / 2) var(--cds-layout-density-padding-inline-local);
|
|
6911
6995
|
color: var(--cds-text-primary, #161616);
|
|
6912
6996
|
}
|
|
6913
6997
|
|
|
@@ -6922,8 +7006,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6922
7006
|
}
|
|
6923
7007
|
|
|
6924
7008
|
.cds--contained-list--inset-rulers .cds--contained-list-item:not(:last-of-type)::before {
|
|
6925
|
-
right:
|
|
6926
|
-
left:
|
|
7009
|
+
right: var(--cds-layout-density-padding-inline-local);
|
|
7010
|
+
left: var(--cds-layout-density-padding-inline-local);
|
|
6927
7011
|
}
|
|
6928
7012
|
|
|
6929
7013
|
.cds--contained-list-item--clickable .cds--contained-list-item__content:not(:disabled):hover {
|
|
@@ -6991,20 +7075,14 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6991
7075
|
}
|
|
6992
7076
|
|
|
6993
7077
|
.cds--content-switcher {
|
|
7078
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
7079
|
+
--cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
|
|
6994
7080
|
display: flex;
|
|
6995
7081
|
width: 100%;
|
|
6996
|
-
height:
|
|
7082
|
+
height: var(--cds-layout-size-height-local);
|
|
6997
7083
|
justify-content: space-evenly;
|
|
6998
7084
|
}
|
|
6999
7085
|
|
|
7000
|
-
.cds--content-switcher--sm {
|
|
7001
|
-
height: 2rem;
|
|
7002
|
-
}
|
|
7003
|
-
|
|
7004
|
-
.cds--content-switcher--lg {
|
|
7005
|
-
height: 3rem;
|
|
7006
|
-
}
|
|
7007
|
-
|
|
7008
7086
|
.cds--content-switcher-btn {
|
|
7009
7087
|
font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;
|
|
7010
7088
|
outline: 2px solid transparent;
|
|
@@ -7016,9 +7094,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7016
7094
|
position: relative;
|
|
7017
7095
|
display: inline-flex;
|
|
7018
7096
|
overflow: hidden;
|
|
7019
|
-
width: 100%;
|
|
7020
|
-
align-items: center;
|
|
7021
|
-
padding: 0.5rem 1rem;
|
|
7022
7097
|
border: none;
|
|
7023
7098
|
border-top: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
7024
7099
|
border-bottom: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
@@ -7096,6 +7171,12 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7096
7171
|
border-color: var(--cds-border-disabled, #c6c6c6);
|
|
7097
7172
|
}
|
|
7098
7173
|
|
|
7174
|
+
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn {
|
|
7175
|
+
width: 100%;
|
|
7176
|
+
align-items: center;
|
|
7177
|
+
padding: 0.5rem var(--cds-layout-density-padding-inline-local);
|
|
7178
|
+
}
|
|
7179
|
+
|
|
7099
7180
|
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:first-child {
|
|
7100
7181
|
border-left: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
7101
7182
|
border-bottom-left-radius: 0.25rem;
|
|
@@ -7383,6 +7464,34 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7383
7464
|
vertical-align: middle;
|
|
7384
7465
|
}
|
|
7385
7466
|
|
|
7467
|
+
.cds--data-table.cds--data-table--top-aligned-body.cds--data-table--lg tr:not([data-child-row]) td:not(.cds--table-expand) {
|
|
7468
|
+
padding-top: 1rem;
|
|
7469
|
+
padding-bottom: 1rem;
|
|
7470
|
+
}
|
|
7471
|
+
.cds--data-table.cds--data-table--top-aligned-body.cds--data-table--lg tr:not([data-child-row]) td:not(.cds--table-expand).cds--table-column-menu {
|
|
7472
|
+
padding-top: 0.5rem;
|
|
7473
|
+
}
|
|
7474
|
+
.cds--data-table.cds--data-table--top-aligned-body.cds--data-table--lg tr:not([data-child-row]) td:not(.cds--table-expand).cds--table-column-checkbox:not(.cds--table-column-radio) {
|
|
7475
|
+
padding-top: 0.8125rem;
|
|
7476
|
+
}
|
|
7477
|
+
.cds--data-table.cds--data-table--top-aligned-body td {
|
|
7478
|
+
vertical-align: top;
|
|
7479
|
+
}
|
|
7480
|
+
|
|
7481
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--lg th:not(.cds--table-expand):not(.cds--table-sort__header) {
|
|
7482
|
+
padding-top: 1rem;
|
|
7483
|
+
padding-bottom: 1rem;
|
|
7484
|
+
}
|
|
7485
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--lg th:not(.cds--table-expand):not(.cds--table-sort__header).cds--table-column-menu {
|
|
7486
|
+
padding-top: 0.5rem;
|
|
7487
|
+
}
|
|
7488
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--lg th:not(.cds--table-expand):not(.cds--table-sort__header).cds--table-column-checkbox {
|
|
7489
|
+
padding-top: 0.8125rem;
|
|
7490
|
+
}
|
|
7491
|
+
.cds--data-table.cds--data-table--top-aligned-header th {
|
|
7492
|
+
vertical-align: top;
|
|
7493
|
+
}
|
|
7494
|
+
|
|
7386
7495
|
.cds--data-table th[align=right],
|
|
7387
7496
|
.cds--data-table td[align=right] {
|
|
7388
7497
|
text-align: right;
|
|
@@ -7663,7 +7772,8 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
7663
7772
|
height: calc(100% + 1px);
|
|
7664
7773
|
}
|
|
7665
7774
|
|
|
7666
|
-
.cds--data-table.cds--data-table--xs .cds--table-column-checkbox
|
|
7775
|
+
.cds--data-table.cds--data-table--xs:not(.cds--data-table--top-aligned-body) td.cds--table-column-checkbox,
|
|
7776
|
+
.cds--data-table.cds--data-table--xs:not(.cds--data-table--top-aligned-header) th.cds--table-column-checkbox {
|
|
7667
7777
|
padding-top: 0;
|
|
7668
7778
|
padding-bottom: 0;
|
|
7669
7779
|
}
|
|
@@ -7685,12 +7795,14 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
7685
7795
|
}
|
|
7686
7796
|
|
|
7687
7797
|
.cds--data-table--sm td,
|
|
7688
|
-
.cds--data-table--sm tbody tr th
|
|
7798
|
+
.cds--data-table--sm tbody tr th,
|
|
7799
|
+
.cds--data-table--sm.cds--data-table--top-aligned-header th.cds--table-column-checkbox {
|
|
7689
7800
|
padding-top: 0.4375rem;
|
|
7690
7801
|
padding-bottom: 0.375rem;
|
|
7691
7802
|
}
|
|
7692
7803
|
|
|
7693
|
-
.cds--data-table.cds--data-table--sm .cds--table-column-checkbox
|
|
7804
|
+
.cds--data-table.cds--data-table--sm:not(.cds--data-table--top-aligned-body) td.cds--table-column-checkbox,
|
|
7805
|
+
.cds--data-table.cds--data-table--sm:not(.cds--data-table--top-aligned-header) th.cds--table-column-checkbox {
|
|
7694
7806
|
padding-top: 0.1875rem;
|
|
7695
7807
|
padding-bottom: 0.1875rem;
|
|
7696
7808
|
}
|
|
@@ -7705,7 +7817,8 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
7705
7817
|
height: 2.5rem;
|
|
7706
7818
|
}
|
|
7707
7819
|
|
|
7708
|
-
.cds--data-table--md .cds--table-header-label
|
|
7820
|
+
.cds--data-table--md .cds--table-header-label,
|
|
7821
|
+
.cds--data-table--md.cds--data-table--top-aligned-header th.cds--table-column-checkbox {
|
|
7709
7822
|
padding-top: 0.4375rem;
|
|
7710
7823
|
padding-bottom: 0.4375rem;
|
|
7711
7824
|
}
|
|
@@ -7716,7 +7829,8 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
7716
7829
|
padding-bottom: 0.375rem;
|
|
7717
7830
|
}
|
|
7718
7831
|
|
|
7719
|
-
.cds--data-table.cds--data-table--md .cds--table-column-checkbox
|
|
7832
|
+
.cds--data-table.cds--data-table--md:not(.cds--data-table--top-aligned-body) td.cds--table-column-checkbox,
|
|
7833
|
+
.cds--data-table.cds--data-table--md:not(.cds--data-table--top-aligned-header) th.cds--table-column-checkbox {
|
|
7720
7834
|
padding-top: 0.1875rem;
|
|
7721
7835
|
padding-bottom: 0.1875rem;
|
|
7722
7836
|
}
|
|
@@ -7740,6 +7854,7 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
7740
7854
|
.cds--data-table--xl td,
|
|
7741
7855
|
.cds--data-table--xl tbody tr th {
|
|
7742
7856
|
padding-top: 1rem;
|
|
7857
|
+
padding-bottom: 1rem;
|
|
7743
7858
|
}
|
|
7744
7859
|
|
|
7745
7860
|
.cds--data-table--xl th,
|
|
@@ -8661,6 +8776,25 @@ tr.cds--parent-row.cds--expandable-row.cds--expandable-row--hover td:first-of-ty
|
|
|
8661
8776
|
border: 0;
|
|
8662
8777
|
}
|
|
8663
8778
|
|
|
8779
|
+
.cds--data-table--top-aligned-body td .cds--table-expand__button,
|
|
8780
|
+
.cds--data-table--top-aligned-header th .cds--table-expand__button {
|
|
8781
|
+
height: 2rem;
|
|
8782
|
+
align-items: start;
|
|
8783
|
+
padding-top: 0.5rem;
|
|
8784
|
+
}
|
|
8785
|
+
|
|
8786
|
+
.cds--data-table--top-aligned-body.cds--data-table--xs td .cds--table-expand__button,
|
|
8787
|
+
.cds--data-table--top-aligned-header.cds--data-table--xs th .cds--table-expand__button {
|
|
8788
|
+
height: 1.5rem;
|
|
8789
|
+
padding-top: 0.25rem;
|
|
8790
|
+
}
|
|
8791
|
+
|
|
8792
|
+
.cds--data-table--top-aligned-body.cds--data-table--md td .cds--table-expand__button,
|
|
8793
|
+
.cds--data-table--top-aligned-header.cds--data-table--md th .cds--table-expand__button {
|
|
8794
|
+
padding-top: 0.5rem;
|
|
8795
|
+
margin-top: -0.25rem;
|
|
8796
|
+
}
|
|
8797
|
+
|
|
8664
8798
|
.cds--table-expand__button:focus {
|
|
8665
8799
|
box-shadow: inset 0 0 0 2px var(--cds-focus, #0f62fe);
|
|
8666
8800
|
outline: none;
|
|
@@ -8674,7 +8808,6 @@ tr.cds--parent-row.cds--expandable-row.cds--expandable-row--hover td:first-of-ty
|
|
|
8674
8808
|
|
|
8675
8809
|
.cds--data-table--xl .cds--table-expand__button {
|
|
8676
8810
|
width: 2rem;
|
|
8677
|
-
padding: 0;
|
|
8678
8811
|
}
|
|
8679
8812
|
|
|
8680
8813
|
tr.cds--parent-row.cds--expandable-row td.cds--table-expand + td::after {
|
|
@@ -9009,6 +9142,30 @@ th .cds--table-sort__flex {
|
|
|
9009
9142
|
justify-content: space-between;
|
|
9010
9143
|
}
|
|
9011
9144
|
|
|
9145
|
+
.cds--data-table--top-aligned-header th .cds--table-sort__flex {
|
|
9146
|
+
align-items: start;
|
|
9147
|
+
}
|
|
9148
|
+
|
|
9149
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--lg th.cds--table-sort__header {
|
|
9150
|
+
padding-top: 1rem;
|
|
9151
|
+
}
|
|
9152
|
+
|
|
9153
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--sm th.cds--table-sort__header .cds--table-sort__flex .cds--table-header-label,
|
|
9154
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--xs th.cds--table-sort__header .cds--table-sort__flex .cds--table-header-label {
|
|
9155
|
+
padding-top: 0;
|
|
9156
|
+
padding-bottom: 0;
|
|
9157
|
+
}
|
|
9158
|
+
|
|
9159
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--sm th.cds--table-sort__header {
|
|
9160
|
+
padding-top: 0.4375rem;
|
|
9161
|
+
padding-bottom: 0.4375rem;
|
|
9162
|
+
}
|
|
9163
|
+
|
|
9164
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--xs th.cds--table-sort__header {
|
|
9165
|
+
padding-top: 0.125rem;
|
|
9166
|
+
padding-bottom: 0.125rem;
|
|
9167
|
+
}
|
|
9168
|
+
|
|
9012
9169
|
.cds--data-table--sort:not(.cds--data-table--xs):not(.cds--data-table--sm):not(.cds--data-table--md):not(.cds--data-table--xl) th .cds--table-sort__flex {
|
|
9013
9170
|
/* IE11 workaround for align-items: center and min-height
|
|
9014
9171
|
https://github.com/philipwalton/flexbugs/issues/231 */
|
|
@@ -13845,6 +14002,10 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13845
14002
|
white-space: nowrap;
|
|
13846
14003
|
}
|
|
13847
14004
|
|
|
14005
|
+
.cds--menu-item__shortcut {
|
|
14006
|
+
display: flex;
|
|
14007
|
+
}
|
|
14008
|
+
|
|
13848
14009
|
.cds--menu--with-icons > .cds--menu-item,
|
|
13849
14010
|
.cds--menu--with-icons > .cds--menu-item-group > ul > .cds--menu-item,
|
|
13850
14011
|
.cds--menu--with-icons > .cds--menu-item-radio-group > ul > .cds--menu-item {
|
|
@@ -15543,6 +15704,10 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15543
15704
|
background-color: var(--cds-layer-hover);
|
|
15544
15705
|
}
|
|
15545
15706
|
|
|
15707
|
+
.cds--overflow-menu > :first-child {
|
|
15708
|
+
margin-block-start: 0;
|
|
15709
|
+
}
|
|
15710
|
+
|
|
15546
15711
|
.cds--overflow-menu--sm {
|
|
15547
15712
|
width: 2rem;
|
|
15548
15713
|
height: 2rem;
|
|
@@ -16070,6 +16235,11 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16070
16235
|
box-sizing: inherit;
|
|
16071
16236
|
}
|
|
16072
16237
|
|
|
16238
|
+
.cds--pagination__button > svg,
|
|
16239
|
+
.cds--btn--ghost.cds--pagination__button > svg {
|
|
16240
|
+
margin-block-start: 0;
|
|
16241
|
+
}
|
|
16242
|
+
|
|
16073
16243
|
.cds--pagination--sm .cds--pagination__button,
|
|
16074
16244
|
.cds--pagination--sm .cds--btn--ghost.cds--pagination__button {
|
|
16075
16245
|
width: 2rem;
|
|
@@ -16809,6 +16979,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16809
16979
|
fill: var(--cds-icon-primary, #161616);
|
|
16810
16980
|
}
|
|
16811
16981
|
|
|
16982
|
+
.cds--progress-bar {
|
|
16983
|
+
--cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
|
|
16984
|
+
}
|
|
16985
|
+
|
|
16812
16986
|
.cds--progress-bar__label {
|
|
16813
16987
|
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
16814
16988
|
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
@@ -16817,8 +16991,8 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16817
16991
|
display: flex;
|
|
16818
16992
|
min-width: 3rem;
|
|
16819
16993
|
justify-content: space-between;
|
|
16820
|
-
margin-bottom: 0.5rem;
|
|
16821
16994
|
color: var(--cds-text-primary, #161616);
|
|
16995
|
+
margin-block-end: 0.5rem;
|
|
16822
16996
|
}
|
|
16823
16997
|
|
|
16824
16998
|
.cds--progress-bar__label-text {
|
|
@@ -16880,7 +17054,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16880
17054
|
|
|
16881
17055
|
.cds--progress-bar__status-icon {
|
|
16882
17056
|
flex-shrink: 0;
|
|
16883
|
-
margin-
|
|
17057
|
+
margin-inline-start: var(--cds-layout-density-padding-inline-local);
|
|
16884
17058
|
}
|
|
16885
17059
|
|
|
16886
17060
|
.cds--progress-bar--finished .cds--progress-bar__bar,
|
|
@@ -16917,7 +17091,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16917
17091
|
.cds--progress-bar--error.cds--progress-bar--inline .cds--progress-bar__label {
|
|
16918
17092
|
flex-shrink: 1;
|
|
16919
17093
|
justify-content: flex-start;
|
|
16920
|
-
margin-
|
|
17094
|
+
margin-inline-end: 0;
|
|
16921
17095
|
}
|
|
16922
17096
|
|
|
16923
17097
|
@keyframes progress-bar-indeterminate {
|
|
@@ -16936,7 +17110,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16936
17110
|
.cds--progress-bar--inline .cds--progress-bar__label {
|
|
16937
17111
|
flex-shrink: 0;
|
|
16938
17112
|
margin-bottom: 0;
|
|
16939
|
-
margin-inline-end:
|
|
17113
|
+
margin-inline-end: var(--cds-layout-density-padding-inline-local);
|
|
16940
17114
|
}
|
|
16941
17115
|
|
|
16942
17116
|
.cds--progress-bar--inline .cds--progress-bar__track {
|
|
@@ -16959,7 +17133,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16959
17133
|
|
|
16960
17134
|
.cds--progress-bar--indented .cds--progress-bar__label,
|
|
16961
17135
|
.cds--progress-bar--indented .cds--progress-bar__helper-text {
|
|
16962
|
-
padding-inline:
|
|
17136
|
+
padding-inline: var(--cds-layout-density-padding-inline-local);
|
|
16963
17137
|
}
|
|
16964
17138
|
|
|
16965
17139
|
.cds--tooltip {
|
|
@@ -17736,11 +17910,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17736
17910
|
}
|
|
17737
17911
|
|
|
17738
17912
|
.cds--slider__range-label {
|
|
17739
|
-
font-
|
|
17740
|
-
font-
|
|
17741
|
-
|
|
17742
|
-
|
|
17743
|
-
letter-spacing: var(--cds-code-02-letter-spacing, 0.32px);
|
|
17913
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
17914
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
17915
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
17916
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
17744
17917
|
color: var(--cds-text-primary, #161616);
|
|
17745
17918
|
white-space: nowrap;
|
|
17746
17919
|
}
|
|
@@ -18527,10 +18700,15 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
18527
18700
|
.cds--tabs .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon {
|
|
18528
18701
|
padding: 0.25rem;
|
|
18529
18702
|
margin: -0.25rem;
|
|
18530
|
-
cursor: pointer;
|
|
18531
18703
|
line-height: 0;
|
|
18532
18704
|
pointer-events: auto;
|
|
18533
18705
|
}
|
|
18706
|
+
.cds--tabs .cds--tabs__nav-item--icon-left {
|
|
18707
|
+
display: flex;
|
|
18708
|
+
align-items: center;
|
|
18709
|
+
padding-right: 0.5rem;
|
|
18710
|
+
margin-top: -2px;
|
|
18711
|
+
}
|
|
18534
18712
|
.cds--tabs.cds--tabs--contained .cds--tabs__nav-item--icon {
|
|
18535
18713
|
padding-left: 1rem;
|
|
18536
18714
|
}
|
|
@@ -19317,10 +19495,21 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
19317
19495
|
}
|
|
19318
19496
|
|
|
19319
19497
|
.cds--time-picker__input {
|
|
19498
|
+
position: relative;
|
|
19320
19499
|
display: flex;
|
|
19321
19500
|
flex-direction: column;
|
|
19322
19501
|
}
|
|
19323
19502
|
|
|
19503
|
+
.cds--time-picker__error__icon {
|
|
19504
|
+
position: absolute;
|
|
19505
|
+
top: 50%;
|
|
19506
|
+
right: 1rem;
|
|
19507
|
+
display: flex;
|
|
19508
|
+
height: 100%;
|
|
19509
|
+
place-items: center;
|
|
19510
|
+
transform: translateY(-50%);
|
|
19511
|
+
}
|
|
19512
|
+
|
|
19324
19513
|
.cds--time-picker .cds--select-input {
|
|
19325
19514
|
width: auto;
|
|
19326
19515
|
min-width: auto;
|
|
@@ -19348,6 +19537,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
19348
19537
|
opacity: 1;
|
|
19349
19538
|
}
|
|
19350
19539
|
|
|
19540
|
+
.cds--time-picker__input-field-error {
|
|
19541
|
+
width: 6.175rem;
|
|
19542
|
+
}
|
|
19543
|
+
|
|
19351
19544
|
.cds--time-picker--light .cds--select-input {
|
|
19352
19545
|
background-color: var(--cds-field-02, #ffffff);
|
|
19353
19546
|
}
|
|
@@ -19888,6 +20081,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
19888
20081
|
}
|
|
19889
20082
|
}
|
|
19890
20083
|
|
|
20084
|
+
.cds--header__action > :first-child {
|
|
20085
|
+
margin-block-start: 0;
|
|
20086
|
+
}
|
|
20087
|
+
|
|
19891
20088
|
.cds--header__action > svg.cds--navigation-menu-panel-collapse-icon,
|
|
19892
20089
|
.cds--header__action--active > svg.cds--navigation-menu-panel-expand-icon {
|
|
19893
20090
|
display: none;
|
|
@@ -20269,7 +20466,6 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
20269
20466
|
width: 0;
|
|
20270
20467
|
}
|
|
20271
20468
|
|
|
20272
|
-
.cds--side-nav.cds--side-nav--rail:not(.cds--side-nav--fixed):hover,
|
|
20273
20469
|
.cds--side-nav--expanded {
|
|
20274
20470
|
width: 16rem;
|
|
20275
20471
|
}
|
|
@@ -20820,6 +21016,10 @@ a.cds--side-nav__link--current::before {
|
|
|
20820
21016
|
}
|
|
20821
21017
|
}
|
|
20822
21018
|
|
|
21019
|
+
.cds--header__action > :first-child {
|
|
21020
|
+
margin-block-start: 0;
|
|
21021
|
+
}
|
|
21022
|
+
|
|
20823
21023
|
.cds--header__action > svg.cds--navigation-menu-panel-collapse-icon,
|
|
20824
21024
|
.cds--header__action--active > svg.cds--navigation-menu-panel-expand-icon {
|
|
20825
21025
|
display: none;
|
|
@@ -21201,7 +21401,6 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
21201
21401
|
width: 0;
|
|
21202
21402
|
}
|
|
21203
21403
|
|
|
21204
|
-
.cds--side-nav.cds--side-nav--rail:not(.cds--side-nav--fixed):hover,
|
|
21205
21404
|
.cds--side-nav--expanded {
|
|
21206
21405
|
width: 16rem;
|
|
21207
21406
|
}
|