@carbon/charts 1.0.1 → 1.0.2
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/CHANGELOG.md +8 -0
- package/build/demo/create-codesandbox.d.ts +12 -8
- package/demo/create-codesandbox.d.ts +12 -8
- package/demo/create-codesandbox.js +26 -20
- package/demo/create-codesandbox.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/styles.css +677 -241
- package/demo/styles.css.map +1 -1
- package/demo/styles.min.css +1 -1
- package/demo/styles.min.css.map +1 -1
- package/demo/tsconfig.tsbuildinfo +2 -2
- package/package.json +9 -9
- package/styles/components/_card.scss +7 -10
- package/styles/components/_circle.scss +6 -8
- package/styles/components/_edge.scss +0 -2
- package/styles/components/_marker.scss +2 -3
- package/styles.css +57 -5
- package/styles.css.map +1 -1
- package/styles.min.css +1 -1
- package/styles.min.css.map +1 -1
package/demo/styles.css
CHANGED
|
@@ -1738,6 +1738,8 @@ section {
|
|
|
1738
1738
|
}
|
|
1739
1739
|
|
|
1740
1740
|
body {
|
|
1741
|
+
background-color: var(--cds-background, #ffffff);
|
|
1742
|
+
color: var(--cds-text-primary, #161616);
|
|
1741
1743
|
line-height: 1;
|
|
1742
1744
|
}
|
|
1743
1745
|
|
|
@@ -1800,52 +1802,52 @@ strong {
|
|
|
1800
1802
|
}
|
|
1801
1803
|
}
|
|
1802
1804
|
h1 {
|
|
1803
|
-
font-size: var(--cds-
|
|
1804
|
-
font-weight: var(--cds-
|
|
1805
|
-
line-height: var(--cds-
|
|
1806
|
-
letter-spacing: var(--cds-
|
|
1805
|
+
font-size: var(--cds-heading-06-font-size, 2rem);
|
|
1806
|
+
font-weight: var(--cds-heading-06-font-weight, 300);
|
|
1807
|
+
line-height: var(--cds-heading-06-line-height, 1.199);
|
|
1808
|
+
letter-spacing: var(--cds-heading-06-letter-spacing, 0);
|
|
1807
1809
|
}
|
|
1808
1810
|
|
|
1809
1811
|
h2 {
|
|
1810
|
-
font-size: var(--cds-
|
|
1811
|
-
font-weight: var(--cds-
|
|
1812
|
-
line-height: var(--cds-
|
|
1813
|
-
letter-spacing: var(--cds-
|
|
1812
|
+
font-size: var(--cds-heading-05-font-size, 2rem);
|
|
1813
|
+
font-weight: var(--cds-heading-05-font-weight, 400);
|
|
1814
|
+
line-height: var(--cds-heading-05-line-height, 1.25);
|
|
1815
|
+
letter-spacing: var(--cds-heading-05-letter-spacing, 0);
|
|
1814
1816
|
}
|
|
1815
1817
|
|
|
1816
1818
|
h3 {
|
|
1817
|
-
font-size: var(--cds-
|
|
1818
|
-
font-weight: var(--cds-
|
|
1819
|
-
line-height: var(--cds-
|
|
1820
|
-
letter-spacing: var(--cds-
|
|
1819
|
+
font-size: var(--cds-heading-04-font-size, 1.75rem);
|
|
1820
|
+
font-weight: var(--cds-heading-04-font-weight, 400);
|
|
1821
|
+
line-height: var(--cds-heading-04-line-height, 1.28572);
|
|
1822
|
+
letter-spacing: var(--cds-heading-04-letter-spacing, 0);
|
|
1821
1823
|
}
|
|
1822
1824
|
|
|
1823
1825
|
h4 {
|
|
1824
|
-
font-size: var(--cds-
|
|
1825
|
-
font-weight: var(--cds-
|
|
1826
|
-
line-height: var(--cds-
|
|
1827
|
-
letter-spacing: var(--cds-
|
|
1826
|
+
font-size: var(--cds-heading-03-font-size, 1.25rem);
|
|
1827
|
+
font-weight: var(--cds-heading-03-font-weight, 400);
|
|
1828
|
+
line-height: var(--cds-heading-03-line-height, 1.4);
|
|
1829
|
+
letter-spacing: var(--cds-heading-03-letter-spacing, 0);
|
|
1828
1830
|
}
|
|
1829
1831
|
|
|
1830
1832
|
h5 {
|
|
1831
|
-
font-size: var(--cds-
|
|
1832
|
-
font-weight: var(--cds-
|
|
1833
|
-
line-height: var(--cds-
|
|
1834
|
-
letter-spacing: var(--cds-
|
|
1833
|
+
font-size: var(--cds-heading-02-font-size, 1rem);
|
|
1834
|
+
font-weight: var(--cds-heading-02-font-weight, 600);
|
|
1835
|
+
line-height: var(--cds-heading-02-line-height, 1.5);
|
|
1836
|
+
letter-spacing: var(--cds-heading-02-letter-spacing, 0);
|
|
1835
1837
|
}
|
|
1836
1838
|
|
|
1837
1839
|
h6 {
|
|
1838
|
-
font-size: var(--cds-
|
|
1839
|
-
font-weight: var(--cds-
|
|
1840
|
-
line-height: var(--cds-
|
|
1841
|
-
letter-spacing: var(--cds-
|
|
1840
|
+
font-size: var(--cds-heading-01-font-size, 0.875rem);
|
|
1841
|
+
font-weight: var(--cds-heading-01-font-weight, 600);
|
|
1842
|
+
line-height: var(--cds-heading-01-line-height, 1.42857);
|
|
1843
|
+
letter-spacing: var(--cds-heading-01-letter-spacing, 0.16px);
|
|
1842
1844
|
}
|
|
1843
1845
|
|
|
1844
1846
|
p {
|
|
1845
|
-
font-size: var(--cds-body-
|
|
1846
|
-
font-weight: var(--cds-body-
|
|
1847
|
-
line-height: var(--cds-body-
|
|
1848
|
-
letter-spacing: var(--cds-body-
|
|
1847
|
+
font-size: var(--cds-body-02-font-size, 1rem);
|
|
1848
|
+
font-weight: var(--cds-body-02-font-weight, 400);
|
|
1849
|
+
line-height: var(--cds-body-02-line-height, 1.5);
|
|
1850
|
+
letter-spacing: var(--cds-body-02-letter-spacing, 0);
|
|
1849
1851
|
}
|
|
1850
1852
|
|
|
1851
1853
|
a {
|
|
@@ -2723,7 +2725,7 @@ em {
|
|
|
2723
2725
|
--cds-support-error-inverse: #fa4d56;
|
|
2724
2726
|
--cds-support-info: #0043ce;
|
|
2725
2727
|
--cds-support-info-inverse: #4589ff;
|
|
2726
|
-
--cds-support-success: #
|
|
2728
|
+
--cds-support-success: #198038;
|
|
2727
2729
|
--cds-support-success-inverse: #42be65;
|
|
2728
2730
|
--cds-support-warning: #f1c21b;
|
|
2729
2731
|
--cds-support-warning-inverse: #f1c21b;
|
|
@@ -2737,6 +2739,74 @@ em {
|
|
|
2737
2739
|
--cds-text-primary: #161616;
|
|
2738
2740
|
--cds-text-secondary: #525252;
|
|
2739
2741
|
--cds-toggle-off: #8d8d8d;
|
|
2742
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
2743
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
2744
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
2745
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
2746
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
2747
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
2748
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
2749
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
2750
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
2751
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
2752
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
2753
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
2754
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
2755
|
+
--cds-button-separator: #e0e0e0;
|
|
2756
|
+
--cds-button-primary: #0f62fe;
|
|
2757
|
+
--cds-button-secondary: #393939;
|
|
2758
|
+
--cds-button-tertiary: #0f62fe;
|
|
2759
|
+
--cds-button-danger-primary: #da1e28;
|
|
2760
|
+
--cds-button-danger-secondary: #da1e28;
|
|
2761
|
+
--cds-button-danger-active: #750e13;
|
|
2762
|
+
--cds-button-primary-active: #002d9c;
|
|
2763
|
+
--cds-button-secondary-active: #6f6f6f;
|
|
2764
|
+
--cds-button-tertiary-active: #002d9c;
|
|
2765
|
+
--cds-button-danger-hover: #b81922;
|
|
2766
|
+
--cds-button-primary-hover: #0050e6;
|
|
2767
|
+
--cds-button-secondary-hover: #474747;
|
|
2768
|
+
--cds-button-tertiary-hover: #0050e6;
|
|
2769
|
+
--cds-button-disabled: #c6c6c6;
|
|
2770
|
+
--cds-notification-background-error: #fff1f1;
|
|
2771
|
+
--cds-notification-background-success: #defbe6;
|
|
2772
|
+
--cds-notification-background-info: #edf5ff;
|
|
2773
|
+
--cds-notification-background-warning: #fdf6dd;
|
|
2774
|
+
--cds-notification-action-hover: #ffffff;
|
|
2775
|
+
--cds-notification-action-tertiary-inverse: #ffffff;
|
|
2776
|
+
--cds-notification-action-tertiary-inverse-active: #c6c6c6;
|
|
2777
|
+
--cds-notification-action-tertiary-inverse-hover: #f4f4f4;
|
|
2778
|
+
--cds-notification-action-tertiary-inverse-text: #161616;
|
|
2779
|
+
--cds-notification-action-tertiary-inverse-text-on-color-disabled: rgba(255, 255, 255, 0.25);
|
|
2780
|
+
--cds-tag-background-red: #ffd7d9;
|
|
2781
|
+
--cds-tag-color-red: #750e13;
|
|
2782
|
+
--cds-tag-hover-red: #ffb3b8;
|
|
2783
|
+
--cds-tag-background-magenta: #ffd6e8;
|
|
2784
|
+
--cds-tag-color-magenta: #740937;
|
|
2785
|
+
--cds-tag-hover-magenta: #ffafd2;
|
|
2786
|
+
--cds-tag-background-purple: #e8daff;
|
|
2787
|
+
--cds-tag-color-purple: #491d8b;
|
|
2788
|
+
--cds-tag-hover-purple: #d4bbff;
|
|
2789
|
+
--cds-tag-background-blue: #d0e2ff;
|
|
2790
|
+
--cds-tag-color-blue: #002d9c;
|
|
2791
|
+
--cds-tag-hover-blue: #a6c8ff;
|
|
2792
|
+
--cds-tag-background-cyan: #bae6ff;
|
|
2793
|
+
--cds-tag-color-cyan: #003a6d;
|
|
2794
|
+
--cds-tag-hover-cyan: #82cfff;
|
|
2795
|
+
--cds-tag-background-teal: #9ef0f0;
|
|
2796
|
+
--cds-tag-color-teal: #004144;
|
|
2797
|
+
--cds-tag-hover-teal: #3ddbd9;
|
|
2798
|
+
--cds-tag-background-green: #a7f0ba;
|
|
2799
|
+
--cds-tag-color-green: #044317;
|
|
2800
|
+
--cds-tag-hover-green: #6fdc8c;
|
|
2801
|
+
--cds-tag-background-gray: #e0e0e0;
|
|
2802
|
+
--cds-tag-color-gray: #393939;
|
|
2803
|
+
--cds-tag-hover-gray: #c6c6c6;
|
|
2804
|
+
--cds-tag-background-cool-gray: #dde1e6;
|
|
2805
|
+
--cds-tag-color-cool-gray: #343a3f;
|
|
2806
|
+
--cds-tag-hover-cool-gray: #c1c7cd;
|
|
2807
|
+
--cds-tag-background-warm-gray: #e5e0df;
|
|
2808
|
+
--cds-tag-color-warm-gray: #3c3838;
|
|
2809
|
+
--cds-tag-hover-warm-gray: #cac5c4;
|
|
2740
2810
|
}
|
|
2741
2811
|
|
|
2742
2812
|
.cds--g10 {
|
|
@@ -2822,7 +2892,7 @@ em {
|
|
|
2822
2892
|
--cds-support-error-inverse: #fa4d56;
|
|
2823
2893
|
--cds-support-info: #0043ce;
|
|
2824
2894
|
--cds-support-info-inverse: #4589ff;
|
|
2825
|
-
--cds-support-success: #
|
|
2895
|
+
--cds-support-success: #198038;
|
|
2826
2896
|
--cds-support-success-inverse: #42be65;
|
|
2827
2897
|
--cds-support-warning: #f1c21b;
|
|
2828
2898
|
--cds-support-warning-inverse: #f1c21b;
|
|
@@ -2836,6 +2906,74 @@ em {
|
|
|
2836
2906
|
--cds-text-primary: #161616;
|
|
2837
2907
|
--cds-text-secondary: #525252;
|
|
2838
2908
|
--cds-toggle-off: #8d8d8d;
|
|
2909
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
2910
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
2911
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
2912
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
2913
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
2914
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
2915
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
2916
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
2917
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
2918
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
2919
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
2920
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
2921
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
2922
|
+
--cds-button-separator: #e0e0e0;
|
|
2923
|
+
--cds-button-primary: #0f62fe;
|
|
2924
|
+
--cds-button-secondary: #393939;
|
|
2925
|
+
--cds-button-tertiary: #0f62fe;
|
|
2926
|
+
--cds-button-danger-primary: #da1e28;
|
|
2927
|
+
--cds-button-danger-secondary: #da1e28;
|
|
2928
|
+
--cds-button-danger-active: #750e13;
|
|
2929
|
+
--cds-button-primary-active: #002d9c;
|
|
2930
|
+
--cds-button-secondary-active: #6f6f6f;
|
|
2931
|
+
--cds-button-tertiary-active: #002d9c;
|
|
2932
|
+
--cds-button-danger-hover: #b81922;
|
|
2933
|
+
--cds-button-primary-hover: #0050e6;
|
|
2934
|
+
--cds-button-secondary-hover: #474747;
|
|
2935
|
+
--cds-button-tertiary-hover: #0050e6;
|
|
2936
|
+
--cds-button-disabled: #c6c6c6;
|
|
2937
|
+
--cds-notification-background-error: #fff1f1;
|
|
2938
|
+
--cds-notification-background-success: #defbe6;
|
|
2939
|
+
--cds-notification-background-info: #edf5ff;
|
|
2940
|
+
--cds-notification-background-warning: #fdf6dd;
|
|
2941
|
+
--cds-notification-action-hover: #ffffff;
|
|
2942
|
+
--cds-notification-action-tertiary-inverse: #ffffff;
|
|
2943
|
+
--cds-notification-action-tertiary-inverse-active: #c6c6c6;
|
|
2944
|
+
--cds-notification-action-tertiary-inverse-hover: #f4f4f4;
|
|
2945
|
+
--cds-notification-action-tertiary-inverse-text: #161616;
|
|
2946
|
+
--cds-notification-action-tertiary-inverse-text-on-color-disabled: rgba(255, 255, 255, 0.25);
|
|
2947
|
+
--cds-tag-background-red: #ffd7d9;
|
|
2948
|
+
--cds-tag-color-red: #750e13;
|
|
2949
|
+
--cds-tag-hover-red: #ffb3b8;
|
|
2950
|
+
--cds-tag-background-magenta: #ffd6e8;
|
|
2951
|
+
--cds-tag-color-magenta: #740937;
|
|
2952
|
+
--cds-tag-hover-magenta: #ffafd2;
|
|
2953
|
+
--cds-tag-background-purple: #e8daff;
|
|
2954
|
+
--cds-tag-color-purple: #491d8b;
|
|
2955
|
+
--cds-tag-hover-purple: #d4bbff;
|
|
2956
|
+
--cds-tag-background-blue: #d0e2ff;
|
|
2957
|
+
--cds-tag-color-blue: #002d9c;
|
|
2958
|
+
--cds-tag-hover-blue: #a6c8ff;
|
|
2959
|
+
--cds-tag-background-cyan: #bae6ff;
|
|
2960
|
+
--cds-tag-color-cyan: #003a6d;
|
|
2961
|
+
--cds-tag-hover-cyan: #82cfff;
|
|
2962
|
+
--cds-tag-background-teal: #9ef0f0;
|
|
2963
|
+
--cds-tag-color-teal: #004144;
|
|
2964
|
+
--cds-tag-hover-teal: #3ddbd9;
|
|
2965
|
+
--cds-tag-background-green: #a7f0ba;
|
|
2966
|
+
--cds-tag-color-green: #044317;
|
|
2967
|
+
--cds-tag-hover-green: #6fdc8c;
|
|
2968
|
+
--cds-tag-background-gray: #e0e0e0;
|
|
2969
|
+
--cds-tag-color-gray: #393939;
|
|
2970
|
+
--cds-tag-hover-gray: #c6c6c6;
|
|
2971
|
+
--cds-tag-background-cool-gray: #dde1e6;
|
|
2972
|
+
--cds-tag-color-cool-gray: #343a3f;
|
|
2973
|
+
--cds-tag-hover-cool-gray: #c1c7cd;
|
|
2974
|
+
--cds-tag-background-warm-gray: #e5e0df;
|
|
2975
|
+
--cds-tag-color-warm-gray: #3c3838;
|
|
2976
|
+
--cds-tag-hover-warm-gray: #cac5c4;
|
|
2839
2977
|
}
|
|
2840
2978
|
|
|
2841
2979
|
.cds--g90 {
|
|
@@ -2935,6 +3073,74 @@ em {
|
|
|
2935
3073
|
--cds-text-primary: #f4f4f4;
|
|
2936
3074
|
--cds-text-secondary: #c6c6c6;
|
|
2937
3075
|
--cds-toggle-off: #8d8d8d;
|
|
3076
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
3077
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
3078
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
3079
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
3080
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
3081
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
3082
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
3083
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
3084
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
3085
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
3086
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
3087
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
3088
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
3089
|
+
--cds-button-separator: #e0e0e0;
|
|
3090
|
+
--cds-button-primary: #0f62fe;
|
|
3091
|
+
--cds-button-secondary: #393939;
|
|
3092
|
+
--cds-button-tertiary: #0f62fe;
|
|
3093
|
+
--cds-button-danger-primary: #da1e28;
|
|
3094
|
+
--cds-button-danger-secondary: #da1e28;
|
|
3095
|
+
--cds-button-danger-active: #750e13;
|
|
3096
|
+
--cds-button-primary-active: #002d9c;
|
|
3097
|
+
--cds-button-secondary-active: #6f6f6f;
|
|
3098
|
+
--cds-button-tertiary-active: #002d9c;
|
|
3099
|
+
--cds-button-danger-hover: #b81922;
|
|
3100
|
+
--cds-button-primary-hover: #0050e6;
|
|
3101
|
+
--cds-button-secondary-hover: #474747;
|
|
3102
|
+
--cds-button-tertiary-hover: #0050e6;
|
|
3103
|
+
--cds-button-disabled: #c6c6c6;
|
|
3104
|
+
--cds-notification-background-error: #fff1f1;
|
|
3105
|
+
--cds-notification-background-success: #defbe6;
|
|
3106
|
+
--cds-notification-background-info: #edf5ff;
|
|
3107
|
+
--cds-notification-background-warning: #fdf6dd;
|
|
3108
|
+
--cds-notification-action-hover: #ffffff;
|
|
3109
|
+
--cds-notification-action-tertiary-inverse: #ffffff;
|
|
3110
|
+
--cds-notification-action-tertiary-inverse-active: #c6c6c6;
|
|
3111
|
+
--cds-notification-action-tertiary-inverse-hover: #f4f4f4;
|
|
3112
|
+
--cds-notification-action-tertiary-inverse-text: #161616;
|
|
3113
|
+
--cds-notification-action-tertiary-inverse-text-on-color-disabled: rgba(255, 255, 255, 0.25);
|
|
3114
|
+
--cds-tag-background-red: #ffd7d9;
|
|
3115
|
+
--cds-tag-color-red: #750e13;
|
|
3116
|
+
--cds-tag-hover-red: #ffb3b8;
|
|
3117
|
+
--cds-tag-background-magenta: #ffd6e8;
|
|
3118
|
+
--cds-tag-color-magenta: #740937;
|
|
3119
|
+
--cds-tag-hover-magenta: #ffafd2;
|
|
3120
|
+
--cds-tag-background-purple: #e8daff;
|
|
3121
|
+
--cds-tag-color-purple: #491d8b;
|
|
3122
|
+
--cds-tag-hover-purple: #d4bbff;
|
|
3123
|
+
--cds-tag-background-blue: #d0e2ff;
|
|
3124
|
+
--cds-tag-color-blue: #002d9c;
|
|
3125
|
+
--cds-tag-hover-blue: #a6c8ff;
|
|
3126
|
+
--cds-tag-background-cyan: #bae6ff;
|
|
3127
|
+
--cds-tag-color-cyan: #003a6d;
|
|
3128
|
+
--cds-tag-hover-cyan: #82cfff;
|
|
3129
|
+
--cds-tag-background-teal: #9ef0f0;
|
|
3130
|
+
--cds-tag-color-teal: #004144;
|
|
3131
|
+
--cds-tag-hover-teal: #3ddbd9;
|
|
3132
|
+
--cds-tag-background-green: #a7f0ba;
|
|
3133
|
+
--cds-tag-color-green: #044317;
|
|
3134
|
+
--cds-tag-hover-green: #6fdc8c;
|
|
3135
|
+
--cds-tag-background-gray: #e0e0e0;
|
|
3136
|
+
--cds-tag-color-gray: #393939;
|
|
3137
|
+
--cds-tag-hover-gray: #c6c6c6;
|
|
3138
|
+
--cds-tag-background-cool-gray: #dde1e6;
|
|
3139
|
+
--cds-tag-color-cool-gray: #343a3f;
|
|
3140
|
+
--cds-tag-hover-cool-gray: #c1c7cd;
|
|
3141
|
+
--cds-tag-background-warm-gray: #e5e0df;
|
|
3142
|
+
--cds-tag-color-warm-gray: #3c3838;
|
|
3143
|
+
--cds-tag-hover-warm-gray: #cac5c4;
|
|
2938
3144
|
}
|
|
2939
3145
|
|
|
2940
3146
|
.cds--g100 {
|
|
@@ -3034,6 +3240,74 @@ em {
|
|
|
3034
3240
|
--cds-text-primary: #f4f4f4;
|
|
3035
3241
|
--cds-text-secondary: #c6c6c6;
|
|
3036
3242
|
--cds-toggle-off: #6f6f6f;
|
|
3243
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
3244
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
3245
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
3246
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
3247
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
3248
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
3249
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
3250
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
3251
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
3252
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
3253
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
3254
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
3255
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
3256
|
+
--cds-button-separator: #e0e0e0;
|
|
3257
|
+
--cds-button-primary: #0f62fe;
|
|
3258
|
+
--cds-button-secondary: #393939;
|
|
3259
|
+
--cds-button-tertiary: #0f62fe;
|
|
3260
|
+
--cds-button-danger-primary: #da1e28;
|
|
3261
|
+
--cds-button-danger-secondary: #da1e28;
|
|
3262
|
+
--cds-button-danger-active: #750e13;
|
|
3263
|
+
--cds-button-primary-active: #002d9c;
|
|
3264
|
+
--cds-button-secondary-active: #6f6f6f;
|
|
3265
|
+
--cds-button-tertiary-active: #002d9c;
|
|
3266
|
+
--cds-button-danger-hover: #b81922;
|
|
3267
|
+
--cds-button-primary-hover: #0050e6;
|
|
3268
|
+
--cds-button-secondary-hover: #474747;
|
|
3269
|
+
--cds-button-tertiary-hover: #0050e6;
|
|
3270
|
+
--cds-button-disabled: #c6c6c6;
|
|
3271
|
+
--cds-notification-background-error: #fff1f1;
|
|
3272
|
+
--cds-notification-background-success: #defbe6;
|
|
3273
|
+
--cds-notification-background-info: #edf5ff;
|
|
3274
|
+
--cds-notification-background-warning: #fdf6dd;
|
|
3275
|
+
--cds-notification-action-hover: #ffffff;
|
|
3276
|
+
--cds-notification-action-tertiary-inverse: #ffffff;
|
|
3277
|
+
--cds-notification-action-tertiary-inverse-active: #c6c6c6;
|
|
3278
|
+
--cds-notification-action-tertiary-inverse-hover: #f4f4f4;
|
|
3279
|
+
--cds-notification-action-tertiary-inverse-text: #161616;
|
|
3280
|
+
--cds-notification-action-tertiary-inverse-text-on-color-disabled: rgba(255, 255, 255, 0.25);
|
|
3281
|
+
--cds-tag-background-red: #ffd7d9;
|
|
3282
|
+
--cds-tag-color-red: #750e13;
|
|
3283
|
+
--cds-tag-hover-red: #ffb3b8;
|
|
3284
|
+
--cds-tag-background-magenta: #ffd6e8;
|
|
3285
|
+
--cds-tag-color-magenta: #740937;
|
|
3286
|
+
--cds-tag-hover-magenta: #ffafd2;
|
|
3287
|
+
--cds-tag-background-purple: #e8daff;
|
|
3288
|
+
--cds-tag-color-purple: #491d8b;
|
|
3289
|
+
--cds-tag-hover-purple: #d4bbff;
|
|
3290
|
+
--cds-tag-background-blue: #d0e2ff;
|
|
3291
|
+
--cds-tag-color-blue: #002d9c;
|
|
3292
|
+
--cds-tag-hover-blue: #a6c8ff;
|
|
3293
|
+
--cds-tag-background-cyan: #bae6ff;
|
|
3294
|
+
--cds-tag-color-cyan: #003a6d;
|
|
3295
|
+
--cds-tag-hover-cyan: #82cfff;
|
|
3296
|
+
--cds-tag-background-teal: #9ef0f0;
|
|
3297
|
+
--cds-tag-color-teal: #004144;
|
|
3298
|
+
--cds-tag-hover-teal: #3ddbd9;
|
|
3299
|
+
--cds-tag-background-green: #a7f0ba;
|
|
3300
|
+
--cds-tag-color-green: #044317;
|
|
3301
|
+
--cds-tag-hover-green: #6fdc8c;
|
|
3302
|
+
--cds-tag-background-gray: #e0e0e0;
|
|
3303
|
+
--cds-tag-color-gray: #393939;
|
|
3304
|
+
--cds-tag-hover-gray: #c6c6c6;
|
|
3305
|
+
--cds-tag-background-cool-gray: #dde1e6;
|
|
3306
|
+
--cds-tag-color-cool-gray: #343a3f;
|
|
3307
|
+
--cds-tag-hover-cool-gray: #c1c7cd;
|
|
3308
|
+
--cds-tag-background-warm-gray: #e5e0df;
|
|
3309
|
+
--cds-tag-color-warm-gray: #3c3838;
|
|
3310
|
+
--cds-tag-hover-warm-gray: #cac5c4;
|
|
3037
3311
|
}
|
|
3038
3312
|
|
|
3039
3313
|
.cds--accordion {
|
|
@@ -3587,6 +3861,118 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3587
3861
|
}
|
|
3588
3862
|
}
|
|
3589
3863
|
|
|
3864
|
+
.cds--link {
|
|
3865
|
+
box-sizing: border-box;
|
|
3866
|
+
padding: 0;
|
|
3867
|
+
border: 0;
|
|
3868
|
+
margin: 0;
|
|
3869
|
+
font-family: inherit;
|
|
3870
|
+
font-size: 100%;
|
|
3871
|
+
vertical-align: baseline;
|
|
3872
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
3873
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
3874
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
3875
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
3876
|
+
display: inline-flex;
|
|
3877
|
+
color: var(--cds-link-text-color, var(--cds-link-primary, #0f62fe));
|
|
3878
|
+
outline: none;
|
|
3879
|
+
text-decoration: none;
|
|
3880
|
+
transition: color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
3881
|
+
}
|
|
3882
|
+
.cds--link *,
|
|
3883
|
+
.cds--link *::before,
|
|
3884
|
+
.cds--link *::after {
|
|
3885
|
+
box-sizing: inherit;
|
|
3886
|
+
}
|
|
3887
|
+
.cds--link:hover {
|
|
3888
|
+
color: var(--cds-link-hover-text-color, var(--cds-link-primary-hover, #0043ce));
|
|
3889
|
+
text-decoration: underline;
|
|
3890
|
+
}
|
|
3891
|
+
.cds--link:active, .cds--link:active:visited, .cds--link:active:visited:hover {
|
|
3892
|
+
color: var(--cds-text-primary, #161616);
|
|
3893
|
+
text-decoration: underline;
|
|
3894
|
+
}
|
|
3895
|
+
.cds--link:focus {
|
|
3896
|
+
outline: 1px solid var(--cds-focus, #0f62fe);
|
|
3897
|
+
outline-color: var(--cds-link-focus-text-color, var(--cds-focus, #0f62fe));
|
|
3898
|
+
}
|
|
3899
|
+
@media screen and (prefers-contrast) {
|
|
3900
|
+
.cds--link:focus {
|
|
3901
|
+
outline-style: dotted;
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
.cds--link:visited {
|
|
3905
|
+
color: var(--cds-link-primary, #0f62fe);
|
|
3906
|
+
}
|
|
3907
|
+
.cds--link:visited:hover {
|
|
3908
|
+
color: var(--cds-link-primary-hover, #0043ce);
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
.cds--link--disabled,
|
|
3912
|
+
.cds--link--disabled:hover {
|
|
3913
|
+
box-sizing: border-box;
|
|
3914
|
+
padding: 0;
|
|
3915
|
+
border: 0;
|
|
3916
|
+
margin: 0;
|
|
3917
|
+
font-family: inherit;
|
|
3918
|
+
font-size: 100%;
|
|
3919
|
+
vertical-align: baseline;
|
|
3920
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
3921
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
3922
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
3923
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
3924
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
3925
|
+
cursor: not-allowed;
|
|
3926
|
+
font-weight: 400;
|
|
3927
|
+
text-decoration: none;
|
|
3928
|
+
}
|
|
3929
|
+
.cds--link--disabled *,
|
|
3930
|
+
.cds--link--disabled *::before,
|
|
3931
|
+
.cds--link--disabled *::after,
|
|
3932
|
+
.cds--link--disabled:hover *,
|
|
3933
|
+
.cds--link--disabled:hover *::before,
|
|
3934
|
+
.cds--link--disabled:hover *::after {
|
|
3935
|
+
box-sizing: inherit;
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
.cds--link.cds--link--visited:visited {
|
|
3939
|
+
color: var(--cds-link-visited, #8a3ffc);
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
.cds--link.cds--link--visited:visited:hover {
|
|
3943
|
+
color: var(--cds-link-primary-hover, #0043ce);
|
|
3944
|
+
}
|
|
3945
|
+
|
|
3946
|
+
.cds--link.cds--link--inline {
|
|
3947
|
+
text-decoration: underline;
|
|
3948
|
+
}
|
|
3949
|
+
.cds--link.cds--link--inline:focus, .cds--link.cds--link--inline:visited {
|
|
3950
|
+
text-decoration: none;
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
.cds--link--disabled.cds--link--inline {
|
|
3954
|
+
text-decoration: underline;
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3957
|
+
.cds--link--sm {
|
|
3958
|
+
font-size: var(--cds-helper-text-01-font-size, 0.75rem);
|
|
3959
|
+
line-height: var(--cds-helper-text-01-line-height, 1.33333);
|
|
3960
|
+
letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
.cds--link--lg {
|
|
3964
|
+
font-size: var(--cds-body-compact-02-font-size, 1rem);
|
|
3965
|
+
font-weight: var(--cds-body-compact-02-font-weight, 400);
|
|
3966
|
+
line-height: var(--cds-body-compact-02-line-height, 1.375);
|
|
3967
|
+
letter-spacing: var(--cds-body-compact-02-letter-spacing, 0);
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
.cds--link__icon {
|
|
3971
|
+
display: inline-flex;
|
|
3972
|
+
align-self: center;
|
|
3973
|
+
margin-left: 0.5rem;
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3590
3976
|
.cds--assistive-text,
|
|
3591
3977
|
.cds--visually-hidden {
|
|
3592
3978
|
position: absolute;
|
|
@@ -10674,191 +11060,79 @@ button.cds--dropdown-text:focus {
|
|
|
10674
11060
|
stroke-dashoffset: 0;
|
|
10675
11061
|
}
|
|
10676
11062
|
}
|
|
10677
|
-
.cds--inline-loading {
|
|
10678
|
-
display: flex;
|
|
10679
|
-
width: 100%;
|
|
10680
|
-
min-height: 2rem;
|
|
10681
|
-
align-items: center;
|
|
10682
|
-
}
|
|
10683
|
-
|
|
10684
|
-
.cds--inline-loading__text {
|
|
10685
|
-
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
10686
|
-
font-weight: var(--cds-label-01-font-weight, 400);
|
|
10687
|
-
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
10688
|
-
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
10689
|
-
color: var(--cds-text-secondary, #525252);
|
|
10690
|
-
}
|
|
10691
|
-
|
|
10692
|
-
.cds--inline-loading__animation {
|
|
10693
|
-
position: relative;
|
|
10694
|
-
display: flex;
|
|
10695
|
-
align-items: center;
|
|
10696
|
-
justify-content: center;
|
|
10697
|
-
margin-right: 0.5rem;
|
|
10698
|
-
}
|
|
10699
|
-
|
|
10700
|
-
.cds--inline-loading__checkmark-container {
|
|
10701
|
-
fill: var(--cds-support-success, #24a148);
|
|
10702
|
-
}
|
|
10703
|
-
.cds--inline-loading__checkmark-container.cds--inline-loading__svg {
|
|
10704
|
-
position: absolute;
|
|
10705
|
-
top: 0.75rem;
|
|
10706
|
-
width: 0.75rem;
|
|
10707
|
-
}
|
|
10708
|
-
.cds--inline-loading__checkmark-container[hidden] {
|
|
10709
|
-
display: none;
|
|
10710
|
-
}
|
|
10711
|
-
|
|
10712
|
-
.cds--inline-loading__checkmark {
|
|
10713
|
-
animation-duration: 250ms;
|
|
10714
|
-
animation-fill-mode: forwards;
|
|
10715
|
-
animation-name: stroke;
|
|
10716
|
-
fill: none;
|
|
10717
|
-
stroke: var(--cds-interactive, #0f62fe);
|
|
10718
|
-
stroke-dasharray: 12;
|
|
10719
|
-
stroke-dashoffset: 12;
|
|
10720
|
-
stroke-width: 1.8;
|
|
10721
|
-
transform-origin: 50% 50%;
|
|
10722
|
-
}
|
|
10723
|
-
|
|
10724
|
-
.cds--inline-loading--error {
|
|
10725
|
-
width: 1rem;
|
|
10726
|
-
height: 1rem;
|
|
10727
|
-
fill: var(--cds-support-error, #da1e28);
|
|
10728
|
-
}
|
|
10729
|
-
.cds--inline-loading--error[hidden] {
|
|
10730
|
-
display: none;
|
|
10731
|
-
}
|
|
10732
|
-
|
|
10733
|
-
.cds--loading--small .cds--inline-loading__svg {
|
|
10734
|
-
stroke: var(--cds-interactive, #0f62fe);
|
|
10735
|
-
}
|
|
10736
|
-
|
|
10737
|
-
/* If IE11 Don't show check animation */
|
|
10738
|
-
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
10739
|
-
.cds--inline-loading__checkmark-container {
|
|
10740
|
-
top: 1px;
|
|
10741
|
-
right: 0.5rem;
|
|
10742
|
-
}
|
|
10743
|
-
|
|
10744
|
-
.cds--inline-loading__checkmark {
|
|
10745
|
-
animation: none;
|
|
10746
|
-
stroke-dasharray: 0;
|
|
10747
|
-
stroke-dashoffset: 0;
|
|
10748
|
-
}
|
|
10749
|
-
}
|
|
10750
|
-
.cds--link {
|
|
10751
|
-
box-sizing: border-box;
|
|
10752
|
-
padding: 0;
|
|
10753
|
-
border: 0;
|
|
10754
|
-
margin: 0;
|
|
10755
|
-
font-family: inherit;
|
|
10756
|
-
font-size: 100%;
|
|
10757
|
-
vertical-align: baseline;
|
|
10758
|
-
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
10759
|
-
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
10760
|
-
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
10761
|
-
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
10762
|
-
display: inline-flex;
|
|
10763
|
-
color: var(--cds-link-text-color, var(--cds-link-primary, #0f62fe));
|
|
10764
|
-
outline: none;
|
|
10765
|
-
text-decoration: none;
|
|
10766
|
-
transition: color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
10767
|
-
}
|
|
10768
|
-
.cds--link *,
|
|
10769
|
-
.cds--link *::before,
|
|
10770
|
-
.cds--link *::after {
|
|
10771
|
-
box-sizing: inherit;
|
|
10772
|
-
}
|
|
10773
|
-
.cds--link:hover {
|
|
10774
|
-
color: var(--cds-link-hover-text-color, var(--cds-link-primary-hover, #0043ce));
|
|
10775
|
-
text-decoration: underline;
|
|
10776
|
-
}
|
|
10777
|
-
.cds--link:active, .cds--link:active:visited, .cds--link:active:visited:hover {
|
|
10778
|
-
color: var(--cds-text-primary, #161616);
|
|
10779
|
-
text-decoration: underline;
|
|
10780
|
-
}
|
|
10781
|
-
.cds--link:focus {
|
|
10782
|
-
outline: 1px solid var(--cds-focus, #0f62fe);
|
|
10783
|
-
outline-color: var(--cds-link-focus-text-color, var(--cds-focus, #0f62fe));
|
|
10784
|
-
}
|
|
10785
|
-
@media screen and (prefers-contrast) {
|
|
10786
|
-
.cds--link:focus {
|
|
10787
|
-
outline-style: dotted;
|
|
10788
|
-
}
|
|
10789
|
-
}
|
|
10790
|
-
.cds--link:visited {
|
|
10791
|
-
color: var(--cds-link-primary, #0f62fe);
|
|
10792
|
-
}
|
|
10793
|
-
.cds--link:visited:hover {
|
|
10794
|
-
color: var(--cds-link-primary-hover, #0043ce);
|
|
10795
|
-
}
|
|
10796
|
-
|
|
10797
|
-
.cds--link--disabled,
|
|
10798
|
-
.cds--link--disabled:hover {
|
|
10799
|
-
box-sizing: border-box;
|
|
10800
|
-
padding: 0;
|
|
10801
|
-
border: 0;
|
|
10802
|
-
margin: 0;
|
|
10803
|
-
font-family: inherit;
|
|
10804
|
-
font-size: 100%;
|
|
10805
|
-
vertical-align: baseline;
|
|
10806
|
-
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
10807
|
-
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
10808
|
-
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
10809
|
-
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
10810
|
-
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
10811
|
-
cursor: not-allowed;
|
|
10812
|
-
font-weight: 400;
|
|
10813
|
-
text-decoration: none;
|
|
10814
|
-
}
|
|
10815
|
-
.cds--link--disabled *,
|
|
10816
|
-
.cds--link--disabled *::before,
|
|
10817
|
-
.cds--link--disabled *::after,
|
|
10818
|
-
.cds--link--disabled:hover *,
|
|
10819
|
-
.cds--link--disabled:hover *::before,
|
|
10820
|
-
.cds--link--disabled:hover *::after {
|
|
10821
|
-
box-sizing: inherit;
|
|
11063
|
+
.cds--inline-loading {
|
|
11064
|
+
display: flex;
|
|
11065
|
+
width: 100%;
|
|
11066
|
+
min-height: 2rem;
|
|
11067
|
+
align-items: center;
|
|
10822
11068
|
}
|
|
10823
11069
|
|
|
10824
|
-
.cds--
|
|
10825
|
-
|
|
11070
|
+
.cds--inline-loading__text {
|
|
11071
|
+
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
11072
|
+
font-weight: var(--cds-label-01-font-weight, 400);
|
|
11073
|
+
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
11074
|
+
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
11075
|
+
color: var(--cds-text-secondary, #525252);
|
|
10826
11076
|
}
|
|
10827
11077
|
|
|
10828
|
-
.cds--
|
|
10829
|
-
|
|
11078
|
+
.cds--inline-loading__animation {
|
|
11079
|
+
position: relative;
|
|
11080
|
+
display: flex;
|
|
11081
|
+
align-items: center;
|
|
11082
|
+
justify-content: center;
|
|
11083
|
+
margin-right: 0.5rem;
|
|
10830
11084
|
}
|
|
10831
11085
|
|
|
10832
|
-
.cds--
|
|
10833
|
-
|
|
11086
|
+
.cds--inline-loading__checkmark-container {
|
|
11087
|
+
fill: var(--cds-support-success, #198038);
|
|
10834
11088
|
}
|
|
10835
|
-
.cds--
|
|
10836
|
-
|
|
11089
|
+
.cds--inline-loading__checkmark-container.cds--inline-loading__svg {
|
|
11090
|
+
position: absolute;
|
|
11091
|
+
top: 0.75rem;
|
|
11092
|
+
width: 0.75rem;
|
|
10837
11093
|
}
|
|
10838
|
-
|
|
10839
|
-
|
|
10840
|
-
text-decoration: underline;
|
|
11094
|
+
.cds--inline-loading__checkmark-container[hidden] {
|
|
11095
|
+
display: none;
|
|
10841
11096
|
}
|
|
10842
11097
|
|
|
10843
|
-
.cds--
|
|
10844
|
-
|
|
10845
|
-
|
|
10846
|
-
|
|
11098
|
+
.cds--inline-loading__checkmark {
|
|
11099
|
+
animation-duration: 250ms;
|
|
11100
|
+
animation-fill-mode: forwards;
|
|
11101
|
+
animation-name: stroke;
|
|
11102
|
+
fill: none;
|
|
11103
|
+
stroke: var(--cds-interactive, #0f62fe);
|
|
11104
|
+
stroke-dasharray: 12;
|
|
11105
|
+
stroke-dashoffset: 12;
|
|
11106
|
+
stroke-width: 1.8;
|
|
11107
|
+
transform-origin: 50% 50%;
|
|
10847
11108
|
}
|
|
10848
11109
|
|
|
10849
|
-
.cds--
|
|
10850
|
-
|
|
10851
|
-
|
|
10852
|
-
|
|
10853
|
-
|
|
11110
|
+
.cds--inline-loading--error {
|
|
11111
|
+
width: 1rem;
|
|
11112
|
+
height: 1rem;
|
|
11113
|
+
fill: var(--cds-support-error, #da1e28);
|
|
11114
|
+
}
|
|
11115
|
+
.cds--inline-loading--error[hidden] {
|
|
11116
|
+
display: none;
|
|
10854
11117
|
}
|
|
10855
11118
|
|
|
10856
|
-
.cds--
|
|
10857
|
-
|
|
10858
|
-
align-self: center;
|
|
10859
|
-
margin-left: 0.5rem;
|
|
11119
|
+
.cds--loading--small .cds--inline-loading__svg {
|
|
11120
|
+
stroke: var(--cds-interactive, #0f62fe);
|
|
10860
11121
|
}
|
|
10861
11122
|
|
|
11123
|
+
/* If IE11 Don't show check animation */
|
|
11124
|
+
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
|
|
11125
|
+
.cds--inline-loading__checkmark-container {
|
|
11126
|
+
top: 1px;
|
|
11127
|
+
right: 0.5rem;
|
|
11128
|
+
}
|
|
11129
|
+
|
|
11130
|
+
.cds--inline-loading__checkmark {
|
|
11131
|
+
animation: none;
|
|
11132
|
+
stroke-dasharray: 0;
|
|
11133
|
+
stroke-dashoffset: 0;
|
|
11134
|
+
}
|
|
11135
|
+
}
|
|
10862
11136
|
.cds--list--nested,
|
|
10863
11137
|
.cds--list--unordered,
|
|
10864
11138
|
.cds--list--ordered,
|
|
@@ -11602,16 +11876,16 @@ button.cds--dropdown-text:focus {
|
|
|
11602
11876
|
}
|
|
11603
11877
|
|
|
11604
11878
|
.cds--inline-notification--low-contrast.cds--inline-notification--success {
|
|
11605
|
-
border-left: 3px solid var(--cds-support-success, #
|
|
11879
|
+
border-left: 3px solid var(--cds-support-success, #198038);
|
|
11606
11880
|
background: var(--cds-notification-background-success, #defbe6);
|
|
11607
11881
|
}
|
|
11608
11882
|
.cds--inline-notification--low-contrast.cds--inline-notification--success .cds--inline-notification__icon,
|
|
11609
11883
|
.cds--inline-notification--low-contrast.cds--inline-notification--success .cds--toast-notification__icon,
|
|
11610
11884
|
.cds--inline-notification--low-contrast.cds--inline-notification--success .cds--actionable-notification__icon {
|
|
11611
|
-
fill: var(--cds-support-success, #
|
|
11885
|
+
fill: var(--cds-support-success, #198038);
|
|
11612
11886
|
}
|
|
11613
11887
|
.cds--inline-notification--low-contrast.cds--inline-notification--success::before {
|
|
11614
|
-
border-color: var(--cds-support-success, #
|
|
11888
|
+
border-color: var(--cds-support-success, #198038);
|
|
11615
11889
|
}
|
|
11616
11890
|
|
|
11617
11891
|
.cds--inline-notification--info,
|
|
@@ -11927,13 +12201,13 @@ button.cds--dropdown-text:focus {
|
|
|
11927
12201
|
}
|
|
11928
12202
|
|
|
11929
12203
|
.cds--toast-notification--low-contrast.cds--toast-notification--success {
|
|
11930
|
-
border-left: 3px solid var(--cds-support-success, #
|
|
12204
|
+
border-left: 3px solid var(--cds-support-success, #198038);
|
|
11931
12205
|
background: var(--cds-notification-background-success, #defbe6);
|
|
11932
12206
|
}
|
|
11933
12207
|
.cds--toast-notification--low-contrast.cds--toast-notification--success .cds--inline-notification__icon,
|
|
11934
12208
|
.cds--toast-notification--low-contrast.cds--toast-notification--success .cds--toast-notification__icon,
|
|
11935
12209
|
.cds--toast-notification--low-contrast.cds--toast-notification--success .cds--actionable-notification__icon {
|
|
11936
|
-
fill: var(--cds-support-success, #
|
|
12210
|
+
fill: var(--cds-support-success, #198038);
|
|
11937
12211
|
}
|
|
11938
12212
|
|
|
11939
12213
|
.cds--toast-notification--info,
|
|
@@ -12241,16 +12515,16 @@ button.cds--dropdown-text:focus {
|
|
|
12241
12515
|
}
|
|
12242
12516
|
|
|
12243
12517
|
.cds--actionable-notification--low-contrast.cds--actionable-notification--success {
|
|
12244
|
-
border-left: 3px solid var(--cds-support-success, #
|
|
12518
|
+
border-left: 3px solid var(--cds-support-success, #198038);
|
|
12245
12519
|
background: var(--cds-notification-background-success, #defbe6);
|
|
12246
12520
|
}
|
|
12247
12521
|
.cds--actionable-notification--low-contrast.cds--actionable-notification--success .cds--inline-notification__icon,
|
|
12248
12522
|
.cds--actionable-notification--low-contrast.cds--actionable-notification--success .cds--toast-notification__icon,
|
|
12249
12523
|
.cds--actionable-notification--low-contrast.cds--actionable-notification--success .cds--actionable-notification__icon {
|
|
12250
|
-
fill: var(--cds-support-success, #
|
|
12524
|
+
fill: var(--cds-support-success, #198038);
|
|
12251
12525
|
}
|
|
12252
12526
|
.cds--actionable-notification--low-contrast.cds--actionable-notification--success::before {
|
|
12253
|
-
border-color: var(--cds-support-success, #
|
|
12527
|
+
border-color: var(--cds-support-success, #198038);
|
|
12254
12528
|
}
|
|
12255
12529
|
|
|
12256
12530
|
.cds--actionable-notification--info,
|
|
@@ -14556,14 +14830,23 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
14556
14830
|
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
14557
14831
|
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
14558
14832
|
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
14559
|
-
display:
|
|
14833
|
+
display: flex;
|
|
14834
|
+
min-width: 3rem;
|
|
14835
|
+
justify-content: space-between;
|
|
14560
14836
|
margin-bottom: 0.5rem;
|
|
14561
14837
|
color: var(--cds-text-primary, #161616);
|
|
14562
14838
|
}
|
|
14563
14839
|
|
|
14840
|
+
.cds--progress-bar__label-text {
|
|
14841
|
+
overflow: hidden;
|
|
14842
|
+
text-overflow: ellipsis;
|
|
14843
|
+
white-space: nowrap;
|
|
14844
|
+
}
|
|
14845
|
+
|
|
14564
14846
|
.cds--progress-bar__track {
|
|
14565
14847
|
position: relative;
|
|
14566
14848
|
width: 100%;
|
|
14849
|
+
min-width: 3rem;
|
|
14567
14850
|
height: 0.5rem;
|
|
14568
14851
|
background-color: var(--cds-layer);
|
|
14569
14852
|
}
|
|
@@ -14580,7 +14863,8 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
14580
14863
|
display: block;
|
|
14581
14864
|
width: 100%;
|
|
14582
14865
|
height: 100%;
|
|
14583
|
-
background-color:
|
|
14866
|
+
background-color: currentColor;
|
|
14867
|
+
color: var(--cds-interactive, #0f62fe);
|
|
14584
14868
|
transform: scaleX(0);
|
|
14585
14869
|
transform-origin: 0 center /*rtl:100% center*/;
|
|
14586
14870
|
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
@@ -14606,10 +14890,52 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
14606
14890
|
font-size: var(--cds-helper-text-01-font-size, 0.75rem);
|
|
14607
14891
|
line-height: var(--cds-helper-text-01-line-height, 1.33333);
|
|
14608
14892
|
letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
|
|
14609
|
-
margin-top: 0.
|
|
14893
|
+
margin-top: 0.5rem;
|
|
14610
14894
|
color: var(--cds-text-secondary, #525252);
|
|
14611
14895
|
}
|
|
14612
14896
|
|
|
14897
|
+
.cds--progress-bar__status-icon {
|
|
14898
|
+
flex-shrink: 0;
|
|
14899
|
+
margin-left: 1rem;
|
|
14900
|
+
}
|
|
14901
|
+
|
|
14902
|
+
.cds--progress-bar--finished .cds--progress-bar__bar,
|
|
14903
|
+
.cds--progress-bar--finished .cds--progress-bar__status-icon {
|
|
14904
|
+
color: var(--cds-support-success, #198038);
|
|
14905
|
+
}
|
|
14906
|
+
|
|
14907
|
+
.cds--progress-bar--error .cds--progress-bar__bar,
|
|
14908
|
+
.cds--progress-bar--error .cds--progress-bar__status-icon,
|
|
14909
|
+
.cds--progress-bar--error .cds--progress-bar__helper-text {
|
|
14910
|
+
color: var(--cds-support-error, #da1e28);
|
|
14911
|
+
}
|
|
14912
|
+
|
|
14913
|
+
.cds--progress-bar--finished .cds--progress-bar__bar,
|
|
14914
|
+
.cds--progress-bar--error .cds--progress-bar__bar {
|
|
14915
|
+
transform: scaleX(1);
|
|
14916
|
+
}
|
|
14917
|
+
|
|
14918
|
+
.cds--progress-bar--finished.cds--progress-bar--inline .cds--progress-bar__track,
|
|
14919
|
+
.cds--progress-bar--error.cds--progress-bar--inline .cds--progress-bar__track {
|
|
14920
|
+
position: absolute;
|
|
14921
|
+
overflow: hidden;
|
|
14922
|
+
width: 1px;
|
|
14923
|
+
height: 1px;
|
|
14924
|
+
padding: 0;
|
|
14925
|
+
border: 0;
|
|
14926
|
+
margin: -1px;
|
|
14927
|
+
clip: rect(0, 0, 0, 0);
|
|
14928
|
+
visibility: inherit;
|
|
14929
|
+
white-space: nowrap;
|
|
14930
|
+
}
|
|
14931
|
+
|
|
14932
|
+
.cds--progress-bar--finished.cds--progress-bar--inline .cds--progress-bar__label,
|
|
14933
|
+
.cds--progress-bar--error.cds--progress-bar--inline .cds--progress-bar__label {
|
|
14934
|
+
flex-shrink: 1;
|
|
14935
|
+
justify-content: flex-start;
|
|
14936
|
+
margin-right: 0;
|
|
14937
|
+
}
|
|
14938
|
+
|
|
14613
14939
|
@keyframes progress-bar-indeterminate {
|
|
14614
14940
|
0% {
|
|
14615
14941
|
background-position-x: 25%;
|
|
@@ -14629,6 +14955,11 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
14629
14955
|
margin-inline-end: 1rem;
|
|
14630
14956
|
}
|
|
14631
14957
|
|
|
14958
|
+
.cds--progress-bar--inline .cds--progress-bar__track {
|
|
14959
|
+
flex-basis: 0;
|
|
14960
|
+
flex-grow: 1;
|
|
14961
|
+
}
|
|
14962
|
+
|
|
14632
14963
|
.cds--progress-bar--inline .cds--progress-bar__helper-text {
|
|
14633
14964
|
position: absolute;
|
|
14634
14965
|
overflow: hidden;
|
|
@@ -15347,10 +15678,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
15347
15678
|
left: 0.75rem;
|
|
15348
15679
|
}
|
|
15349
15680
|
|
|
15350
|
-
.cds--search--md:not(.cds--toolbar-search-container-active) .cds--search-magnifier-icon {
|
|
15351
|
-
left: 0;
|
|
15352
|
-
}
|
|
15353
|
-
|
|
15354
15681
|
.cds--search--lg .cds--search-input,
|
|
15355
15682
|
.cds--search--lg.cds--search--expandable.cds--search--expanded .cds--search-input {
|
|
15356
15683
|
height: 3rem;
|
|
@@ -15864,27 +16191,27 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
15864
16191
|
}
|
|
15865
16192
|
|
|
15866
16193
|
.cds--slider--disabled .cds--slider__thumb {
|
|
15867
|
-
background-color: var(--cds-border-
|
|
16194
|
+
background-color: var(--cds-border-disabled, #c6c6c6);
|
|
15868
16195
|
}
|
|
15869
16196
|
.cds--slider--disabled .cds--slider__thumb:hover {
|
|
15870
16197
|
cursor: not-allowed;
|
|
15871
16198
|
transform: translate(-50%, -50%);
|
|
15872
16199
|
}
|
|
15873
16200
|
.cds--slider--disabled .cds--slider__thumb:focus {
|
|
15874
|
-
background-color: var(--cds-border-
|
|
16201
|
+
background-color: var(--cds-border-disabled, #c6c6c6);
|
|
15875
16202
|
box-shadow: none;
|
|
15876
16203
|
outline: none;
|
|
15877
16204
|
transform: translate(-50%, -50%);
|
|
15878
16205
|
}
|
|
15879
16206
|
.cds--slider--disabled .cds--slider__thumb:active {
|
|
15880
|
-
background: var(--cds-border-
|
|
16207
|
+
background: var(--cds-border-disabled, #c6c6c6);
|
|
15881
16208
|
transform: translate(-50%, -50%);
|
|
15882
16209
|
}
|
|
15883
16210
|
|
|
15884
16211
|
.cds--slider--disabled .cds--slider__track,
|
|
15885
16212
|
.cds--slider--disabled .cds--slider__filled-track,
|
|
15886
16213
|
.cds--slider--disabled .cds--slider__thumb:focus ~ .cds--slider__filled-track {
|
|
15887
|
-
background-color: var(--cds-border-
|
|
16214
|
+
background-color: var(--cds-border-disabled, #c6c6c6);
|
|
15888
16215
|
}
|
|
15889
16216
|
|
|
15890
16217
|
.cds--slider--disabled ~ .cds--form-item .cds--slider-text-input,
|
|
@@ -16825,6 +17152,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16825
17152
|
background-color: var(--cds-layer);
|
|
16826
17153
|
outline: 2px solid transparent;
|
|
16827
17154
|
outline-offset: -2px;
|
|
17155
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
17156
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
17157
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
17158
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
16828
17159
|
}
|
|
16829
17160
|
.cds--tile:focus {
|
|
16830
17161
|
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
@@ -16851,10 +17182,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16851
17182
|
}
|
|
16852
17183
|
|
|
16853
17184
|
.cds--tile--clickable {
|
|
16854
|
-
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
16855
|
-
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
16856
|
-
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
16857
|
-
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
16858
17185
|
color: var(--cds-text-primary, #161616);
|
|
16859
17186
|
text-decoration: none;
|
|
16860
17187
|
}
|
|
@@ -16902,6 +17229,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16902
17229
|
.cds--tile--clickable.cds--link--disabled,
|
|
16903
17230
|
.cds--tile--clickable:hover.cds--link--disabled {
|
|
16904
17231
|
display: block;
|
|
17232
|
+
padding: 1rem;
|
|
16905
17233
|
background-color: var(--cds-layer);
|
|
16906
17234
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
16907
17235
|
}
|
|
@@ -17017,6 +17345,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17017
17345
|
font-size: inherit;
|
|
17018
17346
|
text-align: left;
|
|
17019
17347
|
transition: max-height 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
17348
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
17349
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
17350
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
17351
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
17020
17352
|
}
|
|
17021
17353
|
.cds--tile--expandable:hover {
|
|
17022
17354
|
background: var(--cds-layer-hover);
|
|
@@ -17359,7 +17691,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17359
17691
|
}
|
|
17360
17692
|
|
|
17361
17693
|
.cds--toggle__switch--checked {
|
|
17362
|
-
background-color: var(--cds-support-success, #
|
|
17694
|
+
background-color: var(--cds-support-success, #198038);
|
|
17363
17695
|
}
|
|
17364
17696
|
.cds--toggle__switch--checked::before {
|
|
17365
17697
|
transform: translateX(1.5rem);
|
|
@@ -17390,7 +17722,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17390
17722
|
position: absolute;
|
|
17391
17723
|
top: 0.375rem;
|
|
17392
17724
|
right: 0.3125rem;
|
|
17393
|
-
fill: var(--cds-support-success, #
|
|
17725
|
+
fill: var(--cds-support-success, #198038);
|
|
17394
17726
|
visibility: hidden;
|
|
17395
17727
|
}
|
|
17396
17728
|
|
|
@@ -17654,18 +17986,18 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17654
17986
|
background-color: var(--cds-background-active, rgba(141, 141, 141, 0.5));
|
|
17655
17987
|
}
|
|
17656
17988
|
|
|
17657
|
-
.cds--header__action.cds--btn--icon-only
|
|
17989
|
+
.cds--header__action.cds--btn--icon-only {
|
|
17658
17990
|
align-items: center;
|
|
17659
17991
|
justify-content: center;
|
|
17660
17992
|
}
|
|
17661
17993
|
|
|
17662
|
-
.cds--btn.cds--btn--icon-only.cds--
|
|
17994
|
+
.cds--btn.cds--btn--icon-only.cds--header__action svg {
|
|
17663
17995
|
fill: var(--cds-icon-secondary, #525252);
|
|
17664
17996
|
}
|
|
17665
17997
|
|
|
17666
|
-
.cds--btn.cds--btn--icon-only.cds--
|
|
17667
|
-
.cds--btn.cds--btn--icon-only.cds--
|
|
17668
|
-
.cds--btn.cds--btn--icon-only.cds--
|
|
17998
|
+
.cds--btn.cds--btn--icon-only.cds--header__action:hover svg,
|
|
17999
|
+
.cds--btn.cds--btn--icon-only.cds--header__action:active svg,
|
|
18000
|
+
.cds--btn.cds--btn--icon-only.cds--header__action--active svg {
|
|
17669
18001
|
fill: var(--cds-icon-primary, #161616);
|
|
17670
18002
|
}
|
|
17671
18003
|
|
|
@@ -18561,18 +18893,18 @@ a.cds--side-nav__link--current::before {
|
|
|
18561
18893
|
background-color: var(--cds-background-active, rgba(141, 141, 141, 0.5));
|
|
18562
18894
|
}
|
|
18563
18895
|
|
|
18564
|
-
.cds--header__action.cds--btn--icon-only
|
|
18896
|
+
.cds--header__action.cds--btn--icon-only {
|
|
18565
18897
|
align-items: center;
|
|
18566
18898
|
justify-content: center;
|
|
18567
18899
|
}
|
|
18568
18900
|
|
|
18569
|
-
.cds--btn.cds--btn--icon-only.cds--
|
|
18901
|
+
.cds--btn.cds--btn--icon-only.cds--header__action svg {
|
|
18570
18902
|
fill: var(--cds-icon-secondary, #525252);
|
|
18571
18903
|
}
|
|
18572
18904
|
|
|
18573
|
-
.cds--btn.cds--btn--icon-only.cds--
|
|
18574
|
-
.cds--btn.cds--btn--icon-only.cds--
|
|
18575
|
-
.cds--btn.cds--btn--icon-only.cds--
|
|
18905
|
+
.cds--btn.cds--btn--icon-only.cds--header__action:hover svg,
|
|
18906
|
+
.cds--btn.cds--btn--icon-only.cds--header__action:active svg,
|
|
18907
|
+
.cds--btn.cds--btn--icon-only.cds--header__action--active svg {
|
|
18576
18908
|
fill: var(--cds-icon-primary, #161616);
|
|
18577
18909
|
}
|
|
18578
18910
|
|
|
@@ -23347,7 +23679,7 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
23347
23679
|
fill: #000000;
|
|
23348
23680
|
}
|
|
23349
23681
|
.cds--cc--meter-title g.status-indicator.status--success circle.status {
|
|
23350
|
-
fill: var(--cds-support-success, #
|
|
23682
|
+
fill: var(--cds-support-success, #198038);
|
|
23351
23683
|
}
|
|
23352
23684
|
.cds--cc--meter-title g.status-indicator path.innerFill {
|
|
23353
23685
|
fill: var(--cds-layer-01-absolute, #ffffff);
|
|
@@ -23945,7 +24277,7 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
23945
24277
|
stroke: var(--cds-alert-stroke, #b28600);
|
|
23946
24278
|
}
|
|
23947
24279
|
.cds--cc--meter rect.value.status--success {
|
|
23948
|
-
fill: var(--cds-support-success, #
|
|
24280
|
+
fill: var(--cds-support-success, #198038);
|
|
23949
24281
|
}
|
|
23950
24282
|
.cds--cc--meter line.peak {
|
|
23951
24283
|
stroke: var(--cds-border-inverse, #161616);
|
|
@@ -24019,7 +24351,7 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
24019
24351
|
fill: var(--cds-support-warning, #f1c21b);
|
|
24020
24352
|
}
|
|
24021
24353
|
.cds--cc--gauge .gauge-delta-arrow.status--success {
|
|
24022
|
-
fill: var(--cds-support-success, #
|
|
24354
|
+
fill: var(--cds-support-success, #198038);
|
|
24023
24355
|
}
|
|
24024
24356
|
|
|
24025
24357
|
.cds--cc--pie {
|
|
@@ -24239,7 +24571,7 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
24239
24571
|
--cds-support-error-inverse: #fa4d56;
|
|
24240
24572
|
--cds-support-info: #0043ce;
|
|
24241
24573
|
--cds-support-info-inverse: #4589ff;
|
|
24242
|
-
--cds-support-success: #
|
|
24574
|
+
--cds-support-success: #198038;
|
|
24243
24575
|
--cds-support-success-inverse: #42be65;
|
|
24244
24576
|
--cds-support-warning: #f1c21b;
|
|
24245
24577
|
--cds-support-warning-inverse: #f1c21b;
|
|
@@ -24561,6 +24893,19 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
24561
24893
|
--cds-zone-stroke-02: #8d8d8d;
|
|
24562
24894
|
--cds-zone-fill-03: #c6c6c6;
|
|
24563
24895
|
--cds-zone-stroke-03: #8d8d8d;
|
|
24896
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
24897
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
24898
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
24899
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
24900
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
24901
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
24902
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
24903
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
24904
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
24905
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
24906
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
24907
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
24908
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
24564
24909
|
}
|
|
24565
24910
|
|
|
24566
24911
|
.cds--chart-holder[data-carbon-theme=g10] {
|
|
@@ -24646,7 +24991,7 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
24646
24991
|
--cds-support-error-inverse: #fa4d56;
|
|
24647
24992
|
--cds-support-info: #0043ce;
|
|
24648
24993
|
--cds-support-info-inverse: #4589ff;
|
|
24649
|
-
--cds-support-success: #
|
|
24994
|
+
--cds-support-success: #198038;
|
|
24650
24995
|
--cds-support-success-inverse: #42be65;
|
|
24651
24996
|
--cds-support-warning: #f1c21b;
|
|
24652
24997
|
--cds-support-warning-inverse: #f1c21b;
|
|
@@ -24968,6 +25313,19 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
24968
25313
|
--cds-zone-stroke-02: #8d8d8d;
|
|
24969
25314
|
--cds-zone-fill-03: #c6c6c6;
|
|
24970
25315
|
--cds-zone-stroke-03: #8d8d8d;
|
|
25316
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
25317
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
25318
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
25319
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
25320
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
25321
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
25322
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
25323
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
25324
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
25325
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
25326
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
25327
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
25328
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
24971
25329
|
}
|
|
24972
25330
|
|
|
24973
25331
|
.cds--chart-holder[data-carbon-theme=g90] {
|
|
@@ -25375,6 +25733,19 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
25375
25733
|
--cds-zone-stroke-02: #6f6f6f;
|
|
25376
25734
|
--cds-zone-fill-03: #525252;
|
|
25377
25735
|
--cds-zone-stroke-03: #6f6f6f;
|
|
25736
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
25737
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
25738
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
25739
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
25740
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
25741
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
25742
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
25743
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
25744
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
25745
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
25746
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
25747
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
25748
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
25378
25749
|
}
|
|
25379
25750
|
|
|
25380
25751
|
.cds--chart-holder[data-carbon-theme=g100] {
|
|
@@ -25782,6 +26153,19 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
25782
26153
|
--cds-zone-stroke-02: #6f6f6f;
|
|
25783
26154
|
--cds-zone-fill-03: #525252;
|
|
25784
26155
|
--cds-zone-stroke-03: #6f6f6f;
|
|
26156
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
26157
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
26158
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
26159
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
26160
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
26161
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
26162
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
26163
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
26164
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
26165
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
26166
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
26167
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
26168
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
25785
26169
|
}
|
|
25786
26170
|
|
|
25787
26171
|
.cds--chart-holder.fullscreen,
|
|
@@ -25882,7 +26266,7 @@ html {
|
|
|
25882
26266
|
--cds-support-error-inverse: #fa4d56;
|
|
25883
26267
|
--cds-support-info: #0043ce;
|
|
25884
26268
|
--cds-support-info-inverse: #4589ff;
|
|
25885
|
-
--cds-support-success: #
|
|
26269
|
+
--cds-support-success: #198038;
|
|
25886
26270
|
--cds-support-success-inverse: #42be65;
|
|
25887
26271
|
--cds-support-warning: #f1c21b;
|
|
25888
26272
|
--cds-support-warning-inverse: #f1c21b;
|
|
@@ -26204,6 +26588,19 @@ html {
|
|
|
26204
26588
|
--cds-zone-stroke-02: #8d8d8d;
|
|
26205
26589
|
--cds-zone-fill-03: #c6c6c6;
|
|
26206
26590
|
--cds-zone-stroke-03: #8d8d8d;
|
|
26591
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
26592
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
26593
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
26594
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
26595
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
26596
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
26597
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
26598
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
26599
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
26600
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
26601
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
26602
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
26603
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
26207
26604
|
}
|
|
26208
26605
|
|
|
26209
26606
|
html[data-carbon-theme=g10] {
|
|
@@ -26289,7 +26686,7 @@ html[data-carbon-theme=g10] {
|
|
|
26289
26686
|
--cds-support-error-inverse: #fa4d56;
|
|
26290
26687
|
--cds-support-info: #0043ce;
|
|
26291
26688
|
--cds-support-info-inverse: #4589ff;
|
|
26292
|
-
--cds-support-success: #
|
|
26689
|
+
--cds-support-success: #198038;
|
|
26293
26690
|
--cds-support-success-inverse: #42be65;
|
|
26294
26691
|
--cds-support-warning: #f1c21b;
|
|
26295
26692
|
--cds-support-warning-inverse: #f1c21b;
|
|
@@ -26611,6 +27008,19 @@ html[data-carbon-theme=g10] {
|
|
|
26611
27008
|
--cds-zone-stroke-02: #8d8d8d;
|
|
26612
27009
|
--cds-zone-fill-03: #c6c6c6;
|
|
26613
27010
|
--cds-zone-stroke-03: #8d8d8d;
|
|
27011
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
27012
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
27013
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
27014
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
27015
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
27016
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
27017
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
27018
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
27019
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
27020
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
27021
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
27022
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
27023
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
26614
27024
|
}
|
|
26615
27025
|
|
|
26616
27026
|
html[data-carbon-theme=g90] {
|
|
@@ -27018,6 +27428,19 @@ html[data-carbon-theme=g90] {
|
|
|
27018
27428
|
--cds-zone-stroke-02: #6f6f6f;
|
|
27019
27429
|
--cds-zone-fill-03: #525252;
|
|
27020
27430
|
--cds-zone-stroke-03: #6f6f6f;
|
|
27431
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
27432
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
27433
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
27434
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
27435
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
27436
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
27437
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
27438
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
27439
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
27440
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
27441
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
27442
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
27443
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
27021
27444
|
}
|
|
27022
27445
|
|
|
27023
27446
|
html[data-carbon-theme=g100] {
|
|
@@ -27425,6 +27848,19 @@ html[data-carbon-theme=g100] {
|
|
|
27425
27848
|
--cds-zone-stroke-02: #6f6f6f;
|
|
27426
27849
|
--cds-zone-fill-03: #525252;
|
|
27427
27850
|
--cds-zone-stroke-03: #6f6f6f;
|
|
27851
|
+
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
27852
|
+
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
27853
|
+
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
27854
|
+
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
27855
|
+
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
27856
|
+
--cds-layer-accent: var(--cds-layer-accent-01, #e0e0e0);
|
|
27857
|
+
--cds-layer-accent-hover: var(--cds-layer-accent-hover-01, #d1d1d1);
|
|
27858
|
+
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
27859
|
+
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
27860
|
+
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
27861
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #e0e0e0);
|
|
27862
|
+
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
27863
|
+
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
27428
27864
|
}
|
|
27429
27865
|
|
|
27430
27866
|
div.container {
|