@carbon/charts 0.41.68 → 0.41.72

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.
Files changed (48) hide show
  1. package/CHANGELOG.md +36 -8
  2. package/build/src/components/diagrams/buildPaths.d.ts +39 -0
  3. package/build/src/components/diagrams/markerDefinitions.d.ts +37 -0
  4. package/build/src/components/index.d.ts +2 -0
  5. package/components/diagrams/buildPaths.d.ts +39 -0
  6. package/components/diagrams/buildPaths.js +71 -0
  7. package/components/diagrams/buildPaths.js.map +1 -0
  8. package/components/diagrams/markerDefinitions.d.ts +37 -0
  9. package/components/diagrams/markerDefinitions.js +38 -0
  10. package/components/diagrams/markerDefinitions.js.map +1 -0
  11. package/components/index.d.ts +2 -0
  12. package/components/index.js +3 -0
  13. package/components/index.js.map +1 -1
  14. package/demo/styles.css +1024 -172
  15. package/demo/styles.css.map +1 -1
  16. package/demo/styles.min.css +1 -1
  17. package/demo/styles.min.css.map +1 -1
  18. package/model-circle-pack.js +2 -1
  19. package/model-circle-pack.js.map +1 -1
  20. package/package.json +2 -2
  21. package/services/scales-cartesian.js.map +1 -1
  22. package/styles/components/_card.scss +98 -0
  23. package/styles/components/_circle.scss +48 -0
  24. package/styles/components/_edge.scss +68 -0
  25. package/styles/components/_marker.scss +8 -0
  26. package/styles/components/diagrams/_card-node.scss +99 -0
  27. package/styles/components/diagrams/_edge.scss +67 -0
  28. package/styles/components/diagrams/_marker.scss +8 -0
  29. package/styles/components/diagrams/_shape-node.scss +89 -0
  30. package/styles/components/diagrams/index.scss +4 -0
  31. package/styles/components/index.scss +1 -0
  32. package/styles-g10.css +398 -0
  33. package/styles-g10.css.map +1 -1
  34. package/styles-g10.min.css +1 -1
  35. package/styles-g10.min.css.map +1 -1
  36. package/styles-g100.css +398 -0
  37. package/styles-g100.css.map +1 -1
  38. package/styles-g100.min.css +1 -1
  39. package/styles-g100.min.css.map +1 -1
  40. package/styles-g90.css +398 -0
  41. package/styles-g90.css.map +1 -1
  42. package/styles-g90.min.css +1 -1
  43. package/styles-g90.min.css.map +1 -1
  44. package/styles.css +398 -0
  45. package/styles.css.map +1 -1
  46. package/styles.min.css +1 -1
  47. package/styles.min.css.map +1 -1
  48. package/tsconfig.tsbuildinfo +34 -5
package/demo/styles.css CHANGED
@@ -1843,121 +1843,484 @@ div.container.theme--white g.bx--cc--zoom-bar g.zoom-bar-brush rect.selection {
1843
1843
  fill: none;
1844
1844
  stroke: none;
1845
1845
  }
1846
- div.container.theme--white .bx--cc--area path.area,
1847
- div.container.theme--white .bx--cc--area-stacked path.area {
1848
- pointer-events: none;
1849
- }
1850
- div.container.theme--white g.bx--cc--bubble circle.dot.hovered {
1851
- fill-opacity: 1;
1852
- transition: all 0.1s;
1853
- transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
1846
+ @keyframes skeleton {
1847
+ 0% {
1848
+ width: 0%;
1849
+ left: 0;
1850
+ right: auto;
1851
+ opacity: 0.3;
1852
+ }
1853
+ 20% {
1854
+ width: 100%;
1855
+ left: 0;
1856
+ right: auto;
1857
+ opacity: 1;
1858
+ }
1859
+ 28% {
1860
+ width: 100%;
1861
+ left: auto;
1862
+ right: 0;
1863
+ }
1864
+ 51% {
1865
+ width: 0%;
1866
+ left: auto;
1867
+ right: 0;
1868
+ }
1869
+ 58% {
1870
+ width: 0%;
1871
+ left: auto;
1872
+ right: 0;
1873
+ }
1874
+ 82% {
1875
+ width: 100%;
1876
+ left: auto;
1877
+ right: 0;
1878
+ }
1879
+ 83% {
1880
+ width: 100%;
1881
+ left: 0;
1882
+ right: auto;
1883
+ }
1884
+ 96% {
1885
+ width: 0%;
1886
+ left: 0;
1887
+ right: auto;
1888
+ }
1889
+ 100% {
1890
+ width: 0%;
1891
+ left: 0;
1892
+ right: auto;
1893
+ opacity: 0.3;
1894
+ }
1854
1895
  }
1855
- div.container.theme--white g.bx--cc--bubble circle.dot.unfilled {
1856
- fill: #f4f4f4;
1896
+ div.container.theme--white .bx--cc--card-node {
1897
+ display: flex;
1898
+ position: relative;
1899
+ background-color: #f4f4f4;
1900
+ z-index: 1;
1901
+ box-sizing: border-box;
1902
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
1903
+ width: 100%;
1904
+ height: 100%;
1905
+ padding: 1rem 0.5rem;
1906
+ border-left: 0.25rem solid #161616;
1857
1907
  }
1858
- div.container.theme--white g.bx--cc--bubble g.lines path.line {
1859
- mix-blend-mode: multiply;
1908
+ div.container.theme--white .bx--cc--card-node--a,
1909
+ div.container.theme--white .bx--cc--card-node--button {
1910
+ border-top: none;
1911
+ border-right: none;
1912
+ border-bottom: none;
1913
+ color: inherit;
1914
+ text-decoration: none;
1915
+ cursor: pointer;
1860
1916
  }
1861
- div.container.theme--white g.bx--cc--bullet path.range-box {
1862
- pointer-events: none;
1917
+ div.container.theme--white .bx--cc--card-node--button {
1918
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
1919
+ text-align: left;
1920
+ width: 100%;
1863
1921
  }
1864
- div.container.theme--white g.bx--cc--bullet path.range-box.order-1 {
1865
- fill: #f4f4f4;
1866
- stroke: #8d8d8d;
1922
+ div.container.theme--white .bx--cc--card-node--a:focus,
1923
+ div.container.theme--white .bx--cc--card-node--a:hover,
1924
+ div.container.theme--white .bx--cc--card-node--button:focus,
1925
+ div.container.theme--white .bx--cc--card-node--button:hover {
1926
+ background-color: #e5e5e5;
1867
1927
  }
1868
- div.container.theme--white g.bx--cc--bullet path.range-box.order-2 {
1869
- fill: #e0e0e0;
1870
- stroke: #8d8d8d;
1928
+ div.container.theme--white .bx--cc--card-node--a:focus,
1929
+ div.container.theme--white .bx--cc--card-node--button:focus {
1930
+ outline: 2px solid #0f62fe;
1931
+ outline-offset: -2px;
1871
1932
  }
1872
- div.container.theme--white g.bx--cc--bullet path.range-box.order-3 {
1873
- fill: #c6c6c6;
1874
- stroke: #8d8d8d;
1933
+ div.container.theme--white .bx--cc--card-node--stacked::before {
1934
+ content: "";
1935
+ height: 100%;
1936
+ width: 100%;
1937
+ position: absolute;
1938
+ z-index: 0;
1939
+ border-top: 0.125rem solid #e0e0e0;
1940
+ border-right: 0.125rem solid #e0e0e0;
1941
+ pointer-events: none;
1942
+ left: 0.3125rem;
1943
+ bottom: 0.3125rem;
1875
1944
  }
1876
- div.container.theme--white g.bx--cc--bullet path.marker,
1877
- div.container.theme--white g.bx--cc--bullet path.quartile {
1945
+ div.container.theme--white .bx--cc--card-node--stacked::after {
1946
+ content: "";
1947
+ height: 100%;
1948
+ width: 100%;
1949
+ position: absolute;
1950
+ z-index: 0;
1951
+ border-top: 0.125rem solid #e0e0e0;
1952
+ border-right: 0.125rem solid #e0e0e0;
1878
1953
  pointer-events: none;
1879
- stroke-width: 1.5px;
1880
- stroke: #000;
1954
+ left: 0.6875rem;
1955
+ bottom: 0.6875rem;
1881
1956
  }
1882
- div.container.theme--white g.bx--cc--bullet path.quartile.over-bar {
1883
- stroke: #fff;
1957
+ div.container.theme--white .bx--cc--card-node__column {
1958
+ padding: 0 0.5rem;
1884
1959
  }
1885
- div.container.theme--white .bx--cc--line path.line {
1886
- pointer-events: none;
1887
- fill: none;
1888
- stroke-width: 1.5;
1960
+ div.container.theme--white .bx--cc--card-node__column--farside {
1961
+ margin-left: auto;
1889
1962
  }
1890
- div.container.theme--white .bx--cc--line path.line.sparkline-loading {
1891
- animation: shimmer 2.5s infinite linear;
1963
+ div.container.theme--white .bx--cc--card-node__title {
1964
+ font-size: 0.875rem;
1965
+ font-weight: 600;
1966
+ line-height: 1.29;
1967
+ letter-spacing: 0.16px;
1968
+ margin: 0;
1892
1969
  }
1893
- @keyframes shimmer {
1970
+ div.container.theme--white .bx--cc--card-node__subtitle {
1971
+ font-size: 0.875rem;
1972
+ font-weight: 400;
1973
+ line-height: 1.29;
1974
+ letter-spacing: 0.16px;
1975
+ margin: 0;
1976
+ }
1977
+ div.container.theme--white .bx--cc--card-node__label {
1978
+ display: block;
1979
+ font-size: 0.75rem;
1980
+ font-weight: 400;
1981
+ line-height: 1.34;
1982
+ letter-spacing: 0.32px;
1983
+ color: #525252;
1984
+ padding-top: 1.5rem;
1985
+ }
1986
+ @keyframes skeleton {
1894
1987
  0% {
1895
- stroke: #e0e0e0;
1988
+ width: 0%;
1989
+ left: 0;
1990
+ right: auto;
1991
+ opacity: 0.3;
1896
1992
  }
1897
1993
  20% {
1898
- stroke: #ffffff;
1899
- opacity: 0.5;
1994
+ width: 100%;
1995
+ left: 0;
1996
+ right: auto;
1997
+ opacity: 1;
1998
+ }
1999
+ 28% {
2000
+ width: 100%;
2001
+ left: auto;
2002
+ right: 0;
2003
+ }
2004
+ 51% {
2005
+ width: 0%;
2006
+ left: auto;
2007
+ right: 0;
2008
+ }
2009
+ 58% {
2010
+ width: 0%;
2011
+ left: auto;
2012
+ right: 0;
2013
+ }
2014
+ 82% {
2015
+ width: 100%;
2016
+ left: auto;
2017
+ right: 0;
2018
+ }
2019
+ 83% {
2020
+ width: 100%;
2021
+ left: 0;
2022
+ right: auto;
2023
+ }
2024
+ 96% {
2025
+ width: 0%;
2026
+ left: 0;
2027
+ right: auto;
1900
2028
  }
1901
2029
  100% {
1902
- stroke: #e0e0e0;
2030
+ width: 0%;
2031
+ left: 0;
2032
+ right: auto;
2033
+ opacity: 0.3;
1903
2034
  }
1904
2035
  }
1905
- div.container.theme--white g.bx--cc--scatter circle.dot.hovered {
1906
- fill-opacity: 1;
1907
- transition: all 0.1s;
1908
- transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
1909
- }
1910
- div.container.theme--white g.bx--cc--scatter circle.dot.unfilled {
1911
- fill: #f4f4f4;
1912
- stroke-width: 1.5;
1913
- }
1914
- div.container.theme--white g.bx--cc--scatter circle.dot.threshold-anomaly {
1915
- stroke-width: 3;
2036
+ div.container.theme--white .bx--cc--shape-node {
2037
+ display: flex;
2038
+ justify-content: center;
2039
+ align-items: center;
2040
+ background-color: #f4f4f4;
2041
+ box-sizing: border-box;
2042
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
2043
+ width: 100%;
2044
+ height: 100%;
2045
+ position: relative;
1916
2046
  }
1917
- div.container.theme--white g.bx--cc--scatter g.lines path.line {
1918
- mix-blend-mode: multiply;
2047
+ div.container.theme--white .bx--cc--shape-node--circle {
2048
+ border-radius: 100%;
1919
2049
  }
1920
- div.container.theme--white .bx--cc--meter rect.container {
1921
- fill: #f4f4f4;
2050
+ div.container.theme--white .bx--cc--shape-node--square {
2051
+ border-radius: 0;
1922
2052
  }
1923
- div.container.theme--white .bx--cc--meter rect.value.status--danger {
1924
- fill: #da1e28;
2053
+ div.container.theme--white .bx--cc--shape-node--rounded-square {
2054
+ border-radius: 0.5rem;
1925
2055
  }
1926
- div.container.theme--white .bx--cc--meter rect.value.status--warning {
1927
- fill: #f1c21b;
1928
- stroke-width: 1px;
1929
- stroke: #b28600;
2056
+ div.container.theme--white .bx--cc--shape-node--a,
2057
+ div.container.theme--white .bx--cc--shape-node--button {
2058
+ border: none;
2059
+ color: inherit;
2060
+ text-decoration: none;
2061
+ cursor: pointer;
1930
2062
  }
1931
- div.container.theme--white .bx--cc--meter rect.value.status--success {
1932
- fill: #24a148;
2063
+ div.container.theme--white .bx--cc--shape-node--button {
2064
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
2065
+ text-align: left;
2066
+ width: 100%;
1933
2067
  }
1934
- div.container.theme--white .bx--cc--meter line.peak {
1935
- stroke: #161616;
1936
- stroke-width: 2px;
2068
+ div.container.theme--white .bx--cc--shape-node--a:focus,
2069
+ div.container.theme--white .bx--cc--shape-node--a:hover,
2070
+ div.container.theme--white .bx--cc--shape-node--button:focus,
2071
+ div.container.theme--white .bx--cc--shape-node--button:hover {
2072
+ background-color: #e5e5e5;
1937
2073
  }
1938
- div.container.theme--white g.bx--cc--scatter-stacked circle.dot.unfilled {
1939
- fill: #f4f4f4;
1940
- stroke-width: 1.5;
2074
+ div.container.theme--white .bx--cc--shape-node--a:focus .bx--cc--shape-node__title,
2075
+ div.container.theme--white .bx--cc--shape-node--a:focus .bx--cc--shape-node__subtitle,
2076
+ div.container.theme--white .bx--cc--shape-node--a:hover .bx--cc--shape-node__title,
2077
+ div.container.theme--white .bx--cc--shape-node--a:hover .bx--cc--shape-node__subtitle,
2078
+ div.container.theme--white .bx--cc--shape-node--button:focus .bx--cc--shape-node__title,
2079
+ div.container.theme--white .bx--cc--shape-node--button:focus .bx--cc--shape-node__subtitle,
2080
+ div.container.theme--white .bx--cc--shape-node--button:hover .bx--cc--shape-node__title,
2081
+ div.container.theme--white .bx--cc--shape-node--button:hover .bx--cc--shape-node__subtitle {
2082
+ font-weight: 600;
1941
2083
  }
1942
- div.container.theme--white g.bx--cc--scatter-stacked circle.dot.threshold-anomaly {
1943
- stroke-width: 3;
2084
+ div.container.theme--white .bx--cc--shape-node--a:focus:focus,
2085
+ div.container.theme--white .bx--cc--shape-node--button:focus:focus {
2086
+ outline: none;
2087
+ box-shadow: 0 0 0 2px #0f62fe;
1944
2088
  }
1945
- div.container.theme--white .bx--cc--radar .blobs path {
1946
- stroke-width: 1.5px;
2089
+ div.container.theme--white .bx--cc--shape-node__body {
2090
+ position: absolute;
2091
+ top: calc(100% + 0.125rem);
2092
+ text-align: center;
1947
2093
  }
1948
- div.container.theme--white .bx--cc--radar .y-axes path,
1949
- div.container.theme--white .bx--cc--radar .x-axes line {
1950
- stroke-width: 1px;
1951
- stroke: #e0e0e0;
2094
+ div.container.theme--white .bx--cc--shape-node__subtitle {
2095
+ padding-bottom: 0.125rem;
2096
+ font-size: 0.875rem;
2097
+ font-weight: 400;
2098
+ line-height: 1.29;
2099
+ letter-spacing: 0.16px;
2100
+ color: #161616;
1952
2101
  }
1953
- div.container.theme--white .bx--cc--radar .x-axes line.hovered {
1954
- stroke: #000000;
2102
+ div.container.theme--white .bx--cc--shape-node__icon {
2103
+ display: flex;
1955
2104
  }
1956
- div.container.theme--white g.bx--cc--treemap text {
1957
- pointer-events: none;
2105
+ div.container.theme--white .bx--cc--shape-node__title {
2106
+ font-size: 0.875rem;
2107
+ font-weight: 400;
2108
+ line-height: 1.29;
2109
+ letter-spacing: 0.16px;
2110
+ color: #161616;
2111
+ padding-top: 0.125rem;
2112
+ margin-bottom: 1px;
1958
2113
  }
1959
- div.container.theme--white .bx--cc--gauge path.arc-background {
1960
- fill: #f4f4f4;
2114
+ @keyframes skeleton {
2115
+ 0% {
2116
+ width: 0%;
2117
+ left: 0;
2118
+ right: auto;
2119
+ opacity: 0.3;
2120
+ }
2121
+ 20% {
2122
+ width: 100%;
2123
+ left: 0;
2124
+ right: auto;
2125
+ opacity: 1;
2126
+ }
2127
+ 28% {
2128
+ width: 100%;
2129
+ left: auto;
2130
+ right: 0;
2131
+ }
2132
+ 51% {
2133
+ width: 0%;
2134
+ left: auto;
2135
+ right: 0;
2136
+ }
2137
+ 58% {
2138
+ width: 0%;
2139
+ left: auto;
2140
+ right: 0;
2141
+ }
2142
+ 82% {
2143
+ width: 100%;
2144
+ left: auto;
2145
+ right: 0;
2146
+ }
2147
+ 83% {
2148
+ width: 100%;
2149
+ left: 0;
2150
+ right: auto;
2151
+ }
2152
+ 96% {
2153
+ width: 0%;
2154
+ left: 0;
2155
+ right: auto;
2156
+ }
2157
+ 100% {
2158
+ width: 0%;
2159
+ left: 0;
2160
+ right: auto;
2161
+ opacity: 0.3;
2162
+ }
2163
+ }
2164
+ div.container.theme--white .bx--cc--edge {
2165
+ fill: transparent;
2166
+ }
2167
+ div.container.theme--white .bx--cc--edge__container {
2168
+ stroke-width: 1.5rem;
2169
+ stroke: transparent;
2170
+ stroke-dasharray: none;
2171
+ }
2172
+ div.container.theme--white .bx--cc--edge__inner {
2173
+ stroke-width: 0.0625rem;
2174
+ stroke: #8d8d8d;
2175
+ }
2176
+ div.container.theme--white .bx--cc--edge__outer {
2177
+ stroke-width: 0.15625rem;
2178
+ stroke: transparent;
2179
+ }
2180
+ div.container.theme--white .bx--cc--edge:hover .bx--cc--edge__inner {
2181
+ stroke-width: 0.15625rem;
2182
+ }
2183
+ div.container.theme--white .bx--cc--edge--dash-sm {
2184
+ stroke-dasharray: 0.125rem 0.25rem;
2185
+ }
2186
+ div.container.theme--white .bx--cc--edge--dash-md {
2187
+ stroke-dasharray: 0.25rem 0.25rem;
2188
+ }
2189
+ div.container.theme--white .bx--cc--edge--dash-lg {
2190
+ stroke-dasharray: 0.5rem 0.25rem;
2191
+ }
2192
+ div.container.theme--white .bx--cc--edge--dash-xl {
2193
+ stroke-dasharray: 1rem 0.25rem;
2194
+ }
2195
+ div.container.theme--white .bx--cc--edge--tunnel .bx--cc--edge__outer {
2196
+ stroke: #e0e0e0;
2197
+ stroke-width: 0.375rem;
2198
+ }
2199
+ div.container.theme--white .bx--cc--edge--double .bx--cc--edge__inner {
2200
+ stroke: #ffffff;
2201
+ }
2202
+ div.container.theme--white .bx--cc--edge--double .bx--cc--edge__outer {
2203
+ stroke: #161616;
2204
+ stroke-width: 0.28125rem;
2205
+ }
2206
+ div.container.theme--white .bx--cc--marker {
2207
+ fill: #161616;
2208
+ }
2209
+ div.container.theme--white .bx--cc--area path.area,
2210
+ div.container.theme--white .bx--cc--area-stacked path.area {
2211
+ pointer-events: none;
2212
+ }
2213
+ div.container.theme--white g.bx--cc--bubble circle.dot.hovered {
2214
+ fill-opacity: 1;
2215
+ transition: all 0.1s;
2216
+ transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
2217
+ }
2218
+ div.container.theme--white g.bx--cc--bubble circle.dot.unfilled {
2219
+ fill: #f4f4f4;
2220
+ }
2221
+ div.container.theme--white g.bx--cc--bubble g.lines path.line {
2222
+ mix-blend-mode: multiply;
2223
+ }
2224
+ div.container.theme--white g.bx--cc--bullet path.range-box {
2225
+ pointer-events: none;
2226
+ }
2227
+ div.container.theme--white g.bx--cc--bullet path.range-box.order-1 {
2228
+ fill: #f4f4f4;
2229
+ stroke: #8d8d8d;
2230
+ }
2231
+ div.container.theme--white g.bx--cc--bullet path.range-box.order-2 {
2232
+ fill: #e0e0e0;
2233
+ stroke: #8d8d8d;
2234
+ }
2235
+ div.container.theme--white g.bx--cc--bullet path.range-box.order-3 {
2236
+ fill: #c6c6c6;
2237
+ stroke: #8d8d8d;
2238
+ }
2239
+ div.container.theme--white g.bx--cc--bullet path.marker,
2240
+ div.container.theme--white g.bx--cc--bullet path.quartile {
2241
+ pointer-events: none;
2242
+ stroke-width: 1.5px;
2243
+ stroke: #000;
2244
+ }
2245
+ div.container.theme--white g.bx--cc--bullet path.quartile.over-bar {
2246
+ stroke: #fff;
2247
+ }
2248
+ div.container.theme--white .bx--cc--line path.line {
2249
+ pointer-events: none;
2250
+ fill: none;
2251
+ stroke-width: 1.5;
2252
+ }
2253
+ div.container.theme--white .bx--cc--line path.line.sparkline-loading {
2254
+ animation: shimmer 2.5s infinite linear;
2255
+ }
2256
+ @keyframes shimmer {
2257
+ 0% {
2258
+ stroke: #e0e0e0;
2259
+ }
2260
+ 20% {
2261
+ stroke: #ffffff;
2262
+ opacity: 0.5;
2263
+ }
2264
+ 100% {
2265
+ stroke: #e0e0e0;
2266
+ }
2267
+ }
2268
+ div.container.theme--white g.bx--cc--scatter circle.dot.hovered {
2269
+ fill-opacity: 1;
2270
+ transition: all 0.1s;
2271
+ transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
2272
+ }
2273
+ div.container.theme--white g.bx--cc--scatter circle.dot.unfilled {
2274
+ fill: #f4f4f4;
2275
+ stroke-width: 1.5;
2276
+ }
2277
+ div.container.theme--white g.bx--cc--scatter circle.dot.threshold-anomaly {
2278
+ stroke-width: 3;
2279
+ }
2280
+ div.container.theme--white g.bx--cc--scatter g.lines path.line {
2281
+ mix-blend-mode: multiply;
2282
+ }
2283
+ div.container.theme--white .bx--cc--meter rect.container {
2284
+ fill: #f4f4f4;
2285
+ }
2286
+ div.container.theme--white .bx--cc--meter rect.value.status--danger {
2287
+ fill: #da1e28;
2288
+ }
2289
+ div.container.theme--white .bx--cc--meter rect.value.status--warning {
2290
+ fill: #f1c21b;
2291
+ stroke-width: 1px;
2292
+ stroke: #b28600;
2293
+ }
2294
+ div.container.theme--white .bx--cc--meter rect.value.status--success {
2295
+ fill: #24a148;
2296
+ }
2297
+ div.container.theme--white .bx--cc--meter line.peak {
2298
+ stroke: #161616;
2299
+ stroke-width: 2px;
2300
+ }
2301
+ div.container.theme--white g.bx--cc--scatter-stacked circle.dot.unfilled {
2302
+ fill: #f4f4f4;
2303
+ stroke-width: 1.5;
2304
+ }
2305
+ div.container.theme--white g.bx--cc--scatter-stacked circle.dot.threshold-anomaly {
2306
+ stroke-width: 3;
2307
+ }
2308
+ div.container.theme--white .bx--cc--radar .blobs path {
2309
+ stroke-width: 1.5px;
2310
+ }
2311
+ div.container.theme--white .bx--cc--radar .y-axes path,
2312
+ div.container.theme--white .bx--cc--radar .x-axes line {
2313
+ stroke-width: 1px;
2314
+ stroke: #e0e0e0;
2315
+ }
2316
+ div.container.theme--white .bx--cc--radar .x-axes line.hovered {
2317
+ stroke: #000000;
2318
+ }
2319
+ div.container.theme--white g.bx--cc--treemap text {
2320
+ pointer-events: none;
2321
+ }
2322
+ div.container.theme--white .bx--cc--gauge path.arc-background {
2323
+ fill: #f4f4f4;
1961
2324
  }
1962
2325
  div.container.theme--white .bx--cc--gauge .gauge-delta-arrow.status--danger {
1963
2326
  fill: #da1e28;
@@ -3671,109 +4034,358 @@ div.container.theme--g10 g.bx--cc--legend g.legend-item rect.hover-stroke {
3671
4034
  stroke: #0f62fe;
3672
4035
  stroke-width: 2;
3673
4036
  }
3674
- div.container.theme--g10 g.bx--cc--legend g.legend-item g.check > svg path {
3675
- fill: #f4f4f4;
3676
- stroke: #f4f4f4;
4037
+ div.container.theme--g10 g.bx--cc--legend g.legend-item g.check > svg path {
4038
+ fill: #f4f4f4;
4039
+ stroke: #f4f4f4;
4040
+ }
4041
+ div.container.theme--g10 g.bx--cc--legend g.legend-item text {
4042
+ font-size: 12px;
4043
+ fill: #525252;
4044
+ }
4045
+ div.container.theme--g10 g.bx--cc--legend g.additional-item .zoom {
4046
+ fill: #525252;
4047
+ }
4048
+ div.container.theme--g10 g.bx--cc--legend.clickable g.legend-item:hover {
4049
+ cursor: pointer;
4050
+ }
4051
+ div.container.theme--g10 .bx--cc--title text.title {
4052
+ fill: #161616;
4053
+ font-size: 16px;
4054
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
4055
+ font-weight: 600;
4056
+ }
4057
+ div.container.theme--g10 .bx--cc--meter-title text.meter-title,
4058
+ div.container.theme--g10 .bx--cc--meter-title text.percent-value {
4059
+ fill: #161616;
4060
+ }
4061
+ div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--danger circle.status {
4062
+ fill: #da1e28;
4063
+ }
4064
+ div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--warning circle.status {
4065
+ fill: #f1c21b;
4066
+ }
4067
+ div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--warning path.innerFill {
4068
+ fill: #000000;
4069
+ }
4070
+ div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--success circle.status {
4071
+ fill: #24a148;
4072
+ }
4073
+ div.container.theme--g10 .bx--cc--meter-title g.status-indicator path.innerFill {
4074
+ fill: #ffffff;
4075
+ }
4076
+ @keyframes skeleton {
4077
+ 0% {
4078
+ width: 0%;
4079
+ left: 0;
4080
+ right: auto;
4081
+ opacity: 0.3;
4082
+ }
4083
+ 20% {
4084
+ width: 100%;
4085
+ left: 0;
4086
+ right: auto;
4087
+ opacity: 1;
4088
+ }
4089
+ 28% {
4090
+ width: 100%;
4091
+ left: auto;
4092
+ right: 0;
4093
+ }
4094
+ 51% {
4095
+ width: 0%;
4096
+ left: auto;
4097
+ right: 0;
4098
+ }
4099
+ 58% {
4100
+ width: 0%;
4101
+ left: auto;
4102
+ right: 0;
4103
+ }
4104
+ 82% {
4105
+ width: 100%;
4106
+ left: auto;
4107
+ right: 0;
4108
+ }
4109
+ 83% {
4110
+ width: 100%;
4111
+ left: 0;
4112
+ right: auto;
4113
+ }
4114
+ 96% {
4115
+ width: 0%;
4116
+ left: 0;
4117
+ right: auto;
4118
+ }
4119
+ 100% {
4120
+ width: 0%;
4121
+ left: 0;
4122
+ right: auto;
4123
+ opacity: 0.3;
4124
+ }
4125
+ }
4126
+ div.container.theme--g10 .bx--text-truncate--end {
4127
+ width: 100%;
4128
+ display: inline-block;
4129
+ text-overflow: ellipsis;
4130
+ white-space: nowrap;
4131
+ overflow: hidden;
4132
+ }
4133
+ div.container.theme--g10 .bx--text-truncate--front {
4134
+ width: 100%;
4135
+ display: inline-block;
4136
+ direction: rtl;
4137
+ text-overflow: ellipsis;
4138
+ white-space: nowrap;
4139
+ overflow: hidden;
4140
+ }
4141
+ div.container.theme--g10 .bx--overflow-menu__trigger {
4142
+ box-sizing: border-box;
4143
+ margin: 0;
4144
+ padding: 0;
4145
+ border: 0;
4146
+ font-size: 100%;
4147
+ font-family: inherit;
4148
+ vertical-align: baseline;
4149
+ display: inline-block;
4150
+ background: none;
4151
+ appearance: none;
4152
+ border: 0;
4153
+ padding: 0;
4154
+ cursor: pointer;
4155
+ width: 100%;
4156
+ }
4157
+ div.container.theme--g10 .bx--overflow-menu__trigger > *, div.container.theme--g10 .bx--overflow-menu__trigger > *:before, div.container.theme--g10 .bx--overflow-menu__trigger > *:after {
4158
+ box-sizing: inherit;
4159
+ }
4160
+ div.container.theme--g10 .bx--overflow-menu__trigger::-moz-focus-inner {
4161
+ border: 0;
4162
+ }
4163
+ div.container.theme--g10 .bx--overflow-menu,
4164
+ div.container.theme--g10 .bx--overflow-menu__trigger {
4165
+ box-sizing: border-box;
4166
+ margin: 0;
4167
+ padding: 0;
4168
+ border: 0;
4169
+ font-size: 100%;
4170
+ font-family: inherit;
4171
+ vertical-align: baseline;
4172
+ outline: 2px solid transparent;
4173
+ outline-offset: -2px;
4174
+ position: relative;
4175
+ width: 2rem;
4176
+ height: 2rem;
4177
+ display: flex;
4178
+ align-items: center;
4179
+ justify-content: center;
4180
+ cursor: pointer;
4181
+ transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
4182
+ }
4183
+ div.container.theme--g10 .bx--overflow-menu > *, div.container.theme--g10 .bx--overflow-menu > *:before, div.container.theme--g10 .bx--overflow-menu > *:after,
4184
+ div.container.theme--g10 .bx--overflow-menu__trigger > *,
4185
+ div.container.theme--g10 .bx--overflow-menu__trigger > *:before,
4186
+ div.container.theme--g10 .bx--overflow-menu__trigger > *:after {
4187
+ box-sizing: inherit;
4188
+ }
4189
+ div.container.theme--g10 .bx--overflow-menu:focus,
4190
+ div.container.theme--g10 .bx--overflow-menu__trigger:focus {
4191
+ outline: 2px solid #0f62fe;
4192
+ outline-offset: -2px;
4193
+ }
4194
+ div.container.theme--g10 .bx--overflow-menu:hover,
4195
+ div.container.theme--g10 .bx--overflow-menu__trigger:hover {
4196
+ background-color: #e5e5e5;
4197
+ }
4198
+ div.container.theme--g10 .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus {
4199
+ outline: 2px solid #0f62fe;
4200
+ outline-offset: -2px;
4201
+ }
4202
+ div.container.theme--g10 .bx--overflow-menu__trigger.bx--tooltip--a11y.bx--tooltip__trigger:focus svg {
4203
+ outline: none;
4204
+ }
4205
+ div.container.theme--g10 .bx--overflow-menu.bx--overflow-menu--open,
4206
+ div.container.theme--g10 .bx--overflow-menu.bx--overflow-menu--open .bx--overflow-menu__trigger {
4207
+ background-color: #ffffff;
4208
+ transition: none;
4209
+ box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
4210
+ }
4211
+ div.container.theme--g10 .bx--overflow-menu__icon {
4212
+ height: 1rem;
4213
+ width: 1rem;
4214
+ fill: #161616;
4215
+ }
4216
+ div.container.theme--g10 .bx--overflow-menu-options {
4217
+ box-sizing: border-box;
4218
+ margin: 0;
4219
+ padding: 0;
4220
+ border: 0;
4221
+ font-size: 100%;
4222
+ font-family: inherit;
4223
+ vertical-align: baseline;
4224
+ box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
4225
+ display: none;
4226
+ flex-direction: column;
4227
+ align-items: flex-start;
4228
+ position: absolute;
4229
+ z-index: 10000;
4230
+ background-color: #ffffff;
4231
+ width: 10rem;
4232
+ list-style: none;
4233
+ top: 32px;
4234
+ left: 0;
4235
+ }
4236
+ div.container.theme--g10 .bx--overflow-menu-options > *, div.container.theme--g10 .bx--overflow-menu-options > *:before, div.container.theme--g10 .bx--overflow-menu-options > *:after {
4237
+ box-sizing: inherit;
4238
+ }
4239
+ div.container.theme--g10 .bx--overflow-menu-options::after {
4240
+ content: "";
4241
+ position: absolute;
4242
+ display: block;
4243
+ background-color: #ffffff;
4244
+ transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
4245
+ }
4246
+ div.container.theme--g10 .bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
4247
+ top: -0.1875rem;
4248
+ left: 0;
4249
+ width: 2rem;
4250
+ height: 0.1875rem;
4251
+ }
4252
+ div.container.theme--g10 .bx--overflow-menu-options[data-floating-menu-direction=top]::after {
4253
+ bottom: -0.375rem;
4254
+ left: 0;
4255
+ width: 2rem;
4256
+ height: 0.375rem;
4257
+ }
4258
+ div.container.theme--g10 .bx--overflow-menu-options[data-floating-menu-direction=left]::after {
4259
+ right: -0.375rem;
4260
+ top: 0;
4261
+ height: 2rem;
4262
+ width: 0.375rem;
4263
+ }
4264
+ div.container.theme--g10 .bx--overflow-menu-options[data-floating-menu-direction=right]::after {
4265
+ top: 0;
4266
+ left: -0.375rem;
4267
+ height: 2rem;
4268
+ width: 0.375rem;
4269
+ }
4270
+ div.container.theme--g10 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=top]::after,
4271
+ div.container.theme--g10 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
4272
+ left: auto;
4273
+ right: 0;
4274
+ }
4275
+ div.container.theme--g10 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=left]::after,
4276
+ div.container.theme--g10 .bx--overflow-menu--flip.bx--overflow-menu-options[data-floating-menu-direction=right]::after {
4277
+ top: auto;
4278
+ bottom: 0;
4279
+ }
4280
+ div.container.theme--g10 .bx--overflow-menu-options--open {
4281
+ display: flex;
4282
+ }
4283
+ div.container.theme--g10 .bx--overflow-menu-options__option {
4284
+ box-sizing: border-box;
4285
+ margin: 0;
4286
+ padding: 0;
4287
+ border: 0;
4288
+ font-size: 100%;
4289
+ font-family: inherit;
4290
+ vertical-align: baseline;
4291
+ display: flex;
4292
+ background-color: transparent;
4293
+ align-items: center;
4294
+ width: 100%;
4295
+ height: 2.5rem;
4296
+ padding: 0;
4297
+ transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
4298
+ }
4299
+ div.container.theme--g10 .bx--overflow-menu-options__option > *, div.container.theme--g10 .bx--overflow-menu-options__option > *:before, div.container.theme--g10 .bx--overflow-menu-options__option > *:after {
4300
+ box-sizing: inherit;
4301
+ }
4302
+ div.container.theme--g10 .bx--overflow-menu--divider {
4303
+ border-top: 1px solid #e0e0e0;
4304
+ }
4305
+ div.container.theme--g10 a.bx--overflow-menu-options__btn::before {
4306
+ content: "";
4307
+ height: 100%;
4308
+ vertical-align: middle;
4309
+ display: inline-block;
4310
+ }
4311
+ div.container.theme--g10 .bx--overflow-menu-options__btn {
4312
+ font-size: 0.875rem;
4313
+ font-weight: 400;
4314
+ line-height: 1.29;
4315
+ letter-spacing: 0.16px;
4316
+ outline: 2px solid transparent;
4317
+ outline-offset: -2px;
4318
+ font-weight: 400;
4319
+ width: 100%;
4320
+ height: 100%;
4321
+ border: none;
4322
+ display: inline-flex;
4323
+ align-items: center;
4324
+ background-color: transparent;
4325
+ text-align: left;
4326
+ padding: 0 1rem;
4327
+ cursor: pointer;
4328
+ color: #525252;
4329
+ max-width: 11.25rem;
4330
+ transition: outline 110ms cubic-bezier(0, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0, 0, 0.38, 0.9), color 110ms cubic-bezier(0, 0, 0.38, 0.9);
4331
+ }
4332
+ div.container.theme--g10 .bx--overflow-menu-options__btn:hover {
4333
+ color: #161616;
4334
+ }
4335
+ div.container.theme--g10 .bx--overflow-menu-options__btn:focus {
4336
+ outline: 2px solid #0f62fe;
4337
+ outline-offset: -2px;
4338
+ }
4339
+ div.container.theme--g10 .bx--overflow-menu-options__btn::-moz-focus-inner {
4340
+ border: none;
3677
4341
  }
3678
- div.container.theme--g10 g.bx--cc--legend g.legend-item text {
3679
- font-size: 12px;
4342
+ div.container.theme--g10 .bx--overflow-menu-options__btn svg {
3680
4343
  fill: #525252;
3681
4344
  }
3682
- div.container.theme--g10 g.bx--cc--legend g.additional-item .zoom {
3683
- fill: #525252;
4345
+ div.container.theme--g10 .bx--overflow-menu-options__btn:hover svg {
4346
+ fill: #161616;
3684
4347
  }
3685
- div.container.theme--g10 g.bx--cc--legend.clickable g.legend-item:hover {
3686
- cursor: pointer;
4348
+ div.container.theme--g10 .bx--overflow-menu-options__option-content {
4349
+ white-space: nowrap;
4350
+ overflow: hidden;
4351
+ text-overflow: ellipsis;
3687
4352
  }
3688
- div.container.theme--g10 .bx--cc--title text.title {
3689
- fill: #161616;
3690
- font-size: 16px;
3691
- font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
3692
- font-weight: 600;
4353
+ div.container.theme--g10 .bx--overflow-menu-options__option:hover {
4354
+ background-color: #e5e5e5;
3693
4355
  }
3694
- div.container.theme--g10 .bx--cc--meter-title text.meter-title,
3695
- div.container.theme--g10 .bx--cc--meter-title text.percent-value {
3696
- fill: #161616;
4356
+ div.container.theme--g10 .bx--overflow-menu-options__option--danger {
4357
+ border-top: 1px solid #e0e0e0;
3697
4358
  }
3698
- div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--danger circle.status {
3699
- fill: #da1e28;
4359
+ div.container.theme--g10 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover,
4360
+ div.container.theme--g10 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus {
4361
+ color: #ffffff;
4362
+ background-color: #da1e28;
3700
4363
  }
3701
- div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--warning circle.status {
3702
- fill: #f1c21b;
4364
+ div.container.theme--g10 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:hover svg,
4365
+ div.container.theme--g10 .bx--overflow-menu-options__option--danger .bx--overflow-menu-options__btn:focus svg {
4366
+ fill: #ffffff;
3703
4367
  }
3704
- div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--warning path.innerFill {
3705
- fill: #000000;
4368
+ div.container.theme--g10 .bx--overflow-menu-options__option--disabled:hover {
4369
+ background-color: #ffffff;
4370
+ cursor: not-allowed;
3706
4371
  }
3707
- div.container.theme--g10 .bx--cc--meter-title g.status-indicator.status--success circle.status {
3708
- fill: #24a148;
4372
+ div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn {
4373
+ color: #c6c6c6;
4374
+ pointer-events: none;
3709
4375
  }
3710
- div.container.theme--g10 .bx--cc--meter-title g.status-indicator path.innerFill {
3711
- fill: #ffffff;
4376
+ div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:hover, div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:active, div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn:focus {
4377
+ outline: 2px solid transparent;
4378
+ outline-offset: -2px;
4379
+ background-color: #ffffff;
3712
4380
  }
3713
- @keyframes skeleton {
3714
- 0% {
3715
- width: 0%;
3716
- left: 0;
3717
- right: auto;
3718
- opacity: 0.3;
3719
- }
3720
- 20% {
3721
- width: 100%;
3722
- left: 0;
3723
- right: auto;
3724
- opacity: 1;
3725
- }
3726
- 28% {
3727
- width: 100%;
3728
- left: auto;
3729
- right: 0;
3730
- }
3731
- 51% {
3732
- width: 0%;
3733
- left: auto;
3734
- right: 0;
3735
- }
3736
- 58% {
3737
- width: 0%;
3738
- left: auto;
3739
- right: 0;
3740
- }
3741
- 82% {
3742
- width: 100%;
3743
- left: auto;
3744
- right: 0;
3745
- }
3746
- 83% {
3747
- width: 100%;
3748
- left: 0;
3749
- right: auto;
3750
- }
3751
- 96% {
3752
- width: 0%;
3753
- left: 0;
3754
- right: auto;
3755
- }
3756
- 100% {
3757
- width: 0%;
3758
- left: 0;
3759
- right: auto;
3760
- opacity: 0.3;
3761
- }
4381
+ div.container.theme--g10 .bx--overflow-menu-options__option--disabled .bx--overflow-menu-options__btn svg {
4382
+ fill: #c6c6c6;
3762
4383
  }
3763
- div.container.theme--g10 .bx--text-truncate--end {
3764
- width: 100%;
3765
- display: inline-block;
3766
- text-overflow: ellipsis;
3767
- white-space: nowrap;
3768
- overflow: hidden;
4384
+ div.container.theme--g10 .bx--overflow-menu--flip {
4385
+ left: -140px;
3769
4386
  }
3770
- div.container.theme--g10 .bx--text-truncate--front {
3771
- width: 100%;
3772
- display: inline-block;
3773
- direction: rtl;
3774
- text-overflow: ellipsis;
3775
- white-space: nowrap;
3776
- overflow: hidden;
4387
+ div.container.theme--g10 .bx--overflow-menu--flip:before {
4388
+ left: 145px;
3777
4389
  }
3778
4390
  div.container.theme--g10 g.bx--cc--toolbar {
3779
4391
  transition-timing-function: cubic-bezier(0.4, 0.14, 0.3, 1);
@@ -4251,6 +4863,216 @@ div.container.theme--g10 g.bx--cc--zoom-bar g.zoom-bar-brush rect.selection {
4251
4863
  fill: none;
4252
4864
  stroke: none;
4253
4865
  }
4866
+ div.container.theme--g10 .bx--cc--card-node {
4867
+ display: flex;
4868
+ position: relative;
4869
+ background-color: #ffffff;
4870
+ z-index: 1;
4871
+ box-sizing: border-box;
4872
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
4873
+ width: 100%;
4874
+ height: 100%;
4875
+ padding: 1rem 0.5rem;
4876
+ border-left: 0.25rem solid #161616;
4877
+ }
4878
+ div.container.theme--g10 .bx--cc--card-node--a,
4879
+ div.container.theme--g10 .bx--cc--card-node--button {
4880
+ border-top: none;
4881
+ border-right: none;
4882
+ border-bottom: none;
4883
+ color: inherit;
4884
+ text-decoration: none;
4885
+ cursor: pointer;
4886
+ }
4887
+ div.container.theme--g10 .bx--cc--card-node--button {
4888
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
4889
+ text-align: left;
4890
+ width: 100%;
4891
+ }
4892
+ div.container.theme--g10 .bx--cc--card-node--a:focus,
4893
+ div.container.theme--g10 .bx--cc--card-node--a:hover,
4894
+ div.container.theme--g10 .bx--cc--card-node--button:focus,
4895
+ div.container.theme--g10 .bx--cc--card-node--button:hover {
4896
+ background-color: #e5e5e5;
4897
+ }
4898
+ div.container.theme--g10 .bx--cc--card-node--a:focus,
4899
+ div.container.theme--g10 .bx--cc--card-node--button:focus {
4900
+ outline: 2px solid #0f62fe;
4901
+ outline-offset: -2px;
4902
+ }
4903
+ div.container.theme--g10 .bx--cc--card-node--stacked::before {
4904
+ content: "";
4905
+ height: 100%;
4906
+ width: 100%;
4907
+ position: absolute;
4908
+ z-index: 0;
4909
+ border-top: 0.125rem solid #e0e0e0;
4910
+ border-right: 0.125rem solid #e0e0e0;
4911
+ pointer-events: none;
4912
+ left: 0.3125rem;
4913
+ bottom: 0.3125rem;
4914
+ }
4915
+ div.container.theme--g10 .bx--cc--card-node--stacked::after {
4916
+ content: "";
4917
+ height: 100%;
4918
+ width: 100%;
4919
+ position: absolute;
4920
+ z-index: 0;
4921
+ border-top: 0.125rem solid #e0e0e0;
4922
+ border-right: 0.125rem solid #e0e0e0;
4923
+ pointer-events: none;
4924
+ left: 0.6875rem;
4925
+ bottom: 0.6875rem;
4926
+ }
4927
+ div.container.theme--g10 .bx--cc--card-node__column {
4928
+ padding: 0 0.5rem;
4929
+ }
4930
+ div.container.theme--g10 .bx--cc--card-node__column--farside {
4931
+ margin-left: auto;
4932
+ }
4933
+ div.container.theme--g10 .bx--cc--card-node__title {
4934
+ font-size: 0.875rem;
4935
+ font-weight: 600;
4936
+ line-height: 1.29;
4937
+ letter-spacing: 0.16px;
4938
+ margin: 0;
4939
+ }
4940
+ div.container.theme--g10 .bx--cc--card-node__subtitle {
4941
+ font-size: 0.875rem;
4942
+ font-weight: 400;
4943
+ line-height: 1.29;
4944
+ letter-spacing: 0.16px;
4945
+ margin: 0;
4946
+ }
4947
+ div.container.theme--g10 .bx--cc--card-node__label {
4948
+ display: block;
4949
+ font-size: 0.75rem;
4950
+ font-weight: 400;
4951
+ line-height: 1.34;
4952
+ letter-spacing: 0.32px;
4953
+ color: #525252;
4954
+ padding-top: 1.5rem;
4955
+ }
4956
+ div.container.theme--g10 .bx--cc--shape-node {
4957
+ display: flex;
4958
+ justify-content: center;
4959
+ align-items: center;
4960
+ background-color: #ffffff;
4961
+ box-sizing: border-box;
4962
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
4963
+ width: 100%;
4964
+ height: 100%;
4965
+ position: relative;
4966
+ }
4967
+ div.container.theme--g10 .bx--cc--shape-node--circle {
4968
+ border-radius: 100%;
4969
+ }
4970
+ div.container.theme--g10 .bx--cc--shape-node--square {
4971
+ border-radius: 0;
4972
+ }
4973
+ div.container.theme--g10 .bx--cc--shape-node--rounded-square {
4974
+ border-radius: 0.5rem;
4975
+ }
4976
+ div.container.theme--g10 .bx--cc--shape-node--a,
4977
+ div.container.theme--g10 .bx--cc--shape-node--button {
4978
+ border: none;
4979
+ color: inherit;
4980
+ text-decoration: none;
4981
+ cursor: pointer;
4982
+ }
4983
+ div.container.theme--g10 .bx--cc--shape-node--button {
4984
+ font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
4985
+ text-align: left;
4986
+ width: 100%;
4987
+ }
4988
+ div.container.theme--g10 .bx--cc--shape-node--a:focus,
4989
+ div.container.theme--g10 .bx--cc--shape-node--a:hover,
4990
+ div.container.theme--g10 .bx--cc--shape-node--button:focus,
4991
+ div.container.theme--g10 .bx--cc--shape-node--button:hover {
4992
+ background-color: #e5e5e5;
4993
+ }
4994
+ div.container.theme--g10 .bx--cc--shape-node--a:focus .bx--cc--shape-node__title,
4995
+ div.container.theme--g10 .bx--cc--shape-node--a:focus .bx--cc--shape-node__subtitle,
4996
+ div.container.theme--g10 .bx--cc--shape-node--a:hover .bx--cc--shape-node__title,
4997
+ div.container.theme--g10 .bx--cc--shape-node--a:hover .bx--cc--shape-node__subtitle,
4998
+ div.container.theme--g10 .bx--cc--shape-node--button:focus .bx--cc--shape-node__title,
4999
+ div.container.theme--g10 .bx--cc--shape-node--button:focus .bx--cc--shape-node__subtitle,
5000
+ div.container.theme--g10 .bx--cc--shape-node--button:hover .bx--cc--shape-node__title,
5001
+ div.container.theme--g10 .bx--cc--shape-node--button:hover .bx--cc--shape-node__subtitle {
5002
+ font-weight: 600;
5003
+ }
5004
+ div.container.theme--g10 .bx--cc--shape-node--a:focus:focus,
5005
+ div.container.theme--g10 .bx--cc--shape-node--button:focus:focus {
5006
+ outline: none;
5007
+ box-shadow: 0 0 0 2px #0f62fe;
5008
+ }
5009
+ div.container.theme--g10 .bx--cc--shape-node__body {
5010
+ position: absolute;
5011
+ top: calc(100% + 0.125rem);
5012
+ text-align: center;
5013
+ }
5014
+ div.container.theme--g10 .bx--cc--shape-node__subtitle {
5015
+ padding-bottom: 0.125rem;
5016
+ font-size: 0.875rem;
5017
+ font-weight: 400;
5018
+ line-height: 1.29;
5019
+ letter-spacing: 0.16px;
5020
+ color: #161616;
5021
+ }
5022
+ div.container.theme--g10 .bx--cc--shape-node__icon {
5023
+ display: flex;
5024
+ }
5025
+ div.container.theme--g10 .bx--cc--shape-node__title {
5026
+ font-size: 0.875rem;
5027
+ font-weight: 400;
5028
+ line-height: 1.29;
5029
+ letter-spacing: 0.16px;
5030
+ color: #161616;
5031
+ padding-top: 0.125rem;
5032
+ margin-bottom: 1px;
5033
+ }
5034
+ div.container.theme--g10 .bx--cc--edge {
5035
+ fill: transparent;
5036
+ }
5037
+ div.container.theme--g10 .bx--cc--edge__container {
5038
+ stroke-width: 1.5rem;
5039
+ stroke: transparent;
5040
+ stroke-dasharray: none;
5041
+ }
5042
+ div.container.theme--g10 .bx--cc--edge__inner {
5043
+ stroke-width: 0.0625rem;
5044
+ stroke: #8d8d8d;
5045
+ }
5046
+ div.container.theme--g10 .bx--cc--edge__outer {
5047
+ stroke-width: 0.15625rem;
5048
+ stroke: transparent;
5049
+ }
5050
+ div.container.theme--g10 .bx--cc--edge:hover .bx--cc--edge__inner {
5051
+ stroke-width: 0.15625rem;
5052
+ }
5053
+ div.container.theme--g10 .bx--cc--edge--dash-sm {
5054
+ stroke-dasharray: 0.125rem 0.25rem;
5055
+ }
5056
+ div.container.theme--g10 .bx--cc--edge--dash-md {
5057
+ stroke-dasharray: 0.25rem 0.25rem;
5058
+ }
5059
+ div.container.theme--g10 .bx--cc--edge--dash-lg {
5060
+ stroke-dasharray: 0.5rem 0.25rem;
5061
+ }
5062
+ div.container.theme--g10 .bx--cc--edge--dash-xl {
5063
+ stroke-dasharray: 1rem 0.25rem;
5064
+ }
5065
+ div.container.theme--g10 .bx--cc--edge--tunnel .bx--cc--edge__outer {
5066
+ stroke: #e0e0e0;
5067
+ stroke-width: 0.375rem;
5068
+ }
5069
+ div.container.theme--g10 .bx--cc--edge--double .bx--cc--edge__inner {
5070
+ stroke: #f4f4f4;
5071
+ }
5072
+ div.container.theme--g10 .bx--cc--edge--double .bx--cc--edge__outer {
5073
+ stroke: #161616;
5074
+ stroke-width: 0.28125rem;
5075
+ }
4254
5076
  div.container.theme--g10 .bx--cc--area path.area,
4255
5077
  div.container.theme--g10 .bx--cc--area-stacked path.area {
4256
5078
  pointer-events: none;
@@ -12199,6 +13021,36 @@ div.container .bx--snippet--multi.bx--snippet--expand .bx--snippet-container,
12199
13021
  div.container .bx--snippet--multi.bx--snippet--expand .bx--snippet-container pre {
12200
13022
  padding-bottom: 0;
12201
13023
  }
13024
+ @media screen and (max-width: 768px) {
13025
+ div.container div.demo-desktop-only {
13026
+ position: relative;
13027
+ overflow: hidden;
13028
+ }
13029
+ div.container div.demo-desktop-only:before {
13030
+ content: " ";
13031
+ display: block;
13032
+ position: absolute;
13033
+ top: 0;
13034
+ left: 0;
13035
+ background: #f4f4f4;
13036
+ width: 100%;
13037
+ height: 100%;
13038
+ }
13039
+ }
13040
+ div.container div.demo-desktop-only div.cp-message {
13041
+ display: none;
13042
+ }
13043
+ @media screen and (max-width: 768px) {
13044
+ div.container div.demo-desktop-only div.cp-message {
13045
+ position: absolute;
13046
+ top: 50%;
13047
+ left: 50%;
13048
+ transform: translate(-50%, -50%);
13049
+ display: block;
13050
+ font-weight: bold;
13051
+ text-align: center;
13052
+ }
13053
+ }
12202
13054
  div.container.intro {
12203
13055
  display: flex;
12204
13056
  height: 100vh;