@carbon/charts 1.8.0 → 1.9.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +84 -155
- package/README.md +11 -13
- package/dist/_baseEach-603421de.mjs +21 -0
- package/dist/_baseEach-603421de.mjs.map +1 -0
- package/dist/_baseEach-cdac417f.js +2 -0
- package/dist/_baseEach-cdac417f.js.map +1 -0
- package/dist/a11y-7bad4f48.mjs +5 -0
- package/dist/a11y-7bad4f48.mjs.map +1 -0
- package/dist/a11y-c7c9d087.js +2 -0
- package/dist/a11y-c7c9d087.js.map +1 -0
- package/dist/angle-utils-6f166b40.js +2 -0
- package/dist/angle-utils-6f166b40.js.map +1 -0
- package/dist/angle-utils-8b6ce998.mjs +387 -0
- package/dist/angle-utils-8b6ce998.mjs.map +1 -0
- package/dist/axis-chart.d.ts +13 -0
- package/dist/chart.d.ts +18 -0
- package/dist/charts/alluvial.d.ts +10 -0
- package/dist/charts/area-stacked.d.ts +8 -0
- package/dist/charts/area.d.ts +8 -0
- package/dist/charts/bar-grouped.d.ts +8 -0
- package/dist/charts/bar-simple.d.ts +8 -0
- package/dist/charts/bar-stacked.d.ts +8 -0
- package/dist/charts/boxplot.d.ts +10 -0
- package/dist/charts/bubble.d.ts +8 -0
- package/dist/charts/bullet.d.ts +10 -0
- package/dist/charts/choropleth.d.ts +14 -0
- package/dist/charts/circle-pack.d.ts +10 -0
- package/dist/charts/combo.d.ts +9 -0
- package/dist/charts/donut.d.ts +8 -0
- package/dist/charts/gauge.d.ts +10 -0
- package/dist/charts/heatmap.d.ts +14 -0
- package/dist/charts/histogram.d.ts +10 -0
- package/dist/charts/index.d.ts +27 -0
- package/dist/charts/line.d.ts +8 -0
- package/dist/charts/lollipop.d.ts +8 -0
- package/dist/charts/meter.d.ts +10 -0
- package/dist/charts/pie.d.ts +10 -0
- package/dist/charts/radar.d.ts +10 -0
- package/dist/charts/scatter.d.ts +8 -0
- package/dist/charts/tree.d.ts +10 -0
- package/dist/charts/treemap.d.ts +10 -0
- package/dist/charts/wordcloud.d.ts +10 -0
- package/dist/choropleth-4ac6ac20.js +82 -0
- package/dist/choropleth-4ac6ac20.js.map +1 -0
- package/dist/choropleth-f473ea0d.mjs +7997 -0
- package/dist/choropleth-f473ea0d.mjs.map +1 -0
- package/dist/color-scale-utils-5eb3eeaa.mjs +3809 -0
- package/dist/color-scale-utils-5eb3eeaa.mjs.map +1 -0
- package/dist/color-scale-utils-7d463811.js +3 -0
- package/dist/color-scale-utils-7d463811.js.map +1 -0
- package/dist/components/axes/axis.d.ts +24 -0
- package/{build/src → dist}/components/axes/chart-clip.d.ts +3 -3
- package/{components → dist/components}/axes/grid-brush.d.ts +10 -10
- package/{components → dist/components}/axes/grid.d.ts +22 -22
- package/{build/src → dist}/components/axes/hover-axis.d.ts +1 -1
- package/dist/components/axes/index.d.ts +12 -0
- package/{components → dist/components}/axes/ruler-binned.d.ts +7 -7
- package/{components → dist/components}/axes/ruler.d.ts +27 -27
- package/{build/src → dist}/components/axes/toolbar.d.ts +7 -7
- package/{components → dist/components}/axes/two-dimensional-axes.d.ts +16 -16
- package/{components → dist/components}/axes/zero-line.d.ts +7 -7
- package/{components → dist/components}/axes/zoom-bar.d.ts +28 -28
- package/{build/src → dist}/components/component.d.ts +10 -8
- package/dist/components/diagrams/buildPaths.d.ts +40 -0
- package/dist/components/diagrams/index.d.ts +2 -0
- package/{components → dist/components}/essentials/canvas-chart-clip.d.ts +6 -6
- package/{build/src → dist}/components/essentials/color-scale-legend.d.ts +3 -3
- package/{build/src → dist}/components/essentials/geo-projection.d.ts +2 -2
- package/{build/src → dist}/components/essentials/highlights.d.ts +3 -3
- package/dist/components/essentials/index.d.ts +11 -0
- package/{build/src → dist}/components/essentials/legend.d.ts +3 -3
- package/{components → dist/components}/essentials/modal.d.ts +14 -14
- package/{build/src → dist}/components/essentials/threshold.d.ts +5 -5
- package/{components → dist/components}/essentials/title-meter.d.ts +30 -30
- package/{components → dist/components}/essentials/title.d.ts +20 -20
- package/{build/src → dist}/components/essentials/tooltip.d.ts +4 -4
- package/{components → dist/components}/graphs/alluvial.d.ts +14 -14
- package/{components → dist/components}/graphs/area-stacked.d.ts +11 -11
- package/dist/components/graphs/area.d.ts +12 -0
- package/{build/src → dist}/components/graphs/bar-grouped.d.ts +4 -4
- package/{build/src → dist}/components/graphs/bar-simple.d.ts +3 -3
- package/{build/src → dist}/components/graphs/bar-stacked.d.ts +4 -4
- package/{build/src → dist}/components/graphs/bar.d.ts +2 -2
- package/{components → dist/components}/graphs/boxplot.d.ts +9 -9
- package/{build/src → dist}/components/graphs/bubble.d.ts +2 -2
- package/dist/components/graphs/bullet.d.ts +12 -0
- package/{components → dist/components}/graphs/choropleth.d.ts +6 -6
- package/{build/src → dist}/components/graphs/circle-pack.d.ts +3 -3
- package/{build/src → dist}/components/graphs/donut.d.ts +1 -1
- package/{build/src → dist}/components/graphs/gauge.d.ts +2 -2
- package/{build/src → dist}/components/graphs/heatmap.d.ts +4 -4
- package/dist/components/graphs/histogram.d.ts +12 -0
- package/dist/components/graphs/index.d.ts +28 -0
- package/dist/components/graphs/line.d.ts +11 -0
- package/dist/components/graphs/lollipop.d.ts +14 -0
- package/{components → dist/components}/graphs/meter.d.ts +10 -10
- package/{build/src → dist}/components/graphs/pie.d.ts +4 -4
- package/{build/src → dist}/components/graphs/radar.d.ts +6 -6
- package/{build/src → dist}/components/graphs/scatter-stacked.d.ts +2 -2
- package/dist/components/graphs/scatter.d.ts +21 -0
- package/dist/components/graphs/skeleton-lines.d.ts +12 -0
- package/{build/src → dist}/components/graphs/skeleton.d.ts +6 -5
- package/{components → dist/components}/graphs/tree.d.ts +9 -9
- package/dist/components/graphs/treemap.d.ts +11 -0
- package/{build/src → dist}/components/graphs/wordcloud.d.ts +4 -4
- package/dist/components/index.d.ts +6 -0
- package/dist/components/index.js +2 -0
- package/dist/components/index.js.map +1 -0
- package/dist/components/index.mjs +76 -0
- package/dist/components/index.mjs.map +1 -0
- package/dist/components/layout/index.d.ts +2 -0
- package/{components → dist/components}/layout/layout.d.ts +18 -17
- package/dist/components/layout/spacer.d.ts +5 -0
- package/{build/src → dist}/configuration-non-customizable.d.ts +4 -4
- package/{configuration.d.ts → dist/configuration.d.ts} +48 -46
- package/dist/demo/charts/index.d.ts +62 -0
- package/{demo/data → dist/demo/charts}/time-series-axis.d.ts +60 -135
- package/{build/demo/data → dist/demo/charts}/zoom-bar.d.ts +12 -27
- package/dist/demo/index.d.ts +4 -0
- package/dist/demo/index.js +470 -0
- package/dist/demo/index.js.map +1 -0
- package/dist/demo/index.mjs +51786 -0
- package/dist/demo/index.mjs.map +1 -0
- package/{demo → dist/demo}/styles.css +286 -1142
- package/dist/demo/styles.css.map +1 -0
- package/dist/demo/utils/index.d.ts +2 -0
- package/dist/demo/utils/sandbox.d.ts +39 -0
- package/dist/demo/utils/story-widgets.d.ts +7 -0
- package/dist/enums-a96ef472.mjs +89 -0
- package/dist/enums-a96ef472.mjs.map +1 -0
- package/dist/enums-aa2efd99.js +2 -0
- package/dist/enums-aa2efd99.js.map +1 -0
- package/dist/index-822564ed.js +2 -0
- package/dist/index-822564ed.js.map +1 -0
- package/dist/index-a266373c.mjs +749 -0
- package/dist/index-a266373c.mjs.map +1 -0
- package/dist/index-becfb567.mjs +72 -0
- package/dist/index-becfb567.mjs.map +1 -0
- package/dist/index-d865d500.js +2 -0
- package/dist/index-d865d500.js.map +1 -0
- package/dist/index-ec554115.mjs +62 -0
- package/dist/index-ec554115.mjs.map +1 -0
- package/dist/index-f23685eb.js +2 -0
- package/dist/index-f23685eb.js.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1121 -0
- package/dist/index.mjs.map +1 -0
- package/{build/src → dist}/interfaces/axis-scales.d.ts +11 -11
- package/{interfaces → dist/interfaces}/charts.d.ts +517 -512
- package/{build/src → dist}/interfaces/components.d.ts +11 -11
- package/dist/interfaces/index.d.ts +11 -0
- package/dist/interfaces/index.js +2 -0
- package/dist/interfaces/index.js.map +1 -0
- package/dist/interfaces/index.mjs +58 -0
- package/dist/interfaces/index.mjs.map +1 -0
- package/{interfaces → dist/interfaces}/layout.d.ts +21 -15
- package/{build/src → dist}/interfaces/model.d.ts +2 -2
- package/dist/interfaces/services.d.ts +20 -0
- package/{build/src → dist}/interfaces/truncation.d.ts +2 -2
- package/{build/src → dist}/model/binned-charts.d.ts +1 -1
- package/{build/src → dist}/model/cartesian-charts.d.ts +2 -2
- package/{model → dist/model}/heatmap.d.ts +57 -52
- package/dist/model/index.d.ts +16 -0
- package/dist/model/index.js +3 -0
- package/dist/model/index.js.map +1 -0
- package/dist/model/index.mjs +1107 -0
- package/dist/model/index.mjs.map +1 -0
- package/{model → dist/model}/meter.d.ts +20 -19
- package/{model → dist/model}/model.d.ts +110 -107
- package/{services → dist/services}/angle-utils.d.ts +15 -16
- package/{services → dist/services}/color-scale-utils.d.ts +2 -2
- package/dist/services/curves.d.ts +24 -0
- package/dist/services/essentials/dom-utils.d.ts +45 -0
- package/dist/services/essentials/events.d.ts +8 -0
- package/dist/services/essentials/files.d.ts +7 -0
- package/{build/src → dist}/services/essentials/gradient-utils.d.ts +2 -2
- package/dist/services/essentials/index.d.ts +5 -0
- package/dist/services/essentials/transitions.d.ts +13 -0
- package/dist/services/index.d.ts +9 -0
- package/dist/services/index.js +2 -0
- package/dist/services/index.js.map +1 -0
- package/dist/services/index.mjs +32 -0
- package/dist/services/index.mjs.map +1 -0
- package/dist/services/scales-cartesian.d.ts +89 -0
- package/dist/services/service.d.ts +11 -0
- package/{services → dist/services}/time-series.d.ts +13 -13
- package/{build/src → dist}/services/zoom.d.ts +2 -2
- package/{styles → dist/styles}/_chart-holder.scss +5 -5
- package/{styles → dist/styles}/color-palatte.scss +66 -66
- package/{styles → dist/styles}/colors.scss +15 -39
- package/{styles → dist/styles}/components/_color-legend.scss +2 -2
- package/{styles → dist/styles}/components/_edge.scss +4 -4
- package/{styles → dist/styles}/components/_grid.scss +2 -2
- package/dist/styles/components/_marker.scss +7 -0
- package/{styles → dist/styles}/components/_meter-title.scss +2 -2
- package/{styles → dist/styles}/components/_tooltip.scss +3 -3
- package/{styles → dist/styles}/components/diagrams/_card-node.scss +3 -3
- package/{styles → dist/styles}/components/diagrams/_edge.scss +5 -5
- package/{styles → dist/styles}/components/diagrams/_shape-node.scss +3 -3
- package/dist/styles/components/diagrams/index.scss +4 -0
- package/{styles → dist/styles}/graphs/_alluvial.scss +2 -2
- package/{styles → dist/styles}/graphs/_bullet.scss +3 -3
- package/{styles → dist/styles}/graphs/_circle-pack.scss +1 -1
- package/{styles → dist/styles}/graphs/_gauge.scss +1 -1
- package/{styles → dist/styles}/graphs/_heatmap.scss +2 -2
- package/{styles → dist/styles}/graphs/_meter.scss +1 -1
- package/{styles → dist/styles}/graphs/_radar.scss +1 -1
- package/{styles → dist/styles}/graphs/_scatter-stacked.scss +1 -1
- package/{styles → dist/styles}/graphs/_tree.scss +2 -3
- package/{styles → dist/styles}/styles.scss +8 -3
- package/{styles → dist/styles}/tokens.scss +97 -106
- package/dist/styles.css +28264 -0
- package/dist/styles.css.map +1 -0
- package/dist/styles.min.css +1 -0
- package/dist/styles.min.css.map +1 -0
- package/{tools.d.ts → dist/tools.d.ts} +144 -144
- package/package.json +136 -101
- package/LICENSE.md +0 -201
- package/axis-chart.d.ts +0 -10
- package/axis-chart.js +0 -169
- package/axis-chart.js.map +0 -1
- package/build/demo/create-codesandbox.d.ts +0 -113
- package/build/demo/data/high-scale.d.ts +0 -1
- package/build/demo/data/index.d.ts +0 -33
- package/build/demo/data/time-series-axis.d.ts +0 -368
- package/build/demo/utils.d.ts +0 -40
- package/build/src/axis-chart.d.ts +0 -10
- package/build/src/chart.d.ts +0 -14
- package/build/src/charts/alluvial.d.ts +0 -8
- package/build/src/charts/area-stacked.d.ts +0 -6
- package/build/src/charts/area.d.ts +0 -6
- package/build/src/charts/bar-grouped.d.ts +0 -6
- package/build/src/charts/bar-simple.d.ts +0 -6
- package/build/src/charts/bar-stacked.d.ts +0 -6
- package/build/src/charts/boxplot.d.ts +0 -8
- package/build/src/charts/bubble.d.ts +0 -6
- package/build/src/charts/bullet.d.ts +0 -8
- package/build/src/charts/choropleth.d.ts +0 -10
- package/build/src/charts/circle-pack.d.ts +0 -8
- package/build/src/charts/combo.d.ts +0 -7
- package/build/src/charts/donut.d.ts +0 -6
- package/build/src/charts/gauge.d.ts +0 -8
- package/build/src/charts/heatmap.d.ts +0 -10
- package/build/src/charts/histogram.d.ts +0 -8
- package/build/src/charts/index.d.ts +0 -25
- package/build/src/charts/line.d.ts +0 -6
- package/build/src/charts/lollipop.d.ts +0 -6
- package/build/src/charts/meter.d.ts +0 -8
- package/build/src/charts/pie.d.ts +0 -8
- package/build/src/charts/radar.d.ts +0 -8
- package/build/src/charts/scatter.d.ts +0 -6
- package/build/src/charts/tree.d.ts +0 -8
- package/build/src/charts/treemap.d.ts +0 -8
- package/build/src/charts/wordcloud.d.ts +0 -8
- package/build/src/components/axes/axis.d.ts +0 -24
- package/build/src/components/axes/grid-brush.d.ts +0 -10
- package/build/src/components/axes/grid.d.ts +0 -22
- package/build/src/components/axes/ruler-binned.d.ts +0 -7
- package/build/src/components/axes/ruler.d.ts +0 -27
- package/build/src/components/axes/two-dimensional-axes.d.ts +0 -16
- package/build/src/components/axes/zero-line.d.ts +0 -7
- package/build/src/components/axes/zoom-bar.d.ts +0 -28
- package/build/src/components/diagrams/buildPaths.d.ts +0 -63
- package/build/src/components/essentials/canvas-chart-clip.d.ts +0 -6
- package/build/src/components/essentials/modal.d.ts +0 -14
- package/build/src/components/essentials/title-meter.d.ts +0 -30
- package/build/src/components/essentials/title.d.ts +0 -20
- package/build/src/components/graphs/alluvial.d.ts +0 -14
- package/build/src/components/graphs/area-stacked.d.ts +0 -11
- package/build/src/components/graphs/area.d.ts +0 -12
- package/build/src/components/graphs/boxplot.d.ts +0 -9
- package/build/src/components/graphs/bullet.d.ts +0 -12
- package/build/src/components/graphs/choropleth.d.ts +0 -6
- package/build/src/components/graphs/histogram.d.ts +0 -12
- package/build/src/components/graphs/line.d.ts +0 -11
- package/build/src/components/graphs/lollipop.d.ts +0 -14
- package/build/src/components/graphs/meter.d.ts +0 -10
- package/build/src/components/graphs/scatter.d.ts +0 -21
- package/build/src/components/graphs/skeleton-lines.d.ts +0 -11
- package/build/src/components/graphs/tree.d.ts +0 -9
- package/build/src/components/graphs/treemap.d.ts +0 -11
- package/build/src/components/index.d.ts +0 -53
- package/build/src/components/layout/layout.d.ts +0 -17
- package/build/src/components/layout/spacer.d.ts +0 -5
- package/build/src/configuration.d.ts +0 -46
- package/build/src/interfaces/charts.d.ts +0 -512
- package/build/src/interfaces/index.d.ts +0 -7
- package/build/src/interfaces/layout.d.ts +0 -15
- package/build/src/model/heatmap.d.ts +0 -52
- package/build/src/model/meter.d.ts +0 -19
- package/build/src/model/model.d.ts +0 -107
- package/build/src/services/angle-utils.d.ts +0 -205
- package/build/src/services/color-scale-utils.d.ts +0 -10
- package/build/src/services/curves.d.ts +0 -25
- package/build/src/services/essentials/dom-utils.d.ts +0 -39
- package/build/src/services/essentials/events.d.ts +0 -8
- package/build/src/services/essentials/files.d.ts +0 -6
- package/build/src/services/essentials/transitions.d.ts +0 -13
- package/build/src/services/index.d.ts +0 -10
- package/build/src/services/scales-cartesian.d.ts +0 -86
- package/build/src/services/service.d.ts +0 -10
- package/build/src/services/time-series.d.ts +0 -787
- package/build/src/tools.d.ts +0 -2427
- package/build/stories/all.stories.d.ts +0 -1
- package/build/stories/tutorials/api.d.ts +0 -4
- package/build/stories/tutorials/color-palette.d.ts +0 -4
- package/build/stories/tutorials/combo-charts.d.ts +0 -4
- package/build/stories/tutorials/dual-axes.d.ts +0 -4
- package/build/stories/tutorials/event-listeners.d.ts +0 -4
- package/build/stories/tutorials/getting-started/angular.d.ts +0 -5
- package/build/stories/tutorials/getting-started/react.d.ts +0 -5
- package/build/stories/tutorials/getting-started/vanilla.d.ts +0 -5
- package/build/stories/tutorials/getting-started/vue.d.ts +0 -5
- package/build/stories/tutorials/index.d.ts +0 -11
- package/build/stories/tutorials/tabular-data-format.d.ts +0 -4
- package/build/stories/tutorials/themes.d.ts +0 -4
- package/build/stories/tutorials.stories.d.ts +0 -1
- package/bundle.js +0 -17
- package/chart.d.ts +0 -14
- package/chart.js +0 -198
- package/chart.js.map +0 -1
- package/charts/alluvial.d.ts +0 -8
- package/charts/alluvial.js +0 -46
- package/charts/alluvial.js.map +0 -1
- package/charts/area-stacked.d.ts +0 -6
- package/charts/area-stacked.js +0 -55
- package/charts/area-stacked.js.map +0 -1
- package/charts/area.d.ts +0 -6
- package/charts/area.js +0 -54
- package/charts/area.js.map +0 -1
- package/charts/bar-grouped.d.ts +0 -6
- package/charts/bar-grouped.js +0 -49
- package/charts/bar-grouped.js.map +0 -1
- package/charts/bar-simple.d.ts +0 -6
- package/charts/bar-simple.js +0 -49
- package/charts/bar-simple.js.map +0 -1
- package/charts/bar-stacked.d.ts +0 -6
- package/charts/bar-stacked.js +0 -50
- package/charts/bar-stacked.js.map +0 -1
- package/charts/boxplot.d.ts +0 -8
- package/charts/boxplot.js +0 -55
- package/charts/boxplot.js.map +0 -1
- package/charts/bubble.d.ts +0 -6
- package/charts/bubble.js +0 -49
- package/charts/bubble.js.map +0 -1
- package/charts/bullet.d.ts +0 -8
- package/charts/bullet.js +0 -50
- package/charts/bullet.js.map +0 -1
- package/charts/choropleth.d.ts +0 -10
- package/charts/choropleth.js +0 -141
- package/charts/choropleth.js.map +0 -1
- package/charts/circle-pack.d.ts +0 -8
- package/charts/circle-pack.js +0 -45
- package/charts/circle-pack.js.map +0 -1
- package/charts/combo.d.ts +0 -7
- package/charts/combo.js +0 -132
- package/charts/combo.js.map +0 -1
- package/charts/donut.d.ts +0 -6
- package/charts/donut.js +0 -46
- package/charts/donut.js.map +0 -1
- package/charts/gauge.d.ts +0 -8
- package/charts/gauge.js +0 -42
- package/charts/gauge.js.map +0 -1
- package/charts/heatmap.d.ts +0 -10
- package/charts/heatmap.js +0 -142
- package/charts/heatmap.js.map +0 -1
- package/charts/histogram.d.ts +0 -8
- package/charts/histogram.js +0 -48
- package/charts/histogram.js.map +0 -1
- package/charts/index.d.ts +0 -25
- package/charts/index.js +0 -26
- package/charts/index.js.map +0 -1
- package/charts/line.d.ts +0 -6
- package/charts/line.js +0 -48
- package/charts/line.js.map +0 -1
- package/charts/lollipop.d.ts +0 -6
- package/charts/lollipop.js +0 -50
- package/charts/lollipop.js.map +0 -1
- package/charts/meter.d.ts +0 -8
- package/charts/meter.js +0 -94
- package/charts/meter.js.map +0 -1
- package/charts/pie.d.ts +0 -8
- package/charts/pie.js +0 -55
- package/charts/pie.js.map +0 -1
- package/charts/radar.d.ts +0 -8
- package/charts/radar.js +0 -44
- package/charts/radar.js.map +0 -1
- package/charts/scatter.d.ts +0 -6
- package/charts/scatter.js +0 -49
- package/charts/scatter.js.map +0 -1
- package/charts/tree.d.ts +0 -8
- package/charts/tree.js +0 -47
- package/charts/tree.js.map +0 -1
- package/charts/treemap.d.ts +0 -8
- package/charts/treemap.js +0 -43
- package/charts/treemap.js.map +0 -1
- package/charts/wordcloud.d.ts +0 -8
- package/charts/wordcloud.js +0 -49
- package/charts/wordcloud.js.map +0 -1
- package/components/axes/axis.d.ts +0 -24
- package/components/axes/axis.js +0 -587
- package/components/axes/axis.js.map +0 -1
- package/components/axes/chart-clip.d.ts +0 -13
- package/components/axes/chart-clip.js +0 -63
- package/components/axes/chart-clip.js.map +0 -1
- package/components/axes/grid-brush.js +0 -170
- package/components/axes/grid-brush.js.map +0 -1
- package/components/axes/grid.js +0 -235
- package/components/axes/grid.js.map +0 -1
- package/components/axes/hover-axis.d.ts +0 -10
- package/components/axes/hover-axis.js +0 -243
- package/components/axes/hover-axis.js.map +0 -1
- package/components/axes/ruler-binned.js +0 -136
- package/components/axes/ruler-binned.js.map +0 -1
- package/components/axes/ruler-stacked.d.ts +0 -4
- package/components/axes/ruler-stacked.js +0 -26
- package/components/axes/ruler-stacked.js.map +0 -1
- package/components/axes/ruler.js +0 -209
- package/components/axes/ruler.js.map +0 -1
- package/components/axes/toolbar.d.ts +0 -40
- package/components/axes/toolbar.js +0 -558
- package/components/axes/toolbar.js.map +0 -1
- package/components/axes/two-dimensional-axes.js +0 -134
- package/components/axes/two-dimensional-axes.js.map +0 -1
- package/components/axes/zero-line.js +0 -76
- package/components/axes/zero-line.js.map +0 -1
- package/components/axes/zoom-bar.js +0 -490
- package/components/axes/zoom-bar.js.map +0 -1
- package/components/component.d.ts +0 -28
- package/components/component.js +0 -102
- package/components/component.js.map +0 -1
- package/components/diagrams/buildPaths.d.ts +0 -39
- package/components/diagrams/buildPaths.js +0 -71
- package/components/diagrams/buildPaths.js.map +0 -1
- package/components/diagrams/markerDefinitions.d.ts +0 -37
- package/components/diagrams/markerDefinitions.js +0 -38
- package/components/diagrams/markerDefinitions.js.map +0 -1
- package/components/essentials/canvas-chart-clip.js +0 -46
- package/components/essentials/canvas-chart-clip.js.map +0 -1
- package/components/essentials/color-scale-legend.d.ts +0 -20
- package/components/essentials/color-scale-legend.js +0 -237
- package/components/essentials/color-scale-legend.js.map +0 -1
- package/components/essentials/geo-projection.d.ts +0 -16
- package/components/essentials/geo-projection.js +0 -160
- package/components/essentials/geo-projection.js.map +0 -1
- package/components/essentials/highlights.d.ts +0 -13
- package/components/essentials/highlights.js +0 -196
- package/components/essentials/highlights.js.map +0 -1
- package/components/essentials/legend.d.ts +0 -11
- package/components/essentials/legend.js +0 -428
- package/components/essentials/legend.js.map +0 -1
- package/components/essentials/modal.js +0 -89
- package/components/essentials/modal.js.map +0 -1
- package/components/essentials/threshold.d.ts +0 -20
- package/components/essentials/threshold.js +0 -306
- package/components/essentials/threshold.js.map +0 -1
- package/components/essentials/title-meter.js +0 -279
- package/components/essentials/title-meter.js.map +0 -1
- package/components/essentials/title.js +0 -138
- package/components/essentials/title.js.map +0 -1
- package/components/essentials/tooltip-axis.d.ts +0 -4
- package/components/essentials/tooltip-axis.js +0 -142
- package/components/essentials/tooltip-axis.js.map +0 -1
- package/components/essentials/tooltip.d.ts +0 -22
- package/components/essentials/tooltip.js +0 -263
- package/components/essentials/tooltip.js.map +0 -1
- package/components/graphs/alluvial.js +0 -535
- package/components/graphs/alluvial.js.map +0 -1
- package/components/graphs/area-stacked.js +0 -131
- package/components/graphs/area-stacked.js.map +0 -1
- package/components/graphs/area.d.ts +0 -12
- package/components/graphs/area.js +0 -260
- package/components/graphs/area.js.map +0 -1
- package/components/graphs/bar-grouped.d.ts +0 -22
- package/components/graphs/bar-grouped.js +0 -312
- package/components/graphs/bar-grouped.js.map +0 -1
- package/components/graphs/bar-simple.d.ts +0 -12
- package/components/graphs/bar-simple.js +0 -218
- package/components/graphs/bar-simple.js.map +0 -1
- package/components/graphs/bar-stacked.d.ts +0 -13
- package/components/graphs/bar-stacked.js +0 -281
- package/components/graphs/bar-stacked.js.map +0 -1
- package/components/graphs/bar.d.ts +0 -5
- package/components/graphs/bar.js +0 -58
- package/components/graphs/bar.js.map +0 -1
- package/components/graphs/boxplot.js +0 -485
- package/components/graphs/boxplot.js.map +0 -1
- package/components/graphs/bubble.d.ts +0 -13
- package/components/graphs/bubble.js +0 -113
- package/components/graphs/bubble.js.map +0 -1
- package/components/graphs/bullet.d.ts +0 -12
- package/components/graphs/bullet.js +0 -395
- package/components/graphs/bullet.js.map +0 -1
- package/components/graphs/choropleth.js +0 -106
- package/components/graphs/choropleth.js.map +0 -1
- package/components/graphs/circle-pack.d.ts +0 -19
- package/components/graphs/circle-pack.js +0 -388
- package/components/graphs/circle-pack.js.map +0 -1
- package/components/graphs/donut.d.ts +0 -9
- package/components/graphs/donut.js +0 -116
- package/components/graphs/donut.js.map +0 -1
- package/components/graphs/gauge.d.ts +0 -27
- package/components/graphs/gauge.js +0 -347
- package/components/graphs/gauge.js.map +0 -1
- package/components/graphs/heatmap.d.ts +0 -25
- package/components/graphs/heatmap.js +0 -388
- package/components/graphs/heatmap.js.map +0 -1
- package/components/graphs/histogram.d.ts +0 -12
- package/components/graphs/histogram.js +0 -220
- package/components/graphs/histogram.js.map +0 -1
- package/components/graphs/line.d.ts +0 -11
- package/components/graphs/line.js +0 -179
- package/components/graphs/line.js.map +0 -1
- package/components/graphs/lollipop.d.ts +0 -14
- package/components/graphs/lollipop.js +0 -164
- package/components/graphs/lollipop.js.map +0 -1
- package/components/graphs/meter.js +0 -284
- package/components/graphs/meter.js.map +0 -1
- package/components/graphs/pie.d.ts +0 -16
- package/components/graphs/pie.js +0 -438
- package/components/graphs/pie.js.map +0 -1
- package/components/graphs/radar.d.ts +0 -25
- package/components/graphs/radar.js +0 -737
- package/components/graphs/radar.js.map +0 -1
- package/components/graphs/scatter-stacked.d.ts +0 -8
- package/components/graphs/scatter-stacked.js +0 -140
- package/components/graphs/scatter-stacked.js.map +0 -1
- package/components/graphs/scatter.d.ts +0 -21
- package/components/graphs/scatter.js +0 -360
- package/components/graphs/scatter.js.map +0 -1
- package/components/graphs/skeleton-lines.d.ts +0 -11
- package/components/graphs/skeleton-lines.js +0 -84
- package/components/graphs/skeleton-lines.js.map +0 -1
- package/components/graphs/skeleton.d.ts +0 -22
- package/components/graphs/skeleton.js +0 -272
- package/components/graphs/skeleton.js.map +0 -1
- package/components/graphs/tree.js +0 -262
- package/components/graphs/tree.js.map +0 -1
- package/components/graphs/treemap.d.ts +0 -11
- package/components/graphs/treemap.js +0 -344
- package/components/graphs/treemap.js.map +0 -1
- package/components/graphs/wordcloud.d.ts +0 -12
- package/components/graphs/wordcloud.js +0 -268
- package/components/graphs/wordcloud.js.map +0 -1
- package/components/index.d.ts +0 -53
- package/components/index.js +0 -59
- package/components/index.js.map +0 -1
- package/components/layout/layout.js +0 -191
- package/components/layout/layout.js.map +0 -1
- package/components/layout/spacer.d.ts +0 -5
- package/components/layout/spacer.js +0 -33
- package/components/layout/spacer.js.map +0 -1
- package/configuration-non-customizable.d.ts +0 -263
- package/configuration-non-customizable.js +0 -276
- package/configuration-non-customizable.js.map +0 -1
- package/configuration.js +0 -552
- package/configuration.js.map +0 -1
- package/demo/create-codesandbox.d.ts +0 -65
- package/demo/create-codesandbox.js +0 -173
- package/demo/create-codesandbox.js.map +0 -1
- package/demo/data/CHART_TYPES.d.ts +0 -128
- package/demo/data/CHART_TYPES.js +0 -128
- package/demo/data/CHART_TYPES.js.map +0 -1
- package/demo/data/alluvial.d.ts +0 -109
- package/demo/data/alluvial.js +0 -328
- package/demo/data/alluvial.js.map +0 -1
- package/demo/data/area.d.ts +0 -224
- package/demo/data/area.js +0 -330
- package/demo/data/area.js.map +0 -1
- package/demo/data/bar.d.ts +0 -681
- package/demo/data/bar.js +0 -915
- package/demo/data/bar.js.map +0 -1
- package/demo/data/boxplot.d.ts +0 -34
- package/demo/data/boxplot.js +0 -48
- package/demo/data/boxplot.js.map +0 -1
- package/demo/data/bubble.d.ts +0 -141
- package/demo/data/bubble.js +0 -182
- package/demo/data/bubble.js.map +0 -1
- package/demo/data/bullet.d.ts +0 -24
- package/demo/data/bullet.js +0 -55
- package/demo/data/bullet.js.map +0 -1
- package/demo/data/bundle.js +0 -1
- package/demo/data/choropleth.d.ts +0 -738
- package/demo/data/choropleth.js +0 -1684
- package/demo/data/choropleth.js.map +0 -1
- package/demo/data/circle-pack.d.ts +0 -91
- package/demo/data/circle-pack.js +0 -224
- package/demo/data/circle-pack.js.map +0 -1
- package/demo/data/combo.d.ts +0 -482
- package/demo/data/combo.js +0 -571
- package/demo/data/combo.js.map +0 -1
- package/demo/data/donut.d.ts +0 -64
- package/demo/data/donut.js +0 -60
- package/demo/data/donut.js.map +0 -1
- package/demo/data/gauge.d.ts +0 -40
- package/demo/data/gauge.js +0 -41
- package/demo/data/gauge.js.map +0 -1
- package/demo/data/heatmap.d.ts +0 -125
- package/demo/data/heatmap.js +0 -1149
- package/demo/data/heatmap.js.map +0 -1
- package/demo/data/high-scale.d.ts +0 -1
- package/demo/data/high-scale.js +0 -5
- package/demo/data/high-scale.js.map +0 -1
- package/demo/data/hightlight.d.ts +0 -40
- package/demo/data/hightlight.js +0 -44
- package/demo/data/hightlight.js.map +0 -1
- package/demo/data/histogram.d.ts +0 -63
- package/demo/data/histogram.js +0 -312
- package/demo/data/histogram.js.map +0 -1
- package/demo/data/index.d.ts +0 -33
- package/demo/data/index.js +0 -1305
- package/demo/data/index.js.map +0 -1
- package/demo/data/line.d.ts +0 -361
- package/demo/data/line.js +0 -480
- package/demo/data/line.js.map +0 -1
- package/demo/data/lollipop.d.ts +0 -39
- package/demo/data/lollipop.js +0 -37
- package/demo/data/lollipop.js.map +0 -1
- package/demo/data/meter.d.ts +0 -95
- package/demo/data/meter.js +0 -114
- package/demo/data/meter.js.map +0 -1
- package/demo/data/pie.d.ts +0 -46
- package/demo/data/pie.js +0 -55
- package/demo/data/pie.js.map +0 -1
- package/demo/data/radar.d.ts +0 -63
- package/demo/data/radar.js +0 -118
- package/demo/data/radar.js.map +0 -1
- package/demo/data/scatter.d.ts +0 -118
- package/demo/data/scatter.js +0 -143
- package/demo/data/scatter.js.map +0 -1
- package/demo/data/step.d.ts +0 -96
- package/demo/data/step.js +0 -27
- package/demo/data/step.js.map +0 -1
- package/demo/data/time-series-axis.js +0 -436
- package/demo/data/time-series-axis.js.map +0 -1
- package/demo/data/toolbar.d.ts +0 -12
- package/demo/data/toolbar.js +0 -67
- package/demo/data/toolbar.js.map +0 -1
- package/demo/data/topojson-110.d.ts +0 -360
- package/demo/data/topojson-110.js +0 -40724
- package/demo/data/topojson-110.js.map +0 -1
- package/demo/data/tree.d.ts +0 -30
- package/demo/data/tree.js +0 -209
- package/demo/data/tree.js.map +0 -1
- package/demo/data/treemap.d.ts +0 -15
- package/demo/data/treemap.js +0 -93
- package/demo/data/treemap.js.map +0 -1
- package/demo/data/wordcloud.d.ts +0 -14
- package/demo/data/wordcloud.js +0 -105
- package/demo/data/wordcloud.js.map +0 -1
- package/demo/data/zoom-bar.d.ts +0 -94
- package/demo/data/zoom-bar.js +0 -187
- package/demo/data/zoom-bar.js.map +0 -1
- package/demo/styles.css.map +0 -1
- package/demo/styles.min.css +0 -1
- package/demo/styles.min.css.map +0 -1
- package/demo/tsconfig.tsbuildinfo +0 -1451
- package/demo/utils.d.ts +0 -24
- package/demo/utils.js +0 -222
- package/demo/utils.js.map +0 -1
- package/index.d.ts +0 -4
- package/index.js +0 -6
- package/index.js.map +0 -1
- package/interfaces/a11y.d.ts +0 -12
- package/interfaces/a11y.js +0 -14
- package/interfaces/a11y.js.map +0 -1
- package/interfaces/axis-scales.d.ts +0 -201
- package/interfaces/axis-scales.js +0 -1
- package/interfaces/axis-scales.js.map +0 -1
- package/interfaces/charts.js +0 -1
- package/interfaces/charts.js.map +0 -1
- package/interfaces/components.d.ts +0 -231
- package/interfaces/components.js +0 -1
- package/interfaces/components.js.map +0 -1
- package/interfaces/enums.d.ts +0 -261
- package/interfaces/enums.js +0 -296
- package/interfaces/enums.js.map +0 -1
- package/interfaces/events.d.ts +0 -239
- package/interfaces/events.js +0 -269
- package/interfaces/events.js.map +0 -1
- package/interfaces/index.d.ts +0 -7
- package/interfaces/index.js +0 -3
- package/interfaces/index.js.map +0 -1
- package/interfaces/layout.js +0 -1
- package/interfaces/layout.js.map +0 -1
- package/interfaces/model.d.ts +0 -35
- package/interfaces/model.js +0 -1
- package/interfaces/model.js.map +0 -1
- package/interfaces/truncation.d.ts +0 -17
- package/interfaces/truncation.js +0 -1
- package/interfaces/truncation.js.map +0 -1
- package/model/alluvial.d.ts +0 -8
- package/model/alluvial.js +0 -47
- package/model/alluvial.js.map +0 -1
- package/model/binned-charts.d.ts +0 -7
- package/model/binned-charts.js +0 -52
- package/model/binned-charts.js.map +0 -1
- package/model/boxplot.d.ts +0 -14
- package/model/boxplot.js +0 -174
- package/model/boxplot.js.map +0 -1
- package/model/bullet.d.ts +0 -14
- package/model/bullet.js +0 -74
- package/model/bullet.js.map +0 -1
- package/model/cartesian-charts.d.ts +0 -24
- package/model/cartesian-charts.js +0 -202
- package/model/cartesian-charts.js.map +0 -1
- package/model/choropleth.d.ts +0 -29
- package/model/choropleth.js +0 -105
- package/model/choropleth.js.map +0 -1
- package/model/circle-pack.d.ts +0 -36
- package/model/circle-pack.js +0 -189
- package/model/circle-pack.js.map +0 -1
- package/model/gauge.d.ts +0 -9
- package/model/gauge.js +0 -51
- package/model/gauge.js.map +0 -1
- package/model/heatmap.js +0 -220
- package/model/heatmap.js.map +0 -1
- package/model/meter.js +0 -118
- package/model/meter.js.map +0 -1
- package/model/model.js +0 -712
- package/model/model.js.map +0 -1
- package/model/pie.d.ts +0 -9
- package/model/pie.js +0 -66
- package/model/pie.js.map +0 -1
- package/model/radar.d.ts +0 -7
- package/model/radar.js +0 -52
- package/model/radar.js.map +0 -1
- package/model/tree.d.ts +0 -14
- package/model/tree.js +0 -56
- package/model/tree.js.map +0 -1
- package/model/treemap.d.ts +0 -8
- package/model/treemap.js +0 -44
- package/model/treemap.js.map +0 -1
- package/model/wordcloud.d.ts +0 -7
- package/model/wordcloud.js +0 -47
- package/model/wordcloud.js.map +0 -1
- package/polyfills.d.ts +0 -0
- package/polyfills.js +0 -29
- package/polyfills.js.map +0 -1
- package/services/angle-utils.js +0 -82
- package/services/angle-utils.js.map +0 -1
- package/services/canvas-zoom.d.ts +0 -11
- package/services/canvas-zoom.js +0 -72
- package/services/canvas-zoom.js.map +0 -1
- package/services/color-scale-utils.js +0 -64
- package/services/color-scale-utils.js.map +0 -1
- package/services/curves.d.ts +0 -25
- package/services/curves.js +0 -77
- package/services/curves.js.map +0 -1
- package/services/essentials/dom-utils.d.ts +0 -39
- package/services/essentials/dom-utils.js +0 -423
- package/services/essentials/dom-utils.js.map +0 -1
- package/services/essentials/events.d.ts +0 -8
- package/services/essentials/events.js +0 -53
- package/services/essentials/events.js.map +0 -1
- package/services/essentials/files.d.ts +0 -6
- package/services/essentials/files.js +0 -60
- package/services/essentials/files.js.map +0 -1
- package/services/essentials/gradient-utils.d.ts +0 -6
- package/services/essentials/gradient-utils.js +0 -85
- package/services/essentials/gradient-utils.js.map +0 -1
- package/services/essentials/transitions.d.ts +0 -13
- package/services/essentials/transitions.js +0 -51
- package/services/essentials/transitions.js.map +0 -1
- package/services/index.d.ts +0 -10
- package/services/index.js +0 -13
- package/services/index.js.map +0 -1
- package/services/scales-cartesian.d.ts +0 -86
- package/services/scales-cartesian.js +0 -656
- package/services/scales-cartesian.js.map +0 -1
- package/services/service.d.ts +0 -10
- package/services/service.js +0 -24
- package/services/service.js.map +0 -1
- package/services/time-series.js +0 -147
- package/services/time-series.js.map +0 -1
- package/services/zoom.d.ts +0 -21
- package/services/zoom.js +0 -217
- package/services/zoom.js.map +0 -1
- package/styles/components/_marker.scss +0 -7
- package/styles/components/diagrams/index.scss +0 -4
- package/styles.css +0 -6325
- package/styles.css.map +0 -1
- package/styles.min.css +0 -1
- package/styles.min.css.map +0 -1
- package/tools.js +0 -348
- package/tools.js.map +0 -1
- package/tsconfig.tsbuildinfo +0 -3816
- /package/{build/src → dist}/components/axes/ruler-stacked.d.ts +0 -0
- /package/{build/src → dist}/components/diagrams/markerDefinitions.d.ts +0 -0
- /package/{build/src → dist}/components/essentials/tooltip-axis.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/alluvial.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/area.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/bar.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/boxplot.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/bubble.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/bullet.d.ts +0 -0
- /package/{build/demo/data/CHART_TYPES.d.ts → dist/demo/charts/chart-types.d.ts} +0 -0
- /package/{build/demo/data → dist/demo/charts}/choropleth.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/circle-pack.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/combo.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/donut.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/gauge.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/heatmap.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/hightlight.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/histogram.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/line.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/lollipop.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/meter.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/pie.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/radar.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/scatter.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/step.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/toolbar.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/topojson-110.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/tree.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/treemap.d.ts +0 -0
- /package/{build/demo/data → dist/demo/charts}/wordcloud.d.ts +0 -0
- /package/{build/src → dist}/interfaces/a11y.d.ts +0 -0
- /package/{build/src → dist}/interfaces/enums.d.ts +0 -0
- /package/{build/src → dist}/interfaces/events.d.ts +0 -0
- /package/{build/src → dist}/model/alluvial.d.ts +0 -0
- /package/{build/src → dist}/model/boxplot.d.ts +0 -0
- /package/{build/src → dist}/model/bullet.d.ts +0 -0
- /package/{build/src → dist}/model/choropleth.d.ts +0 -0
- /package/{build/src → dist}/model/circle-pack.d.ts +0 -0
- /package/{build/src → dist}/model/gauge.d.ts +0 -0
- /package/{build/src → dist}/model/pie.d.ts +0 -0
- /package/{build/src → dist}/model/radar.d.ts +0 -0
- /package/{build/src → dist}/model/tree.d.ts +0 -0
- /package/{build/src → dist}/model/treemap.d.ts +0 -0
- /package/{build/src → dist}/model/wordcloud.d.ts +0 -0
- /package/{build/src → dist}/services/canvas-zoom.d.ts +0 -0
- /package/{styles → dist/styles}/_type.scss +0 -0
- /package/{styles → dist/styles}/components/_axis.scss +0 -0
- /package/{styles → dist/styles}/components/_callouts.scss +0 -0
- /package/{styles → dist/styles}/components/_grid-brush.scss +0 -0
- /package/{styles → dist/styles}/components/_highlights.scss +0 -0
- /package/{styles → dist/styles}/components/_layout.scss +0 -0
- /package/{styles → dist/styles}/components/_legend.scss +0 -0
- /package/{styles → dist/styles}/components/_modal.scss +0 -0
- /package/{styles → dist/styles}/components/_ruler.scss +0 -0
- /package/{styles → dist/styles}/components/_skeleton-lines.scss +0 -0
- /package/{styles → dist/styles}/components/_skeleton.scss +0 -0
- /package/{styles → dist/styles}/components/_threshold.scss +0 -0
- /package/{styles → dist/styles}/components/_title.scss +0 -0
- /package/{styles → dist/styles}/components/_toolbar.scss +0 -0
- /package/{styles → dist/styles}/components/_zero-line.scss +0 -0
- /package/{styles → dist/styles}/components/_zoom-bar.scss +0 -0
- /package/{styles → dist/styles}/components/diagrams/_marker.scss +0 -0
- /package/{styles → dist/styles}/components/index.scss +0 -0
- /package/{styles → dist/styles}/graphs/_area.scss +0 -0
- /package/{styles → dist/styles}/graphs/_bubble.scss +0 -0
- /package/{styles → dist/styles}/graphs/_choropleth.scss +0 -0
- /package/{styles → dist/styles}/graphs/_donut.scss +0 -0
- /package/{styles → dist/styles}/graphs/_line.scss +0 -0
- /package/{styles → dist/styles}/graphs/_lollipop.scss +0 -0
- /package/{styles → dist/styles}/graphs/_pie.scss +0 -0
- /package/{styles → dist/styles}/graphs/_scatter.scss +0 -0
- /package/{styles → dist/styles}/graphs/_treemap.scss +0 -0
- /package/{styles → dist/styles}/graphs/_wordcloud.scss +0 -0
- /package/{styles → dist/styles}/graphs/index.scss +0 -0
|
@@ -224,726 +224,6 @@ em {
|
|
|
224
224
|
font-style: italic;
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
@font-face {
|
|
228
|
-
font-display: "swap";
|
|
229
|
-
font-family: "IBM Plex Mono";
|
|
230
|
-
font-style: normal;
|
|
231
|
-
font-weight: 300;
|
|
232
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Cyrillic.woff") format("woff");
|
|
233
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
234
|
-
}
|
|
235
|
-
@font-face {
|
|
236
|
-
font-display: "swap";
|
|
237
|
-
font-family: "IBM Plex Mono";
|
|
238
|
-
font-style: normal;
|
|
239
|
-
font-weight: 300;
|
|
240
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Pi.woff") format("woff");
|
|
241
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
242
|
-
}
|
|
243
|
-
@font-face {
|
|
244
|
-
font-display: "swap";
|
|
245
|
-
font-family: "IBM Plex Mono";
|
|
246
|
-
font-style: normal;
|
|
247
|
-
font-weight: 300;
|
|
248
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin3.woff") format("woff");
|
|
249
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
250
|
-
}
|
|
251
|
-
@font-face {
|
|
252
|
-
font-display: "swap";
|
|
253
|
-
font-family: "IBM Plex Mono";
|
|
254
|
-
font-style: normal;
|
|
255
|
-
font-weight: 300;
|
|
256
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin2.woff") format("woff");
|
|
257
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
258
|
-
}
|
|
259
|
-
@font-face {
|
|
260
|
-
font-display: "swap";
|
|
261
|
-
font-family: "IBM Plex Mono";
|
|
262
|
-
font-style: normal;
|
|
263
|
-
font-weight: 300;
|
|
264
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin1.woff") format("woff");
|
|
265
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
266
|
-
}
|
|
267
|
-
@font-face {
|
|
268
|
-
font-display: "swap";
|
|
269
|
-
font-family: "IBM Plex Mono";
|
|
270
|
-
font-style: italic;
|
|
271
|
-
font-weight: 300;
|
|
272
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Cyrillic.woff") format("woff");
|
|
273
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
274
|
-
}
|
|
275
|
-
@font-face {
|
|
276
|
-
font-display: "swap";
|
|
277
|
-
font-family: "IBM Plex Mono";
|
|
278
|
-
font-style: italic;
|
|
279
|
-
font-weight: 300;
|
|
280
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Pi.woff") format("woff");
|
|
281
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
282
|
-
}
|
|
283
|
-
@font-face {
|
|
284
|
-
font-display: "swap";
|
|
285
|
-
font-family: "IBM Plex Mono";
|
|
286
|
-
font-style: italic;
|
|
287
|
-
font-weight: 300;
|
|
288
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin3.woff") format("woff");
|
|
289
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
290
|
-
}
|
|
291
|
-
@font-face {
|
|
292
|
-
font-display: "swap";
|
|
293
|
-
font-family: "IBM Plex Mono";
|
|
294
|
-
font-style: italic;
|
|
295
|
-
font-weight: 300;
|
|
296
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin2.woff") format("woff");
|
|
297
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
298
|
-
}
|
|
299
|
-
@font-face {
|
|
300
|
-
font-display: "swap";
|
|
301
|
-
font-family: "IBM Plex Mono";
|
|
302
|
-
font-style: italic;
|
|
303
|
-
font-weight: 300;
|
|
304
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin1.woff") format("woff");
|
|
305
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
306
|
-
}
|
|
307
|
-
@font-face {
|
|
308
|
-
font-display: "swap";
|
|
309
|
-
font-family: "IBM Plex Mono";
|
|
310
|
-
font-style: normal;
|
|
311
|
-
font-weight: 400;
|
|
312
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Cyrillic.woff") format("woff");
|
|
313
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
314
|
-
}
|
|
315
|
-
@font-face {
|
|
316
|
-
font-display: "swap";
|
|
317
|
-
font-family: "IBM Plex Mono";
|
|
318
|
-
font-style: normal;
|
|
319
|
-
font-weight: 400;
|
|
320
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Pi.woff") format("woff");
|
|
321
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
322
|
-
}
|
|
323
|
-
@font-face {
|
|
324
|
-
font-display: "swap";
|
|
325
|
-
font-family: "IBM Plex Mono";
|
|
326
|
-
font-style: normal;
|
|
327
|
-
font-weight: 400;
|
|
328
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin3.woff") format("woff");
|
|
329
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
330
|
-
}
|
|
331
|
-
@font-face {
|
|
332
|
-
font-display: "swap";
|
|
333
|
-
font-family: "IBM Plex Mono";
|
|
334
|
-
font-style: normal;
|
|
335
|
-
font-weight: 400;
|
|
336
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin2.woff") format("woff");
|
|
337
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
338
|
-
}
|
|
339
|
-
@font-face {
|
|
340
|
-
font-display: "swap";
|
|
341
|
-
font-family: "IBM Plex Mono";
|
|
342
|
-
font-style: normal;
|
|
343
|
-
font-weight: 400;
|
|
344
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin1.woff") format("woff");
|
|
345
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
346
|
-
}
|
|
347
|
-
@font-face {
|
|
348
|
-
font-display: "swap";
|
|
349
|
-
font-family: "IBM Plex Mono";
|
|
350
|
-
font-style: italic;
|
|
351
|
-
font-weight: 400;
|
|
352
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Cyrillic.woff") format("woff");
|
|
353
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
354
|
-
}
|
|
355
|
-
@font-face {
|
|
356
|
-
font-display: "swap";
|
|
357
|
-
font-family: "IBM Plex Mono";
|
|
358
|
-
font-style: italic;
|
|
359
|
-
font-weight: 400;
|
|
360
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Pi.woff") format("woff");
|
|
361
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
362
|
-
}
|
|
363
|
-
@font-face {
|
|
364
|
-
font-display: "swap";
|
|
365
|
-
font-family: "IBM Plex Mono";
|
|
366
|
-
font-style: italic;
|
|
367
|
-
font-weight: 400;
|
|
368
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin3.woff") format("woff");
|
|
369
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
370
|
-
}
|
|
371
|
-
@font-face {
|
|
372
|
-
font-display: "swap";
|
|
373
|
-
font-family: "IBM Plex Mono";
|
|
374
|
-
font-style: italic;
|
|
375
|
-
font-weight: 400;
|
|
376
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin2.woff") format("woff");
|
|
377
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
378
|
-
}
|
|
379
|
-
@font-face {
|
|
380
|
-
font-display: "swap";
|
|
381
|
-
font-family: "IBM Plex Mono";
|
|
382
|
-
font-style: italic;
|
|
383
|
-
font-weight: 400;
|
|
384
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin1.woff") format("woff");
|
|
385
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
386
|
-
}
|
|
387
|
-
@font-face {
|
|
388
|
-
font-display: "swap";
|
|
389
|
-
font-family: "IBM Plex Mono";
|
|
390
|
-
font-style: normal;
|
|
391
|
-
font-weight: 600;
|
|
392
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Cyrillic.woff") format("woff");
|
|
393
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
394
|
-
}
|
|
395
|
-
@font-face {
|
|
396
|
-
font-display: "swap";
|
|
397
|
-
font-family: "IBM Plex Mono";
|
|
398
|
-
font-style: normal;
|
|
399
|
-
font-weight: 600;
|
|
400
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Pi.woff") format("woff");
|
|
401
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
402
|
-
}
|
|
403
|
-
@font-face {
|
|
404
|
-
font-display: "swap";
|
|
405
|
-
font-family: "IBM Plex Mono";
|
|
406
|
-
font-style: normal;
|
|
407
|
-
font-weight: 600;
|
|
408
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin3.woff") format("woff");
|
|
409
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
410
|
-
}
|
|
411
|
-
@font-face {
|
|
412
|
-
font-display: "swap";
|
|
413
|
-
font-family: "IBM Plex Mono";
|
|
414
|
-
font-style: normal;
|
|
415
|
-
font-weight: 600;
|
|
416
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin2.woff") format("woff");
|
|
417
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
418
|
-
}
|
|
419
|
-
@font-face {
|
|
420
|
-
font-display: "swap";
|
|
421
|
-
font-family: "IBM Plex Mono";
|
|
422
|
-
font-style: normal;
|
|
423
|
-
font-weight: 600;
|
|
424
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin1.woff") format("woff");
|
|
425
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
426
|
-
}
|
|
427
|
-
@font-face {
|
|
428
|
-
font-display: "swap";
|
|
429
|
-
font-family: "IBM Plex Mono";
|
|
430
|
-
font-style: italic;
|
|
431
|
-
font-weight: 600;
|
|
432
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Cyrillic.woff") format("woff");
|
|
433
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
434
|
-
}
|
|
435
|
-
@font-face {
|
|
436
|
-
font-display: "swap";
|
|
437
|
-
font-family: "IBM Plex Mono";
|
|
438
|
-
font-style: italic;
|
|
439
|
-
font-weight: 600;
|
|
440
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Pi.woff") format("woff");
|
|
441
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
442
|
-
}
|
|
443
|
-
@font-face {
|
|
444
|
-
font-display: "swap";
|
|
445
|
-
font-family: "IBM Plex Mono";
|
|
446
|
-
font-style: italic;
|
|
447
|
-
font-weight: 600;
|
|
448
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin3.woff") format("woff");
|
|
449
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
450
|
-
}
|
|
451
|
-
@font-face {
|
|
452
|
-
font-display: "swap";
|
|
453
|
-
font-family: "IBM Plex Mono";
|
|
454
|
-
font-style: italic;
|
|
455
|
-
font-weight: 600;
|
|
456
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin2.woff") format("woff");
|
|
457
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
458
|
-
}
|
|
459
|
-
@font-face {
|
|
460
|
-
font-display: "swap";
|
|
461
|
-
font-family: "IBM Plex Mono";
|
|
462
|
-
font-style: italic;
|
|
463
|
-
font-weight: 600;
|
|
464
|
-
src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin1.woff") format("woff");
|
|
465
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
466
|
-
}
|
|
467
|
-
@font-face {
|
|
468
|
-
font-display: "swap";
|
|
469
|
-
font-family: "IBM Plex Sans";
|
|
470
|
-
font-style: normal;
|
|
471
|
-
font-weight: 300;
|
|
472
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Cyrillic.woff") format("woff");
|
|
473
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
474
|
-
}
|
|
475
|
-
@font-face {
|
|
476
|
-
font-display: "swap";
|
|
477
|
-
font-family: "IBM Plex Sans";
|
|
478
|
-
font-style: normal;
|
|
479
|
-
font-weight: 300;
|
|
480
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Pi.woff") format("woff");
|
|
481
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
482
|
-
}
|
|
483
|
-
@font-face {
|
|
484
|
-
font-display: "swap";
|
|
485
|
-
font-family: "IBM Plex Sans";
|
|
486
|
-
font-style: normal;
|
|
487
|
-
font-weight: 300;
|
|
488
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin3.woff") format("woff");
|
|
489
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
490
|
-
}
|
|
491
|
-
@font-face {
|
|
492
|
-
font-display: "swap";
|
|
493
|
-
font-family: "IBM Plex Sans";
|
|
494
|
-
font-style: normal;
|
|
495
|
-
font-weight: 300;
|
|
496
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin2.woff") format("woff");
|
|
497
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
498
|
-
}
|
|
499
|
-
@font-face {
|
|
500
|
-
font-display: "swap";
|
|
501
|
-
font-family: "IBM Plex Sans";
|
|
502
|
-
font-style: normal;
|
|
503
|
-
font-weight: 300;
|
|
504
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin1.woff") format("woff");
|
|
505
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
506
|
-
}
|
|
507
|
-
@font-face {
|
|
508
|
-
font-display: "swap";
|
|
509
|
-
font-family: "IBM Plex Sans";
|
|
510
|
-
font-style: italic;
|
|
511
|
-
font-weight: 300;
|
|
512
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Cyrillic.woff") format("woff");
|
|
513
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
514
|
-
}
|
|
515
|
-
@font-face {
|
|
516
|
-
font-display: "swap";
|
|
517
|
-
font-family: "IBM Plex Sans";
|
|
518
|
-
font-style: italic;
|
|
519
|
-
font-weight: 300;
|
|
520
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Pi.woff") format("woff");
|
|
521
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
522
|
-
}
|
|
523
|
-
@font-face {
|
|
524
|
-
font-display: "swap";
|
|
525
|
-
font-family: "IBM Plex Sans";
|
|
526
|
-
font-style: italic;
|
|
527
|
-
font-weight: 300;
|
|
528
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin3.woff") format("woff");
|
|
529
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
530
|
-
}
|
|
531
|
-
@font-face {
|
|
532
|
-
font-display: "swap";
|
|
533
|
-
font-family: "IBM Plex Sans";
|
|
534
|
-
font-style: italic;
|
|
535
|
-
font-weight: 300;
|
|
536
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin2.woff") format("woff");
|
|
537
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
538
|
-
}
|
|
539
|
-
@font-face {
|
|
540
|
-
font-display: "swap";
|
|
541
|
-
font-family: "IBM Plex Sans";
|
|
542
|
-
font-style: italic;
|
|
543
|
-
font-weight: 300;
|
|
544
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin1.woff") format("woff");
|
|
545
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
546
|
-
}
|
|
547
|
-
@font-face {
|
|
548
|
-
font-display: "swap";
|
|
549
|
-
font-family: "IBM Plex Sans";
|
|
550
|
-
font-style: normal;
|
|
551
|
-
font-weight: 400;
|
|
552
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Cyrillic.woff") format("woff");
|
|
553
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
554
|
-
}
|
|
555
|
-
@font-face {
|
|
556
|
-
font-display: "swap";
|
|
557
|
-
font-family: "IBM Plex Sans";
|
|
558
|
-
font-style: normal;
|
|
559
|
-
font-weight: 400;
|
|
560
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Pi.woff") format("woff");
|
|
561
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
562
|
-
}
|
|
563
|
-
@font-face {
|
|
564
|
-
font-display: "swap";
|
|
565
|
-
font-family: "IBM Plex Sans";
|
|
566
|
-
font-style: normal;
|
|
567
|
-
font-weight: 400;
|
|
568
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin3.woff") format("woff");
|
|
569
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
570
|
-
}
|
|
571
|
-
@font-face {
|
|
572
|
-
font-display: "swap";
|
|
573
|
-
font-family: "IBM Plex Sans";
|
|
574
|
-
font-style: normal;
|
|
575
|
-
font-weight: 400;
|
|
576
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin2.woff") format("woff");
|
|
577
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
578
|
-
}
|
|
579
|
-
@font-face {
|
|
580
|
-
font-display: "swap";
|
|
581
|
-
font-family: "IBM Plex Sans";
|
|
582
|
-
font-style: normal;
|
|
583
|
-
font-weight: 400;
|
|
584
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin1.woff") format("woff");
|
|
585
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
586
|
-
}
|
|
587
|
-
@font-face {
|
|
588
|
-
font-display: "swap";
|
|
589
|
-
font-family: "IBM Plex Sans";
|
|
590
|
-
font-style: italic;
|
|
591
|
-
font-weight: 400;
|
|
592
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Cyrillic.woff") format("woff");
|
|
593
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
594
|
-
}
|
|
595
|
-
@font-face {
|
|
596
|
-
font-display: "swap";
|
|
597
|
-
font-family: "IBM Plex Sans";
|
|
598
|
-
font-style: italic;
|
|
599
|
-
font-weight: 400;
|
|
600
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Pi.woff") format("woff");
|
|
601
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
602
|
-
}
|
|
603
|
-
@font-face {
|
|
604
|
-
font-display: "swap";
|
|
605
|
-
font-family: "IBM Plex Sans";
|
|
606
|
-
font-style: italic;
|
|
607
|
-
font-weight: 400;
|
|
608
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin3.woff") format("woff");
|
|
609
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
610
|
-
}
|
|
611
|
-
@font-face {
|
|
612
|
-
font-display: "swap";
|
|
613
|
-
font-family: "IBM Plex Sans";
|
|
614
|
-
font-style: italic;
|
|
615
|
-
font-weight: 400;
|
|
616
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin2.woff") format("woff");
|
|
617
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
618
|
-
}
|
|
619
|
-
@font-face {
|
|
620
|
-
font-display: "swap";
|
|
621
|
-
font-family: "IBM Plex Sans";
|
|
622
|
-
font-style: italic;
|
|
623
|
-
font-weight: 400;
|
|
624
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin1.woff") format("woff");
|
|
625
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
626
|
-
}
|
|
627
|
-
@font-face {
|
|
628
|
-
font-display: "swap";
|
|
629
|
-
font-family: "IBM Plex Sans";
|
|
630
|
-
font-style: normal;
|
|
631
|
-
font-weight: 600;
|
|
632
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Cyrillic.woff") format("woff");
|
|
633
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
634
|
-
}
|
|
635
|
-
@font-face {
|
|
636
|
-
font-display: "swap";
|
|
637
|
-
font-family: "IBM Plex Sans";
|
|
638
|
-
font-style: normal;
|
|
639
|
-
font-weight: 600;
|
|
640
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Pi.woff") format("woff");
|
|
641
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
642
|
-
}
|
|
643
|
-
@font-face {
|
|
644
|
-
font-display: "swap";
|
|
645
|
-
font-family: "IBM Plex Sans";
|
|
646
|
-
font-style: normal;
|
|
647
|
-
font-weight: 600;
|
|
648
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin3.woff") format("woff");
|
|
649
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
650
|
-
}
|
|
651
|
-
@font-face {
|
|
652
|
-
font-display: "swap";
|
|
653
|
-
font-family: "IBM Plex Sans";
|
|
654
|
-
font-style: normal;
|
|
655
|
-
font-weight: 600;
|
|
656
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin2.woff") format("woff");
|
|
657
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
658
|
-
}
|
|
659
|
-
@font-face {
|
|
660
|
-
font-display: "swap";
|
|
661
|
-
font-family: "IBM Plex Sans";
|
|
662
|
-
font-style: normal;
|
|
663
|
-
font-weight: 600;
|
|
664
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin1.woff") format("woff");
|
|
665
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
666
|
-
}
|
|
667
|
-
@font-face {
|
|
668
|
-
font-display: "swap";
|
|
669
|
-
font-family: "IBM Plex Sans";
|
|
670
|
-
font-style: italic;
|
|
671
|
-
font-weight: 600;
|
|
672
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Cyrillic.woff") format("woff");
|
|
673
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
674
|
-
}
|
|
675
|
-
@font-face {
|
|
676
|
-
font-display: "swap";
|
|
677
|
-
font-family: "IBM Plex Sans";
|
|
678
|
-
font-style: italic;
|
|
679
|
-
font-weight: 600;
|
|
680
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Pi.woff") format("woff");
|
|
681
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
682
|
-
}
|
|
683
|
-
@font-face {
|
|
684
|
-
font-display: "swap";
|
|
685
|
-
font-family: "IBM Plex Sans";
|
|
686
|
-
font-style: italic;
|
|
687
|
-
font-weight: 600;
|
|
688
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin3.woff") format("woff");
|
|
689
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
690
|
-
}
|
|
691
|
-
@font-face {
|
|
692
|
-
font-display: "swap";
|
|
693
|
-
font-family: "IBM Plex Sans";
|
|
694
|
-
font-style: italic;
|
|
695
|
-
font-weight: 600;
|
|
696
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin2.woff") format("woff");
|
|
697
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
698
|
-
}
|
|
699
|
-
@font-face {
|
|
700
|
-
font-display: "swap";
|
|
701
|
-
font-family: "IBM Plex Sans";
|
|
702
|
-
font-style: italic;
|
|
703
|
-
font-weight: 600;
|
|
704
|
-
src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin1.woff") format("woff");
|
|
705
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
706
|
-
}
|
|
707
|
-
@font-face {
|
|
708
|
-
font-display: "swap";
|
|
709
|
-
font-family: "IBM Plex Serif";
|
|
710
|
-
font-style: normal;
|
|
711
|
-
font-weight: 300;
|
|
712
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Cyrillic.woff") format("woff");
|
|
713
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
714
|
-
}
|
|
715
|
-
@font-face {
|
|
716
|
-
font-display: "swap";
|
|
717
|
-
font-family: "IBM Plex Serif";
|
|
718
|
-
font-style: normal;
|
|
719
|
-
font-weight: 300;
|
|
720
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Pi.woff") format("woff");
|
|
721
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
722
|
-
}
|
|
723
|
-
@font-face {
|
|
724
|
-
font-display: "swap";
|
|
725
|
-
font-family: "IBM Plex Serif";
|
|
726
|
-
font-style: normal;
|
|
727
|
-
font-weight: 300;
|
|
728
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin3.woff") format("woff");
|
|
729
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
730
|
-
}
|
|
731
|
-
@font-face {
|
|
732
|
-
font-display: "swap";
|
|
733
|
-
font-family: "IBM Plex Serif";
|
|
734
|
-
font-style: normal;
|
|
735
|
-
font-weight: 300;
|
|
736
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin2.woff") format("woff");
|
|
737
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
738
|
-
}
|
|
739
|
-
@font-face {
|
|
740
|
-
font-display: "swap";
|
|
741
|
-
font-family: "IBM Plex Serif";
|
|
742
|
-
font-style: normal;
|
|
743
|
-
font-weight: 300;
|
|
744
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin1.woff") format("woff");
|
|
745
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
746
|
-
}
|
|
747
|
-
@font-face {
|
|
748
|
-
font-display: "swap";
|
|
749
|
-
font-family: "IBM Plex Serif";
|
|
750
|
-
font-style: italic;
|
|
751
|
-
font-weight: 300;
|
|
752
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Cyrillic.woff") format("woff");
|
|
753
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
754
|
-
}
|
|
755
|
-
@font-face {
|
|
756
|
-
font-display: "swap";
|
|
757
|
-
font-family: "IBM Plex Serif";
|
|
758
|
-
font-style: italic;
|
|
759
|
-
font-weight: 300;
|
|
760
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Pi.woff") format("woff");
|
|
761
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
762
|
-
}
|
|
763
|
-
@font-face {
|
|
764
|
-
font-display: "swap";
|
|
765
|
-
font-family: "IBM Plex Serif";
|
|
766
|
-
font-style: italic;
|
|
767
|
-
font-weight: 300;
|
|
768
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin3.woff") format("woff");
|
|
769
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
770
|
-
}
|
|
771
|
-
@font-face {
|
|
772
|
-
font-display: "swap";
|
|
773
|
-
font-family: "IBM Plex Serif";
|
|
774
|
-
font-style: italic;
|
|
775
|
-
font-weight: 300;
|
|
776
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin2.woff") format("woff");
|
|
777
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
778
|
-
}
|
|
779
|
-
@font-face {
|
|
780
|
-
font-display: "swap";
|
|
781
|
-
font-family: "IBM Plex Serif";
|
|
782
|
-
font-style: italic;
|
|
783
|
-
font-weight: 300;
|
|
784
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin1.woff") format("woff");
|
|
785
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
786
|
-
}
|
|
787
|
-
@font-face {
|
|
788
|
-
font-display: "swap";
|
|
789
|
-
font-family: "IBM Plex Serif";
|
|
790
|
-
font-style: normal;
|
|
791
|
-
font-weight: 400;
|
|
792
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Cyrillic.woff") format("woff");
|
|
793
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
794
|
-
}
|
|
795
|
-
@font-face {
|
|
796
|
-
font-display: "swap";
|
|
797
|
-
font-family: "IBM Plex Serif";
|
|
798
|
-
font-style: normal;
|
|
799
|
-
font-weight: 400;
|
|
800
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Pi.woff") format("woff");
|
|
801
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
802
|
-
}
|
|
803
|
-
@font-face {
|
|
804
|
-
font-display: "swap";
|
|
805
|
-
font-family: "IBM Plex Serif";
|
|
806
|
-
font-style: normal;
|
|
807
|
-
font-weight: 400;
|
|
808
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin3.woff") format("woff");
|
|
809
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
810
|
-
}
|
|
811
|
-
@font-face {
|
|
812
|
-
font-display: "swap";
|
|
813
|
-
font-family: "IBM Plex Serif";
|
|
814
|
-
font-style: normal;
|
|
815
|
-
font-weight: 400;
|
|
816
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin2.woff") format("woff");
|
|
817
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
818
|
-
}
|
|
819
|
-
@font-face {
|
|
820
|
-
font-display: "swap";
|
|
821
|
-
font-family: "IBM Plex Serif";
|
|
822
|
-
font-style: normal;
|
|
823
|
-
font-weight: 400;
|
|
824
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin1.woff") format("woff");
|
|
825
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
826
|
-
}
|
|
827
|
-
@font-face {
|
|
828
|
-
font-display: "swap";
|
|
829
|
-
font-family: "IBM Plex Serif";
|
|
830
|
-
font-style: italic;
|
|
831
|
-
font-weight: 400;
|
|
832
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Cyrillic.woff") format("woff");
|
|
833
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
834
|
-
}
|
|
835
|
-
@font-face {
|
|
836
|
-
font-display: "swap";
|
|
837
|
-
font-family: "IBM Plex Serif";
|
|
838
|
-
font-style: italic;
|
|
839
|
-
font-weight: 400;
|
|
840
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Pi.woff") format("woff");
|
|
841
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
842
|
-
}
|
|
843
|
-
@font-face {
|
|
844
|
-
font-display: "swap";
|
|
845
|
-
font-family: "IBM Plex Serif";
|
|
846
|
-
font-style: italic;
|
|
847
|
-
font-weight: 400;
|
|
848
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin3.woff") format("woff");
|
|
849
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
850
|
-
}
|
|
851
|
-
@font-face {
|
|
852
|
-
font-display: "swap";
|
|
853
|
-
font-family: "IBM Plex Serif";
|
|
854
|
-
font-style: italic;
|
|
855
|
-
font-weight: 400;
|
|
856
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin2.woff") format("woff");
|
|
857
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
858
|
-
}
|
|
859
|
-
@font-face {
|
|
860
|
-
font-display: "swap";
|
|
861
|
-
font-family: "IBM Plex Serif";
|
|
862
|
-
font-style: italic;
|
|
863
|
-
font-weight: 400;
|
|
864
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin1.woff") format("woff");
|
|
865
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
866
|
-
}
|
|
867
|
-
@font-face {
|
|
868
|
-
font-display: "swap";
|
|
869
|
-
font-family: "IBM Plex Serif";
|
|
870
|
-
font-style: normal;
|
|
871
|
-
font-weight: 600;
|
|
872
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Cyrillic.woff") format("woff");
|
|
873
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
874
|
-
}
|
|
875
|
-
@font-face {
|
|
876
|
-
font-display: "swap";
|
|
877
|
-
font-family: "IBM Plex Serif";
|
|
878
|
-
font-style: normal;
|
|
879
|
-
font-weight: 600;
|
|
880
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Pi.woff") format("woff");
|
|
881
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
882
|
-
}
|
|
883
|
-
@font-face {
|
|
884
|
-
font-display: "swap";
|
|
885
|
-
font-family: "IBM Plex Serif";
|
|
886
|
-
font-style: normal;
|
|
887
|
-
font-weight: 600;
|
|
888
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin3.woff") format("woff");
|
|
889
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
890
|
-
}
|
|
891
|
-
@font-face {
|
|
892
|
-
font-display: "swap";
|
|
893
|
-
font-family: "IBM Plex Serif";
|
|
894
|
-
font-style: normal;
|
|
895
|
-
font-weight: 600;
|
|
896
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin2.woff") format("woff");
|
|
897
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
898
|
-
}
|
|
899
|
-
@font-face {
|
|
900
|
-
font-display: "swap";
|
|
901
|
-
font-family: "IBM Plex Serif";
|
|
902
|
-
font-style: normal;
|
|
903
|
-
font-weight: 600;
|
|
904
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin1.woff") format("woff");
|
|
905
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
906
|
-
}
|
|
907
|
-
@font-face {
|
|
908
|
-
font-display: "swap";
|
|
909
|
-
font-family: "IBM Plex Serif";
|
|
910
|
-
font-style: italic;
|
|
911
|
-
font-weight: 600;
|
|
912
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Cyrillic.woff") format("woff");
|
|
913
|
-
unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
|
|
914
|
-
}
|
|
915
|
-
@font-face {
|
|
916
|
-
font-display: "swap";
|
|
917
|
-
font-family: "IBM Plex Serif";
|
|
918
|
-
font-style: italic;
|
|
919
|
-
font-weight: 600;
|
|
920
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Pi.woff") format("woff");
|
|
921
|
-
unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
|
|
922
|
-
}
|
|
923
|
-
@font-face {
|
|
924
|
-
font-display: "swap";
|
|
925
|
-
font-family: "IBM Plex Serif";
|
|
926
|
-
font-style: italic;
|
|
927
|
-
font-weight: 600;
|
|
928
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin3.woff") format("woff");
|
|
929
|
-
unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
|
|
930
|
-
}
|
|
931
|
-
@font-face {
|
|
932
|
-
font-display: "swap";
|
|
933
|
-
font-family: "IBM Plex Serif";
|
|
934
|
-
font-style: italic;
|
|
935
|
-
font-weight: 600;
|
|
936
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin2.woff") format("woff");
|
|
937
|
-
unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
|
|
938
|
-
}
|
|
939
|
-
@font-face {
|
|
940
|
-
font-display: "swap";
|
|
941
|
-
font-family: "IBM Plex Serif";
|
|
942
|
-
font-style: italic;
|
|
943
|
-
font-weight: 600;
|
|
944
|
-
src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin1.woff") format("woff");
|
|
945
|
-
unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
|
|
946
|
-
}
|
|
947
227
|
:root {
|
|
948
228
|
--cds-grid-gutter: 2rem;
|
|
949
229
|
--cds-grid-columns: 4;
|
|
@@ -1257,21 +537,17 @@ em {
|
|
|
1257
537
|
.cds--md\:col-span-auto {
|
|
1258
538
|
grid-column: auto;
|
|
1259
539
|
}
|
|
1260
|
-
|
|
1261
540
|
.cds--md\:col-span-100 {
|
|
1262
541
|
grid-column: 1/-1;
|
|
1263
542
|
}
|
|
1264
|
-
|
|
1265
543
|
.cds--md\:col-span-75 {
|
|
1266
544
|
--cds-grid-columns: 6;
|
|
1267
545
|
grid-column: span 6 / span 6;
|
|
1268
546
|
}
|
|
1269
|
-
|
|
1270
547
|
.cds--md\:col-span-50 {
|
|
1271
548
|
--cds-grid-columns: 4;
|
|
1272
549
|
grid-column: span 4 / span 4;
|
|
1273
550
|
}
|
|
1274
|
-
|
|
1275
551
|
.cds--md\:col-span-25 {
|
|
1276
552
|
--cds-grid-columns: 2;
|
|
1277
553
|
grid-column: span 2 / span 2;
|
|
@@ -1398,21 +674,17 @@ em {
|
|
|
1398
674
|
.cds--lg\:col-span-auto {
|
|
1399
675
|
grid-column: auto;
|
|
1400
676
|
}
|
|
1401
|
-
|
|
1402
677
|
.cds--lg\:col-span-100 {
|
|
1403
678
|
grid-column: 1/-1;
|
|
1404
679
|
}
|
|
1405
|
-
|
|
1406
680
|
.cds--lg\:col-span-75 {
|
|
1407
681
|
--cds-grid-columns: 12;
|
|
1408
682
|
grid-column: span 12 / span 12;
|
|
1409
683
|
}
|
|
1410
|
-
|
|
1411
684
|
.cds--lg\:col-span-50 {
|
|
1412
685
|
--cds-grid-columns: 8;
|
|
1413
686
|
grid-column: span 8 / span 8;
|
|
1414
687
|
}
|
|
1415
|
-
|
|
1416
688
|
.cds--lg\:col-span-25 {
|
|
1417
689
|
--cds-grid-columns: 4;
|
|
1418
690
|
grid-column: span 4 / span 4;
|
|
@@ -1539,21 +811,17 @@ em {
|
|
|
1539
811
|
.cds--xlg\:col-span-auto {
|
|
1540
812
|
grid-column: auto;
|
|
1541
813
|
}
|
|
1542
|
-
|
|
1543
814
|
.cds--xlg\:col-span-100 {
|
|
1544
815
|
grid-column: 1/-1;
|
|
1545
816
|
}
|
|
1546
|
-
|
|
1547
817
|
.cds--xlg\:col-span-75 {
|
|
1548
818
|
--cds-grid-columns: 12;
|
|
1549
819
|
grid-column: span 12 / span 12;
|
|
1550
820
|
}
|
|
1551
|
-
|
|
1552
821
|
.cds--xlg\:col-span-50 {
|
|
1553
822
|
--cds-grid-columns: 8;
|
|
1554
823
|
grid-column: span 8 / span 8;
|
|
1555
824
|
}
|
|
1556
|
-
|
|
1557
825
|
.cds--xlg\:col-span-25 {
|
|
1558
826
|
--cds-grid-columns: 4;
|
|
1559
827
|
grid-column: span 4 / span 4;
|
|
@@ -1680,21 +948,17 @@ em {
|
|
|
1680
948
|
.cds--max\:col-span-auto {
|
|
1681
949
|
grid-column: auto;
|
|
1682
950
|
}
|
|
1683
|
-
|
|
1684
951
|
.cds--max\:col-span-100 {
|
|
1685
952
|
grid-column: 1/-1;
|
|
1686
953
|
}
|
|
1687
|
-
|
|
1688
954
|
.cds--max\:col-span-75 {
|
|
1689
955
|
--cds-grid-columns: 12;
|
|
1690
956
|
grid-column: span 12 / span 12;
|
|
1691
957
|
}
|
|
1692
|
-
|
|
1693
958
|
.cds--max\:col-span-50 {
|
|
1694
959
|
--cds-grid-columns: 8;
|
|
1695
960
|
grid-column: span 8 / span 8;
|
|
1696
961
|
}
|
|
1697
|
-
|
|
1698
962
|
.cds--max\:col-span-25 {
|
|
1699
963
|
--cds-grid-columns: 4;
|
|
1700
964
|
grid-column: span 4 / span 4;
|
|
@@ -2035,135 +1299,102 @@ em {
|
|
|
2035
1299
|
.cds--md\:col-start-1 {
|
|
2036
1300
|
grid-column-start: 1;
|
|
2037
1301
|
}
|
|
2038
|
-
|
|
2039
1302
|
.cds--md\:col-start-2 {
|
|
2040
1303
|
grid-column-start: 2;
|
|
2041
1304
|
}
|
|
2042
|
-
|
|
2043
1305
|
.cds--md\:col-start-3 {
|
|
2044
1306
|
grid-column-start: 3;
|
|
2045
1307
|
}
|
|
2046
|
-
|
|
2047
1308
|
.cds--md\:col-start-4 {
|
|
2048
1309
|
grid-column-start: 4;
|
|
2049
1310
|
}
|
|
2050
|
-
|
|
2051
1311
|
.cds--md\:col-start-5 {
|
|
2052
1312
|
grid-column-start: 5;
|
|
2053
1313
|
}
|
|
2054
|
-
|
|
2055
1314
|
.cds--md\:col-start-6 {
|
|
2056
1315
|
grid-column-start: 6;
|
|
2057
1316
|
}
|
|
2058
|
-
|
|
2059
1317
|
.cds--md\:col-start-7 {
|
|
2060
1318
|
grid-column-start: 7;
|
|
2061
1319
|
}
|
|
2062
|
-
|
|
2063
1320
|
.cds--md\:col-start-8 {
|
|
2064
1321
|
grid-column-start: 8;
|
|
2065
1322
|
}
|
|
2066
|
-
|
|
2067
1323
|
.cds--md\:col-start-9 {
|
|
2068
1324
|
grid-column-start: 9;
|
|
2069
1325
|
}
|
|
2070
|
-
|
|
2071
1326
|
.cds--md\:col-start-10 {
|
|
2072
1327
|
grid-column-start: 10;
|
|
2073
1328
|
}
|
|
2074
|
-
|
|
2075
1329
|
.cds--md\:col-start-11 {
|
|
2076
1330
|
grid-column-start: 11;
|
|
2077
1331
|
}
|
|
2078
|
-
|
|
2079
1332
|
.cds--md\:col-start-12 {
|
|
2080
1333
|
grid-column-start: 12;
|
|
2081
1334
|
}
|
|
2082
|
-
|
|
2083
1335
|
.cds--md\:col-start-13 {
|
|
2084
1336
|
grid-column-start: 13;
|
|
2085
1337
|
}
|
|
2086
|
-
|
|
2087
1338
|
.cds--md\:col-start-14 {
|
|
2088
1339
|
grid-column-start: 14;
|
|
2089
1340
|
}
|
|
2090
|
-
|
|
2091
1341
|
.cds--md\:col-start-15 {
|
|
2092
1342
|
grid-column-start: 15;
|
|
2093
1343
|
}
|
|
2094
|
-
|
|
2095
1344
|
.cds--md\:col-start-16 {
|
|
2096
1345
|
grid-column-start: 16;
|
|
2097
1346
|
}
|
|
2098
|
-
|
|
2099
1347
|
.cds--md\:col-end-2 {
|
|
2100
1348
|
grid-column-end: 2;
|
|
2101
1349
|
}
|
|
2102
|
-
|
|
2103
1350
|
.cds--md\:col-end-3 {
|
|
2104
1351
|
grid-column-end: 3;
|
|
2105
1352
|
}
|
|
2106
|
-
|
|
2107
1353
|
.cds--md\:col-end-4 {
|
|
2108
1354
|
grid-column-end: 4;
|
|
2109
1355
|
}
|
|
2110
|
-
|
|
2111
1356
|
.cds--md\:col-end-5 {
|
|
2112
1357
|
grid-column-end: 5;
|
|
2113
1358
|
}
|
|
2114
|
-
|
|
2115
1359
|
.cds--md\:col-end-6 {
|
|
2116
1360
|
grid-column-end: 6;
|
|
2117
1361
|
}
|
|
2118
|
-
|
|
2119
1362
|
.cds--md\:col-end-7 {
|
|
2120
1363
|
grid-column-end: 7;
|
|
2121
1364
|
}
|
|
2122
|
-
|
|
2123
1365
|
.cds--md\:col-end-8 {
|
|
2124
1366
|
grid-column-end: 8;
|
|
2125
1367
|
}
|
|
2126
|
-
|
|
2127
1368
|
.cds--md\:col-end-9 {
|
|
2128
1369
|
grid-column-end: 9;
|
|
2129
1370
|
}
|
|
2130
|
-
|
|
2131
1371
|
.cds--md\:col-end-10 {
|
|
2132
1372
|
grid-column-end: 10;
|
|
2133
1373
|
}
|
|
2134
|
-
|
|
2135
1374
|
.cds--md\:col-end-11 {
|
|
2136
1375
|
grid-column-end: 11;
|
|
2137
1376
|
}
|
|
2138
|
-
|
|
2139
1377
|
.cds--md\:col-end-12 {
|
|
2140
1378
|
grid-column-end: 12;
|
|
2141
1379
|
}
|
|
2142
|
-
|
|
2143
1380
|
.cds--md\:col-end-13 {
|
|
2144
1381
|
grid-column-end: 13;
|
|
2145
1382
|
}
|
|
2146
|
-
|
|
2147
1383
|
.cds--md\:col-end-14 {
|
|
2148
1384
|
grid-column-end: 14;
|
|
2149
1385
|
}
|
|
2150
|
-
|
|
2151
1386
|
.cds--md\:col-end-15 {
|
|
2152
1387
|
grid-column-end: 15;
|
|
2153
1388
|
}
|
|
2154
|
-
|
|
2155
1389
|
.cds--md\:col-end-16 {
|
|
2156
1390
|
grid-column-end: 16;
|
|
2157
1391
|
}
|
|
2158
|
-
|
|
2159
1392
|
.cds--md\:col-end-17 {
|
|
2160
1393
|
grid-column-end: 17;
|
|
2161
1394
|
}
|
|
2162
|
-
|
|
2163
1395
|
.cds--md\:col-start-auto {
|
|
2164
1396
|
grid-column-start: auto;
|
|
2165
1397
|
}
|
|
2166
|
-
|
|
2167
1398
|
.cds--md\:col-end-auto {
|
|
2168
1399
|
grid-column-end: auto;
|
|
2169
1400
|
}
|
|
@@ -2172,135 +1403,102 @@ em {
|
|
|
2172
1403
|
.cds--lg\:col-start-1 {
|
|
2173
1404
|
grid-column-start: 1;
|
|
2174
1405
|
}
|
|
2175
|
-
|
|
2176
1406
|
.cds--lg\:col-start-2 {
|
|
2177
1407
|
grid-column-start: 2;
|
|
2178
1408
|
}
|
|
2179
|
-
|
|
2180
1409
|
.cds--lg\:col-start-3 {
|
|
2181
1410
|
grid-column-start: 3;
|
|
2182
1411
|
}
|
|
2183
|
-
|
|
2184
1412
|
.cds--lg\:col-start-4 {
|
|
2185
1413
|
grid-column-start: 4;
|
|
2186
1414
|
}
|
|
2187
|
-
|
|
2188
1415
|
.cds--lg\:col-start-5 {
|
|
2189
1416
|
grid-column-start: 5;
|
|
2190
1417
|
}
|
|
2191
|
-
|
|
2192
1418
|
.cds--lg\:col-start-6 {
|
|
2193
1419
|
grid-column-start: 6;
|
|
2194
1420
|
}
|
|
2195
|
-
|
|
2196
1421
|
.cds--lg\:col-start-7 {
|
|
2197
1422
|
grid-column-start: 7;
|
|
2198
1423
|
}
|
|
2199
|
-
|
|
2200
1424
|
.cds--lg\:col-start-8 {
|
|
2201
1425
|
grid-column-start: 8;
|
|
2202
1426
|
}
|
|
2203
|
-
|
|
2204
1427
|
.cds--lg\:col-start-9 {
|
|
2205
1428
|
grid-column-start: 9;
|
|
2206
1429
|
}
|
|
2207
|
-
|
|
2208
1430
|
.cds--lg\:col-start-10 {
|
|
2209
1431
|
grid-column-start: 10;
|
|
2210
1432
|
}
|
|
2211
|
-
|
|
2212
1433
|
.cds--lg\:col-start-11 {
|
|
2213
1434
|
grid-column-start: 11;
|
|
2214
1435
|
}
|
|
2215
|
-
|
|
2216
1436
|
.cds--lg\:col-start-12 {
|
|
2217
1437
|
grid-column-start: 12;
|
|
2218
1438
|
}
|
|
2219
|
-
|
|
2220
1439
|
.cds--lg\:col-start-13 {
|
|
2221
1440
|
grid-column-start: 13;
|
|
2222
1441
|
}
|
|
2223
|
-
|
|
2224
1442
|
.cds--lg\:col-start-14 {
|
|
2225
1443
|
grid-column-start: 14;
|
|
2226
1444
|
}
|
|
2227
|
-
|
|
2228
1445
|
.cds--lg\:col-start-15 {
|
|
2229
1446
|
grid-column-start: 15;
|
|
2230
1447
|
}
|
|
2231
|
-
|
|
2232
1448
|
.cds--lg\:col-start-16 {
|
|
2233
1449
|
grid-column-start: 16;
|
|
2234
1450
|
}
|
|
2235
|
-
|
|
2236
1451
|
.cds--lg\:col-end-2 {
|
|
2237
1452
|
grid-column-end: 2;
|
|
2238
1453
|
}
|
|
2239
|
-
|
|
2240
1454
|
.cds--lg\:col-end-3 {
|
|
2241
1455
|
grid-column-end: 3;
|
|
2242
1456
|
}
|
|
2243
|
-
|
|
2244
1457
|
.cds--lg\:col-end-4 {
|
|
2245
1458
|
grid-column-end: 4;
|
|
2246
1459
|
}
|
|
2247
|
-
|
|
2248
1460
|
.cds--lg\:col-end-5 {
|
|
2249
1461
|
grid-column-end: 5;
|
|
2250
1462
|
}
|
|
2251
|
-
|
|
2252
1463
|
.cds--lg\:col-end-6 {
|
|
2253
1464
|
grid-column-end: 6;
|
|
2254
1465
|
}
|
|
2255
|
-
|
|
2256
1466
|
.cds--lg\:col-end-7 {
|
|
2257
1467
|
grid-column-end: 7;
|
|
2258
1468
|
}
|
|
2259
|
-
|
|
2260
1469
|
.cds--lg\:col-end-8 {
|
|
2261
1470
|
grid-column-end: 8;
|
|
2262
1471
|
}
|
|
2263
|
-
|
|
2264
1472
|
.cds--lg\:col-end-9 {
|
|
2265
1473
|
grid-column-end: 9;
|
|
2266
1474
|
}
|
|
2267
|
-
|
|
2268
1475
|
.cds--lg\:col-end-10 {
|
|
2269
1476
|
grid-column-end: 10;
|
|
2270
1477
|
}
|
|
2271
|
-
|
|
2272
1478
|
.cds--lg\:col-end-11 {
|
|
2273
1479
|
grid-column-end: 11;
|
|
2274
1480
|
}
|
|
2275
|
-
|
|
2276
1481
|
.cds--lg\:col-end-12 {
|
|
2277
1482
|
grid-column-end: 12;
|
|
2278
1483
|
}
|
|
2279
|
-
|
|
2280
1484
|
.cds--lg\:col-end-13 {
|
|
2281
1485
|
grid-column-end: 13;
|
|
2282
1486
|
}
|
|
2283
|
-
|
|
2284
1487
|
.cds--lg\:col-end-14 {
|
|
2285
1488
|
grid-column-end: 14;
|
|
2286
1489
|
}
|
|
2287
|
-
|
|
2288
1490
|
.cds--lg\:col-end-15 {
|
|
2289
1491
|
grid-column-end: 15;
|
|
2290
1492
|
}
|
|
2291
|
-
|
|
2292
1493
|
.cds--lg\:col-end-16 {
|
|
2293
1494
|
grid-column-end: 16;
|
|
2294
1495
|
}
|
|
2295
|
-
|
|
2296
1496
|
.cds--lg\:col-end-17 {
|
|
2297
1497
|
grid-column-end: 17;
|
|
2298
1498
|
}
|
|
2299
|
-
|
|
2300
1499
|
.cds--lg\:col-start-auto {
|
|
2301
1500
|
grid-column-start: auto;
|
|
2302
1501
|
}
|
|
2303
|
-
|
|
2304
1502
|
.cds--lg\:col-end-auto {
|
|
2305
1503
|
grid-column-end: auto;
|
|
2306
1504
|
}
|
|
@@ -2309,135 +1507,102 @@ em {
|
|
|
2309
1507
|
.cds--xlg\:col-start-1 {
|
|
2310
1508
|
grid-column-start: 1;
|
|
2311
1509
|
}
|
|
2312
|
-
|
|
2313
1510
|
.cds--xlg\:col-start-2 {
|
|
2314
1511
|
grid-column-start: 2;
|
|
2315
1512
|
}
|
|
2316
|
-
|
|
2317
1513
|
.cds--xlg\:col-start-3 {
|
|
2318
1514
|
grid-column-start: 3;
|
|
2319
1515
|
}
|
|
2320
|
-
|
|
2321
1516
|
.cds--xlg\:col-start-4 {
|
|
2322
1517
|
grid-column-start: 4;
|
|
2323
1518
|
}
|
|
2324
|
-
|
|
2325
1519
|
.cds--xlg\:col-start-5 {
|
|
2326
1520
|
grid-column-start: 5;
|
|
2327
1521
|
}
|
|
2328
|
-
|
|
2329
1522
|
.cds--xlg\:col-start-6 {
|
|
2330
1523
|
grid-column-start: 6;
|
|
2331
1524
|
}
|
|
2332
|
-
|
|
2333
1525
|
.cds--xlg\:col-start-7 {
|
|
2334
1526
|
grid-column-start: 7;
|
|
2335
1527
|
}
|
|
2336
|
-
|
|
2337
1528
|
.cds--xlg\:col-start-8 {
|
|
2338
1529
|
grid-column-start: 8;
|
|
2339
1530
|
}
|
|
2340
|
-
|
|
2341
1531
|
.cds--xlg\:col-start-9 {
|
|
2342
1532
|
grid-column-start: 9;
|
|
2343
1533
|
}
|
|
2344
|
-
|
|
2345
1534
|
.cds--xlg\:col-start-10 {
|
|
2346
1535
|
grid-column-start: 10;
|
|
2347
1536
|
}
|
|
2348
|
-
|
|
2349
1537
|
.cds--xlg\:col-start-11 {
|
|
2350
1538
|
grid-column-start: 11;
|
|
2351
1539
|
}
|
|
2352
|
-
|
|
2353
1540
|
.cds--xlg\:col-start-12 {
|
|
2354
1541
|
grid-column-start: 12;
|
|
2355
1542
|
}
|
|
2356
|
-
|
|
2357
1543
|
.cds--xlg\:col-start-13 {
|
|
2358
1544
|
grid-column-start: 13;
|
|
2359
1545
|
}
|
|
2360
|
-
|
|
2361
1546
|
.cds--xlg\:col-start-14 {
|
|
2362
1547
|
grid-column-start: 14;
|
|
2363
1548
|
}
|
|
2364
|
-
|
|
2365
1549
|
.cds--xlg\:col-start-15 {
|
|
2366
1550
|
grid-column-start: 15;
|
|
2367
1551
|
}
|
|
2368
|
-
|
|
2369
1552
|
.cds--xlg\:col-start-16 {
|
|
2370
1553
|
grid-column-start: 16;
|
|
2371
1554
|
}
|
|
2372
|
-
|
|
2373
1555
|
.cds--xlg\:col-end-2 {
|
|
2374
1556
|
grid-column-end: 2;
|
|
2375
1557
|
}
|
|
2376
|
-
|
|
2377
1558
|
.cds--xlg\:col-end-3 {
|
|
2378
1559
|
grid-column-end: 3;
|
|
2379
1560
|
}
|
|
2380
|
-
|
|
2381
1561
|
.cds--xlg\:col-end-4 {
|
|
2382
1562
|
grid-column-end: 4;
|
|
2383
1563
|
}
|
|
2384
|
-
|
|
2385
1564
|
.cds--xlg\:col-end-5 {
|
|
2386
1565
|
grid-column-end: 5;
|
|
2387
1566
|
}
|
|
2388
|
-
|
|
2389
1567
|
.cds--xlg\:col-end-6 {
|
|
2390
1568
|
grid-column-end: 6;
|
|
2391
1569
|
}
|
|
2392
|
-
|
|
2393
1570
|
.cds--xlg\:col-end-7 {
|
|
2394
1571
|
grid-column-end: 7;
|
|
2395
1572
|
}
|
|
2396
|
-
|
|
2397
1573
|
.cds--xlg\:col-end-8 {
|
|
2398
1574
|
grid-column-end: 8;
|
|
2399
1575
|
}
|
|
2400
|
-
|
|
2401
1576
|
.cds--xlg\:col-end-9 {
|
|
2402
1577
|
grid-column-end: 9;
|
|
2403
1578
|
}
|
|
2404
|
-
|
|
2405
1579
|
.cds--xlg\:col-end-10 {
|
|
2406
1580
|
grid-column-end: 10;
|
|
2407
1581
|
}
|
|
2408
|
-
|
|
2409
1582
|
.cds--xlg\:col-end-11 {
|
|
2410
1583
|
grid-column-end: 11;
|
|
2411
1584
|
}
|
|
2412
|
-
|
|
2413
1585
|
.cds--xlg\:col-end-12 {
|
|
2414
1586
|
grid-column-end: 12;
|
|
2415
1587
|
}
|
|
2416
|
-
|
|
2417
1588
|
.cds--xlg\:col-end-13 {
|
|
2418
1589
|
grid-column-end: 13;
|
|
2419
1590
|
}
|
|
2420
|
-
|
|
2421
1591
|
.cds--xlg\:col-end-14 {
|
|
2422
1592
|
grid-column-end: 14;
|
|
2423
1593
|
}
|
|
2424
|
-
|
|
2425
1594
|
.cds--xlg\:col-end-15 {
|
|
2426
1595
|
grid-column-end: 15;
|
|
2427
1596
|
}
|
|
2428
|
-
|
|
2429
1597
|
.cds--xlg\:col-end-16 {
|
|
2430
1598
|
grid-column-end: 16;
|
|
2431
1599
|
}
|
|
2432
|
-
|
|
2433
1600
|
.cds--xlg\:col-end-17 {
|
|
2434
1601
|
grid-column-end: 17;
|
|
2435
1602
|
}
|
|
2436
|
-
|
|
2437
1603
|
.cds--xlg\:col-start-auto {
|
|
2438
1604
|
grid-column-start: auto;
|
|
2439
1605
|
}
|
|
2440
|
-
|
|
2441
1606
|
.cds--xlg\:col-end-auto {
|
|
2442
1607
|
grid-column-end: auto;
|
|
2443
1608
|
}
|
|
@@ -2446,135 +1611,102 @@ em {
|
|
|
2446
1611
|
.cds--max\:col-start-1 {
|
|
2447
1612
|
grid-column-start: 1;
|
|
2448
1613
|
}
|
|
2449
|
-
|
|
2450
1614
|
.cds--max\:col-start-2 {
|
|
2451
1615
|
grid-column-start: 2;
|
|
2452
1616
|
}
|
|
2453
|
-
|
|
2454
1617
|
.cds--max\:col-start-3 {
|
|
2455
1618
|
grid-column-start: 3;
|
|
2456
1619
|
}
|
|
2457
|
-
|
|
2458
1620
|
.cds--max\:col-start-4 {
|
|
2459
1621
|
grid-column-start: 4;
|
|
2460
1622
|
}
|
|
2461
|
-
|
|
2462
1623
|
.cds--max\:col-start-5 {
|
|
2463
1624
|
grid-column-start: 5;
|
|
2464
1625
|
}
|
|
2465
|
-
|
|
2466
1626
|
.cds--max\:col-start-6 {
|
|
2467
1627
|
grid-column-start: 6;
|
|
2468
1628
|
}
|
|
2469
|
-
|
|
2470
1629
|
.cds--max\:col-start-7 {
|
|
2471
1630
|
grid-column-start: 7;
|
|
2472
1631
|
}
|
|
2473
|
-
|
|
2474
1632
|
.cds--max\:col-start-8 {
|
|
2475
1633
|
grid-column-start: 8;
|
|
2476
1634
|
}
|
|
2477
|
-
|
|
2478
1635
|
.cds--max\:col-start-9 {
|
|
2479
1636
|
grid-column-start: 9;
|
|
2480
1637
|
}
|
|
2481
|
-
|
|
2482
1638
|
.cds--max\:col-start-10 {
|
|
2483
1639
|
grid-column-start: 10;
|
|
2484
1640
|
}
|
|
2485
|
-
|
|
2486
1641
|
.cds--max\:col-start-11 {
|
|
2487
1642
|
grid-column-start: 11;
|
|
2488
1643
|
}
|
|
2489
|
-
|
|
2490
1644
|
.cds--max\:col-start-12 {
|
|
2491
1645
|
grid-column-start: 12;
|
|
2492
1646
|
}
|
|
2493
|
-
|
|
2494
1647
|
.cds--max\:col-start-13 {
|
|
2495
1648
|
grid-column-start: 13;
|
|
2496
1649
|
}
|
|
2497
|
-
|
|
2498
1650
|
.cds--max\:col-start-14 {
|
|
2499
1651
|
grid-column-start: 14;
|
|
2500
1652
|
}
|
|
2501
|
-
|
|
2502
1653
|
.cds--max\:col-start-15 {
|
|
2503
1654
|
grid-column-start: 15;
|
|
2504
1655
|
}
|
|
2505
|
-
|
|
2506
1656
|
.cds--max\:col-start-16 {
|
|
2507
1657
|
grid-column-start: 16;
|
|
2508
1658
|
}
|
|
2509
|
-
|
|
2510
1659
|
.cds--max\:col-end-2 {
|
|
2511
1660
|
grid-column-end: 2;
|
|
2512
1661
|
}
|
|
2513
|
-
|
|
2514
1662
|
.cds--max\:col-end-3 {
|
|
2515
1663
|
grid-column-end: 3;
|
|
2516
1664
|
}
|
|
2517
|
-
|
|
2518
1665
|
.cds--max\:col-end-4 {
|
|
2519
1666
|
grid-column-end: 4;
|
|
2520
1667
|
}
|
|
2521
|
-
|
|
2522
1668
|
.cds--max\:col-end-5 {
|
|
2523
1669
|
grid-column-end: 5;
|
|
2524
1670
|
}
|
|
2525
|
-
|
|
2526
1671
|
.cds--max\:col-end-6 {
|
|
2527
1672
|
grid-column-end: 6;
|
|
2528
1673
|
}
|
|
2529
|
-
|
|
2530
1674
|
.cds--max\:col-end-7 {
|
|
2531
1675
|
grid-column-end: 7;
|
|
2532
1676
|
}
|
|
2533
|
-
|
|
2534
1677
|
.cds--max\:col-end-8 {
|
|
2535
1678
|
grid-column-end: 8;
|
|
2536
1679
|
}
|
|
2537
|
-
|
|
2538
1680
|
.cds--max\:col-end-9 {
|
|
2539
1681
|
grid-column-end: 9;
|
|
2540
1682
|
}
|
|
2541
|
-
|
|
2542
1683
|
.cds--max\:col-end-10 {
|
|
2543
1684
|
grid-column-end: 10;
|
|
2544
1685
|
}
|
|
2545
|
-
|
|
2546
1686
|
.cds--max\:col-end-11 {
|
|
2547
1687
|
grid-column-end: 11;
|
|
2548
1688
|
}
|
|
2549
|
-
|
|
2550
1689
|
.cds--max\:col-end-12 {
|
|
2551
1690
|
grid-column-end: 12;
|
|
2552
1691
|
}
|
|
2553
|
-
|
|
2554
1692
|
.cds--max\:col-end-13 {
|
|
2555
1693
|
grid-column-end: 13;
|
|
2556
1694
|
}
|
|
2557
|
-
|
|
2558
1695
|
.cds--max\:col-end-14 {
|
|
2559
1696
|
grid-column-end: 14;
|
|
2560
1697
|
}
|
|
2561
|
-
|
|
2562
1698
|
.cds--max\:col-end-15 {
|
|
2563
1699
|
grid-column-end: 15;
|
|
2564
1700
|
}
|
|
2565
|
-
|
|
2566
1701
|
.cds--max\:col-end-16 {
|
|
2567
1702
|
grid-column-end: 16;
|
|
2568
1703
|
}
|
|
2569
|
-
|
|
2570
1704
|
.cds--max\:col-end-17 {
|
|
2571
1705
|
grid-column-end: 17;
|
|
2572
1706
|
}
|
|
2573
|
-
|
|
2574
1707
|
.cds--max\:col-start-auto {
|
|
2575
1708
|
grid-column-start: auto;
|
|
2576
1709
|
}
|
|
2577
|
-
|
|
2578
1710
|
.cds--max\:col-end-auto {
|
|
2579
1711
|
grid-column-end: auto;
|
|
2580
1712
|
}
|
|
@@ -3629,7 +2761,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3629
2761
|
|
|
3630
2762
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
3631
2763
|
.cds--accordion__arrow,
|
|
3632
|
-
.cds--accordion__item--active .cds--accordion__arrow {
|
|
2764
|
+
.cds--accordion__item--active .cds--accordion__arrow {
|
|
3633
2765
|
fill: ButtonText;
|
|
3634
2766
|
}
|
|
3635
2767
|
}
|
|
@@ -4522,7 +3654,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4522
3654
|
|
|
4523
3655
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
4524
3656
|
.cds--btn--ghost.cds--btn--icon-only .cds--btn__icon path:not([data-icon-path]):not([fill=none]),
|
|
4525
|
-
.cds--btn--ghost.cds--btn--icon-only .cds--btn__icon {
|
|
3657
|
+
.cds--btn--ghost.cds--btn--icon-only .cds--btn__icon {
|
|
4526
3658
|
fill: ButtonText;
|
|
4527
3659
|
}
|
|
4528
3660
|
}
|
|
@@ -4707,12 +3839,12 @@ input[data-invalid]:not(:focus),
|
|
|
4707
3839
|
}
|
|
4708
3840
|
@media screen and (prefers-contrast) {
|
|
4709
3841
|
input[data-invalid]:not(:focus),
|
|
4710
|
-
.cds--number[data-invalid] input[type=number]:not(:focus),
|
|
4711
|
-
.cds--text-input__field-wrapper[data-invalid] > .cds--text-input--invalid:not(:focus),
|
|
4712
|
-
.cds--text-area__wrapper[data-invalid] > .cds--text-area--invalid:not(:focus),
|
|
4713
|
-
.cds--select-input__wrapper[data-invalid] .cds--select-input:not(:focus),
|
|
4714
|
-
.cds--list-box[data-invalid]:not(.cds--multi-select--invalid--focused),
|
|
4715
|
-
.cds--combo-box[data-invalid]:not(.cds--multi-select--selected) .cds--text-input:not(:focus) {
|
|
3842
|
+
.cds--number[data-invalid] input[type=number]:not(:focus),
|
|
3843
|
+
.cds--text-input__field-wrapper[data-invalid] > .cds--text-input--invalid:not(:focus),
|
|
3844
|
+
.cds--text-area__wrapper[data-invalid] > .cds--text-area--invalid:not(:focus),
|
|
3845
|
+
.cds--select-input__wrapper[data-invalid] .cds--select-input:not(:focus),
|
|
3846
|
+
.cds--list-box[data-invalid]:not(.cds--multi-select--invalid--focused),
|
|
3847
|
+
.cds--combo-box[data-invalid]:not(.cds--multi-select--selected) .cds--text-input:not(:focus) {
|
|
4716
3848
|
outline-style: dotted;
|
|
4717
3849
|
}
|
|
4718
3850
|
}
|
|
@@ -5766,7 +4898,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5766
4898
|
.cds--snippet__overflow-indicator--left {
|
|
5767
4899
|
background-image: linear-gradient(to left, rgba(var(--cds-layer), 0), var(--cds-layer));
|
|
5768
4900
|
}
|
|
5769
|
-
|
|
5770
4901
|
.cds--snippet__overflow-indicator--right {
|
|
5771
4902
|
background-image: linear-gradient(to right, rgba(var(--cds-layer), 0), var(--cds-layer));
|
|
5772
4903
|
}
|
|
@@ -5841,7 +4972,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5841
4972
|
|
|
5842
4973
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
5843
4974
|
.cds--snippet--single,
|
|
5844
|
-
.cds--snippet--multi {
|
|
4975
|
+
.cds--snippet--multi {
|
|
5845
4976
|
outline: 1px solid transparent;
|
|
5846
4977
|
}
|
|
5847
4978
|
}
|
|
@@ -5983,8 +5114,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5983
5114
|
}
|
|
5984
5115
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
5985
5116
|
.cds--text-input--password__visibility::before, .cds--text-input--password__visibility::after,
|
|
5986
|
-
.cds--text-input--password__visibility .cds--assistive-text,
|
|
5987
|
-
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
5117
|
+
.cds--text-input--password__visibility .cds--assistive-text,
|
|
5118
|
+
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
5988
5119
|
display: inline-block;
|
|
5989
5120
|
}
|
|
5990
5121
|
}
|
|
@@ -6036,29 +5167,29 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6036
5167
|
}
|
|
6037
5168
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
6038
5169
|
.cds--text-input--password__visibility::after,
|
|
6039
|
-
.cds--text-input--password__visibility .cds--assistive-text,
|
|
6040
|
-
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
5170
|
+
.cds--text-input--password__visibility .cds--assistive-text,
|
|
5171
|
+
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
6041
5172
|
width: auto;
|
|
6042
5173
|
}
|
|
6043
5174
|
}
|
|
6044
5175
|
@supports (-ms-accelerator: true) {
|
|
6045
5176
|
.cds--text-input--password__visibility::after,
|
|
6046
|
-
.cds--text-input--password__visibility .cds--assistive-text,
|
|
6047
|
-
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
5177
|
+
.cds--text-input--password__visibility .cds--assistive-text,
|
|
5178
|
+
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
6048
5179
|
width: auto;
|
|
6049
5180
|
}
|
|
6050
5181
|
}
|
|
6051
5182
|
@supports (-ms-ime-align: auto) {
|
|
6052
5183
|
.cds--text-input--password__visibility::after,
|
|
6053
|
-
.cds--text-input--password__visibility .cds--assistive-text,
|
|
6054
|
-
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
5184
|
+
.cds--text-input--password__visibility .cds--assistive-text,
|
|
5185
|
+
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
6055
5186
|
width: auto;
|
|
6056
5187
|
}
|
|
6057
5188
|
}
|
|
6058
5189
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
|
6059
5190
|
.cds--text-input--password__visibility::after,
|
|
6060
|
-
.cds--text-input--password__visibility .cds--assistive-text,
|
|
6061
|
-
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
5191
|
+
.cds--text-input--password__visibility .cds--assistive-text,
|
|
5192
|
+
.cds--text-input--password__visibility + .cds--assistive-text {
|
|
6062
5193
|
border: 1px solid transparent;
|
|
6063
5194
|
}
|
|
6064
5195
|
}
|
|
@@ -6356,7 +5487,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6356
5487
|
}
|
|
6357
5488
|
@media screen and (prefers-contrast) {
|
|
6358
5489
|
.cds--form--fluid .cds--text-input__field-wrapper[data-invalid]:focus-within,
|
|
6359
|
-
.cds--form--fluid .cds--text-input__field-wrapper--warning:focus-within {
|
|
5490
|
+
.cds--form--fluid .cds--text-input__field-wrapper--warning:focus-within {
|
|
6360
5491
|
outline-style: dotted;
|
|
6361
5492
|
}
|
|
6362
5493
|
}
|
|
@@ -6429,7 +5560,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6429
5560
|
|
|
6430
5561
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
6431
5562
|
.cds--btn.cds--btn--icon-only.cds--text-input--password__visibility__toggle.cds--tooltip__trigger svg,
|
|
6432
|
-
.cds--btn.cds--btn--icon-only.cds--text-input--password__visibility__toggle.cds--tooltip__trigger:hover svg {
|
|
5563
|
+
.cds--btn.cds--btn--icon-only.cds--text-input--password__visibility__toggle.cds--tooltip__trigger:hover svg {
|
|
6433
5564
|
fill: ButtonText;
|
|
6434
5565
|
}
|
|
6435
5566
|
}
|
|
@@ -6730,7 +5861,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6730
5861
|
|
|
6731
5862
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
6732
5863
|
.cds--tag__close-icon svg,
|
|
6733
|
-
.cds--tag__custom-icon svg {
|
|
5864
|
+
.cds--tag__custom-icon svg {
|
|
6734
5865
|
fill: ButtonText;
|
|
6735
5866
|
}
|
|
6736
5867
|
}
|
|
@@ -7503,16 +6634,16 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7503
6634
|
|
|
7504
6635
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
7505
6636
|
.cds--list-box__field,
|
|
7506
|
-
.cds--list-box__menu,
|
|
7507
|
-
.cds--multi-select .cds--tag--filter {
|
|
6637
|
+
.cds--list-box__menu,
|
|
6638
|
+
.cds--multi-select .cds--tag--filter {
|
|
7508
6639
|
outline: 1px solid transparent;
|
|
7509
6640
|
}
|
|
7510
6641
|
}
|
|
7511
6642
|
|
|
7512
6643
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
7513
6644
|
.cds--list-box__field:focus,
|
|
7514
|
-
.cds--multi-select .cds--tag__close-icon:focus,
|
|
7515
|
-
.cds--list-box__menu-item--highlighted .cds--list-box__menu-item__option {
|
|
6645
|
+
.cds--multi-select .cds--tag__close-icon:focus,
|
|
6646
|
+
.cds--list-box__menu-item--highlighted .cds--list-box__menu-item__option {
|
|
7516
6647
|
color: Highlight;
|
|
7517
6648
|
outline: 1px solid Highlight;
|
|
7518
6649
|
}
|
|
@@ -7520,8 +6651,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7520
6651
|
|
|
7521
6652
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
7522
6653
|
.cds--list-box__menu-icon > svg,
|
|
7523
|
-
.cds--list-box__selection > svg,
|
|
7524
|
-
.cds--list-box__selection--multi > svg {
|
|
6654
|
+
.cds--list-box__selection > svg,
|
|
6655
|
+
.cds--list-box__selection--multi > svg {
|
|
7525
6656
|
fill: ButtonText;
|
|
7526
6657
|
}
|
|
7527
6658
|
}
|
|
@@ -8720,7 +7851,7 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
8720
7851
|
}
|
|
8721
7852
|
@-moz-document url-prefix() {
|
|
8722
7853
|
.cds--data-table--sticky-header thead,
|
|
8723
|
-
.cds--data-table--sticky-header tbody {
|
|
7854
|
+
.cds--data-table--sticky-header tbody {
|
|
8724
7855
|
scrollbar-width: none;
|
|
8725
7856
|
}
|
|
8726
7857
|
}
|
|
@@ -9053,7 +8184,7 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
9053
8184
|
}
|
|
9054
8185
|
@media screen and (prefers-contrast) {
|
|
9055
8186
|
.cds--toolbar-action:focus:not([disabled]),
|
|
9056
|
-
.cds--toolbar-action:active:not([disabled]) {
|
|
8187
|
+
.cds--toolbar-action:active:not([disabled]) {
|
|
9057
8188
|
outline-style: dotted;
|
|
9058
8189
|
}
|
|
9059
8190
|
}
|
|
@@ -9707,7 +8838,7 @@ tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover + tr[dat
|
|
|
9707
8838
|
}
|
|
9708
8839
|
@media (prefers-reduced-motion: reduce) {
|
|
9709
8840
|
.cds--data-table.cds--skeleton th span::before,
|
|
9710
|
-
.cds--data-table.cds--skeleton td span::before {
|
|
8841
|
+
.cds--data-table.cds--skeleton td span::before {
|
|
9711
8842
|
animation: none;
|
|
9712
8843
|
}
|
|
9713
8844
|
}
|
|
@@ -9978,7 +9109,7 @@ th .cds--table-sort__flex {
|
|
|
9978
9109
|
|
|
9979
9110
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
9980
9111
|
.cds--table-sort__icon,
|
|
9981
|
-
.cds--table-sort__icon-unsorted {
|
|
9112
|
+
.cds--table-sort__icon-unsorted {
|
|
9982
9113
|
fill: ButtonText;
|
|
9983
9114
|
}
|
|
9984
9115
|
}
|
|
@@ -10196,13 +9327,13 @@ th .cds--table-sort__flex {
|
|
|
10196
9327
|
}
|
|
10197
9328
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
10198
9329
|
.flatpickr-prev-month,
|
|
10199
|
-
.flatpickr-next-month {
|
|
9330
|
+
.flatpickr-next-month {
|
|
10200
9331
|
fill: ButtonText;
|
|
10201
9332
|
}
|
|
10202
9333
|
}
|
|
10203
9334
|
@media screen and (prefers-reduced-motion: reduce) {
|
|
10204
9335
|
.flatpickr-prev-month,
|
|
10205
|
-
.flatpickr-next-month {
|
|
9336
|
+
.flatpickr-next-month {
|
|
10206
9337
|
transition: none;
|
|
10207
9338
|
}
|
|
10208
9339
|
}
|
|
@@ -10256,8 +9387,7 @@ th .cds--table-sort__flex {
|
|
|
10256
9387
|
padding: 0.25rem;
|
|
10257
9388
|
border: none;
|
|
10258
9389
|
margin: 0;
|
|
10259
|
-
-moz-appearance: textfield;
|
|
10260
|
-
/* Firefox */
|
|
9390
|
+
-moz-appearance: textfield; /* Firefox */
|
|
10261
9391
|
background-color: var(--cds-field-01, #f4f4f4);
|
|
10262
9392
|
color: var(--cds-text-primary, #161616);
|
|
10263
9393
|
cursor: default;
|
|
@@ -10266,8 +9396,7 @@ th .cds--table-sort__flex {
|
|
|
10266
9396
|
font-weight: 600;
|
|
10267
9397
|
}
|
|
10268
9398
|
.numInputWrapper .numInput::-webkit-outer-spin-button, .numInputWrapper .numInput::-webkit-inner-spin-button {
|
|
10269
|
-
margin: 0;
|
|
10270
|
-
/* <-- Apparently some margin are still there even though it's hidden */
|
|
9399
|
+
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
|
|
10271
9400
|
-webkit-appearance: none;
|
|
10272
9401
|
}
|
|
10273
9402
|
.numInputWrapper .numInput:focus {
|
|
@@ -10498,7 +9627,7 @@ th .cds--table-sort__flex {
|
|
|
10498
9627
|
}
|
|
10499
9628
|
@media screen and (prefers-contrast) {
|
|
10500
9629
|
.flatpickr-day.startRange.inRange:not(.selected),
|
|
10501
|
-
.flatpickr-day.endRange.inRange {
|
|
9630
|
+
.flatpickr-day.endRange.inRange {
|
|
10502
9631
|
outline-style: dotted;
|
|
10503
9632
|
}
|
|
10504
9633
|
}
|
|
@@ -10534,7 +9663,7 @@ th .cds--table-sort__flex {
|
|
|
10534
9663
|
|
|
10535
9664
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
10536
9665
|
.flatpickr-day.today,
|
|
10537
|
-
.flatpickr-day.inRange {
|
|
9666
|
+
.flatpickr-day.inRange {
|
|
10538
9667
|
color: Highlight;
|
|
10539
9668
|
}
|
|
10540
9669
|
}
|
|
@@ -10732,7 +9861,7 @@ th .cds--table-sort__flex {
|
|
|
10732
9861
|
}
|
|
10733
9862
|
@media (prefers-reduced-motion: reduce) {
|
|
10734
9863
|
.cds--date-picker.cds--skeleton input::before,
|
|
10735
|
-
.cds--date-picker__input.cds--skeleton::before {
|
|
9864
|
+
.cds--date-picker__input.cds--skeleton::before {
|
|
10736
9865
|
animation: none;
|
|
10737
9866
|
}
|
|
10738
9867
|
}
|
|
@@ -11071,7 +10200,7 @@ button.cds--dropdown-text:focus {
|
|
|
11071
10200
|
}
|
|
11072
10201
|
@media screen and (prefers-contrast) {
|
|
11073
10202
|
.cds--dropdown--focused,
|
|
11074
|
-
.cds--dropdown-link:focus {
|
|
10203
|
+
.cds--dropdown-link:focus {
|
|
11075
10204
|
outline-style: dotted;
|
|
11076
10205
|
}
|
|
11077
10206
|
}
|
|
@@ -11247,7 +10376,7 @@ button.cds--dropdown-text:focus {
|
|
|
11247
10376
|
}
|
|
11248
10377
|
@media (prefers-reduced-motion: reduce) {
|
|
11249
10378
|
.cds--dropdown-v2.cds--skeleton::before,
|
|
11250
|
-
.cds--dropdown.cds--skeleton::before {
|
|
10379
|
+
.cds--dropdown.cds--skeleton::before {
|
|
11251
10380
|
animation: none;
|
|
11252
10381
|
}
|
|
11253
10382
|
}
|
|
@@ -12143,7 +11272,7 @@ button.cds--dropdown-text:focus {
|
|
|
12143
11272
|
}
|
|
12144
11273
|
@media screen and (prefers-contrast) {
|
|
12145
11274
|
.cds--date-picker--fluid.cds--date-picker--fluid--invalid,
|
|
12146
|
-
.cds--date-picker-container.cds--date-picker--fluid--invalid {
|
|
11275
|
+
.cds--date-picker-container.cds--date-picker--fluid--invalid {
|
|
12147
11276
|
outline-style: dotted;
|
|
12148
11277
|
}
|
|
12149
11278
|
}
|
|
@@ -12810,7 +11939,7 @@ button.cds--dropdown-text:focus {
|
|
|
12810
11939
|
/* stylelint-disable */
|
|
12811
11940
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
12812
11941
|
.cds--number__control-btn:hover,
|
|
12813
|
-
.cds--number__control-btn:focus {
|
|
11942
|
+
.cds--number__control-btn:focus {
|
|
12814
11943
|
color: Highlight;
|
|
12815
11944
|
outline: 1px solid Highlight;
|
|
12816
11945
|
}
|
|
@@ -12935,7 +12064,7 @@ button.cds--dropdown-text:focus {
|
|
|
12935
12064
|
}
|
|
12936
12065
|
@media screen and (prefers-contrast) {
|
|
12937
12066
|
.cds--number-input--fluid--invalid input[type=number][data-invalid] ~ .cds--number__controls .cds--number__control-btn:focus,
|
|
12938
|
-
.cds--number-input--fluid--invalid .cds--number input[type=number][data-invalid] ~ .cds--number__controls .cds--number__control-btn:focus:hover {
|
|
12067
|
+
.cds--number-input--fluid--invalid .cds--number input[type=number][data-invalid] ~ .cds--number__controls .cds--number__control-btn:focus:hover {
|
|
12939
12068
|
outline-style: dotted;
|
|
12940
12069
|
}
|
|
12941
12070
|
}
|
|
@@ -13234,7 +12363,7 @@ button.cds--dropdown-text:focus {
|
|
|
13234
12363
|
}
|
|
13235
12364
|
@media screen and (prefers-contrast) {
|
|
13236
12365
|
.cds--search-close:focus,
|
|
13237
|
-
.cds--search-button:focus {
|
|
12366
|
+
.cds--search-button:focus {
|
|
13238
12367
|
outline-style: dotted;
|
|
13239
12368
|
}
|
|
13240
12369
|
}
|
|
@@ -13246,7 +12375,7 @@ button.cds--dropdown-text:focus {
|
|
|
13246
12375
|
}
|
|
13247
12376
|
@media screen and (prefers-contrast) {
|
|
13248
12377
|
.cds--search-close:active,
|
|
13249
|
-
.cds--search-button:active {
|
|
12378
|
+
.cds--search-button:active {
|
|
13250
12379
|
outline-style: dotted;
|
|
13251
12380
|
}
|
|
13252
12381
|
}
|
|
@@ -13352,8 +12481,8 @@ button.cds--dropdown-text:focus {
|
|
|
13352
12481
|
}
|
|
13353
12482
|
@media (prefers-reduced-motion: reduce) {
|
|
13354
12483
|
.cds--search--lg.cds--skeleton .cds--search-input::before,
|
|
13355
|
-
.cds--search--md.cds--skeleton .cds--search-input::before,
|
|
13356
|
-
.cds--search--sm.cds--skeleton .cds--search-input::before {
|
|
12484
|
+
.cds--search--md.cds--skeleton .cds--search-input::before,
|
|
12485
|
+
.cds--search--sm.cds--skeleton .cds--search-input::before {
|
|
13357
12486
|
animation: none;
|
|
13358
12487
|
}
|
|
13359
12488
|
}
|
|
@@ -13421,7 +12550,7 @@ button.cds--dropdown-text:focus {
|
|
|
13421
12550
|
|
|
13422
12551
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
13423
12552
|
.cds--search-close svg,
|
|
13424
|
-
.cds--search-magnifier-icon {
|
|
12553
|
+
.cds--search-magnifier-icon {
|
|
13425
12554
|
fill: ButtonText;
|
|
13426
12555
|
}
|
|
13427
12556
|
}
|
|
@@ -14076,7 +13205,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
14076
13205
|
}
|
|
14077
13206
|
@media screen and (prefers-contrast) {
|
|
14078
13207
|
.cds--text-area--fluid .cds--text-area__wrapper[data-invalid]:focus-within,
|
|
14079
|
-
.cds--text-area--fluid .cds--text-area__wrapper:focus-within {
|
|
13208
|
+
.cds--text-area--fluid .cds--text-area__wrapper:focus-within {
|
|
14080
13209
|
outline-style: dotted;
|
|
14081
13210
|
}
|
|
14082
13211
|
}
|
|
@@ -14213,7 +13342,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
14213
13342
|
}
|
|
14214
13343
|
@media screen and (prefers-contrast) {
|
|
14215
13344
|
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid]:focus-within,
|
|
14216
|
-
.cds--text-input--fluid .cds--text-input__field-wrapper--warning:focus-within {
|
|
13345
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper--warning:focus-within {
|
|
14217
13346
|
outline-style: dotted;
|
|
14218
13347
|
}
|
|
14219
13348
|
}
|
|
@@ -14509,7 +13638,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
14509
13638
|
top: 1px;
|
|
14510
13639
|
right: 0.5rem;
|
|
14511
13640
|
}
|
|
14512
|
-
|
|
14513
13641
|
.cds--inline-loading__checkmark {
|
|
14514
13642
|
animation: none;
|
|
14515
13643
|
stroke-dasharray: 0;
|
|
@@ -14971,7 +14099,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
14971
14099
|
max-height: 72%;
|
|
14972
14100
|
}
|
|
14973
14101
|
.cds--modal-container--sm .cds--modal-content > p,
|
|
14974
|
-
.cds--modal-container--sm .cds--modal-content__regular-content {
|
|
14102
|
+
.cds--modal-container--sm .cds--modal-content__regular-content {
|
|
14975
14103
|
padding-right: 20%;
|
|
14976
14104
|
}
|
|
14977
14105
|
}
|
|
@@ -15031,7 +14159,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15031
14159
|
.cds--modal-scroll-content > *:last-child {
|
|
15032
14160
|
padding-bottom: 0;
|
|
15033
14161
|
}
|
|
15034
|
-
|
|
15035
14162
|
.cds--modal-content--overflow-indicator {
|
|
15036
14163
|
display: none;
|
|
15037
14164
|
}
|
|
@@ -15184,7 +14311,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15184
14311
|
}
|
|
15185
14312
|
@media screen and (prefers-contrast) {
|
|
15186
14313
|
.cds--multi-select--filterable--input-focused,
|
|
15187
|
-
.cds--multi-select .cds--list-box__field--wrapper--input-focused {
|
|
14314
|
+
.cds--multi-select .cds--list-box__field--wrapper--input-focused {
|
|
15188
14315
|
outline-style: dotted;
|
|
15189
14316
|
}
|
|
15190
14317
|
}
|
|
@@ -15579,7 +14706,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15579
14706
|
|
|
15580
14707
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
15581
14708
|
.cds--inline-notification__close-button:focus,
|
|
15582
|
-
.cds--btn.cds--btn--ghost.cds--inline-notification__action-button:focus {
|
|
14709
|
+
.cds--btn.cds--btn--ghost.cds--inline-notification__action-button:focus {
|
|
15583
14710
|
color: Highlight;
|
|
15584
14711
|
outline: 1px solid Highlight;
|
|
15585
14712
|
}
|
|
@@ -16325,7 +15452,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
16325
15452
|
|
|
16326
15453
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
16327
15454
|
.cds--actionable-notification__close-button:focus,
|
|
16328
|
-
.cds--btn.cds--btn--ghost.cds--actionable-notification__action-button:focus {
|
|
15455
|
+
.cds--btn.cds--btn--ghost.cds--actionable-notification__action-button:focus {
|
|
16329
15456
|
color: Highlight;
|
|
16330
15457
|
outline: 1px solid Highlight;
|
|
16331
15458
|
}
|
|
@@ -16333,8 +15460,8 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
16333
15460
|
|
|
16334
15461
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
16335
15462
|
.cds--actionable-notification .cds--inline-notification__icon,
|
|
16336
|
-
.cds--actionable-notification .cds--toast-notification__icon,
|
|
16337
|
-
.cds--actionable-notification .cds--actionable-notification__close-icon {
|
|
15463
|
+
.cds--actionable-notification .cds--toast-notification__icon,
|
|
15464
|
+
.cds--actionable-notification .cds--actionable-notification__close-icon {
|
|
16338
15465
|
fill: ButtonText;
|
|
16339
15466
|
}
|
|
16340
15467
|
}
|
|
@@ -16407,7 +15534,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
16407
15534
|
}
|
|
16408
15535
|
@media screen and (prefers-contrast) {
|
|
16409
15536
|
.cds--overflow-menu:focus,
|
|
16410
|
-
.cds--overflow-menu__trigger:focus {
|
|
15537
|
+
.cds--overflow-menu__trigger:focus {
|
|
16411
15538
|
outline-style: dotted;
|
|
16412
15539
|
}
|
|
16413
15540
|
}
|
|
@@ -16724,7 +15851,7 @@ a.cds--overflow-menu-options__btn::before {
|
|
|
16724
15851
|
/* stylelint-disable */
|
|
16725
15852
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
16726
15853
|
.cds--overflow-menu:focus,
|
|
16727
|
-
.cds--overflow-menu-options__btn:focus {
|
|
15854
|
+
.cds--overflow-menu-options__btn:focus {
|
|
16728
15855
|
color: Highlight;
|
|
16729
15856
|
outline: 1px solid Highlight;
|
|
16730
15857
|
}
|
|
@@ -16777,7 +15904,7 @@ a.cds--overflow-menu-options__btn::before {
|
|
|
16777
15904
|
}
|
|
16778
15905
|
@media (max-width: 41.98rem) {
|
|
16779
15906
|
.cds--pagination .cds--pagination__left > *,
|
|
16780
|
-
.cds--pagination .cds--pagination__right > * {
|
|
15907
|
+
.cds--pagination .cds--pagination__right > * {
|
|
16781
15908
|
display: none;
|
|
16782
15909
|
}
|
|
16783
15910
|
.cds--pagination .cds--pagination__items-count {
|
|
@@ -16963,7 +16090,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16963
16090
|
}
|
|
16964
16091
|
@media screen and (prefers-contrast) {
|
|
16965
16092
|
.cds--pagination__button:focus,
|
|
16966
|
-
.cds--btn--ghost:focus.cds--pagination__button {
|
|
16093
|
+
.cds--btn--ghost:focus.cds--pagination__button {
|
|
16967
16094
|
outline-style: dotted;
|
|
16968
16095
|
}
|
|
16969
16096
|
}
|
|
@@ -16996,7 +16123,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
16996
16123
|
|
|
16997
16124
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
16998
16125
|
.cds--pagination__button,
|
|
16999
|
-
.cds--btn--ghost.cds--pagination__button {
|
|
16126
|
+
.cds--btn--ghost.cds--pagination__button {
|
|
17000
16127
|
outline: 1px solid transparent;
|
|
17001
16128
|
}
|
|
17002
16129
|
}
|
|
@@ -17166,7 +16293,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17166
16293
|
}
|
|
17167
16294
|
@media (min-width: 42rem) {
|
|
17168
16295
|
.cds--unstable-pagination__page-selector .cds--select__arrow,
|
|
17169
|
-
.cds--unstable-pagination__page-sizer .cds--select__arrow {
|
|
16296
|
+
.cds--unstable-pagination__page-sizer .cds--select__arrow {
|
|
17170
16297
|
right: 1rem;
|
|
17171
16298
|
}
|
|
17172
16299
|
}
|
|
@@ -19689,7 +18816,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
19689
18816
|
}
|
|
19690
18817
|
@media screen and (prefers-contrast) {
|
|
19691
18818
|
.cds--text-area:focus,
|
|
19692
|
-
.cds--text-area:active {
|
|
18819
|
+
.cds--text-area:active {
|
|
19693
18820
|
outline-style: dotted;
|
|
19694
18821
|
}
|
|
19695
18822
|
}
|
|
@@ -20171,8 +19298,8 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20171
19298
|
|
|
20172
19299
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
20173
19300
|
.cds--tile__chevron svg,
|
|
20174
|
-
.cds--tile__checkmark svg,
|
|
20175
|
-
.cds--tile--is-selected .cds--tile__checkmark svg {
|
|
19301
|
+
.cds--tile__checkmark svg,
|
|
19302
|
+
.cds--tile--is-selected .cds--tile__checkmark svg {
|
|
20176
19303
|
fill: ButtonText;
|
|
20177
19304
|
}
|
|
20178
19305
|
}
|
|
@@ -20501,15 +19628,15 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20501
19628
|
|
|
20502
19629
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
20503
19630
|
.cds--toggle__switch,
|
|
20504
|
-
.cds--toggle__switch::before {
|
|
19631
|
+
.cds--toggle__switch::before {
|
|
20505
19632
|
outline: 1px solid transparent;
|
|
20506
19633
|
}
|
|
20507
19634
|
}
|
|
20508
19635
|
|
|
20509
19636
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
20510
19637
|
.cds--toggle__button:focus + .cds--toggle__label .cds--toggle__switch,
|
|
20511
|
-
.cds--toggle__button:not(:disabled):active + .cds--toggle__label .cds--toggle__switch,
|
|
20512
|
-
.cds--toggle:active .cds--toggle__switch {
|
|
19638
|
+
.cds--toggle__button:not(:disabled):active + .cds--toggle__label .cds--toggle__switch,
|
|
19639
|
+
.cds--toggle:active .cds--toggle__switch {
|
|
20513
19640
|
color: Highlight;
|
|
20514
19641
|
outline: 1px solid Highlight;
|
|
20515
19642
|
}
|
|
@@ -21421,7 +20548,7 @@ a.cds--side-nav__link:focus,
|
|
|
21421
20548
|
}
|
|
21422
20549
|
@media screen and (prefers-contrast) {
|
|
21423
20550
|
a.cds--side-nav__link:focus,
|
|
21424
|
-
.cds--side-nav a.cds--header__menu-item:focus {
|
|
20551
|
+
.cds--side-nav a.cds--header__menu-item:focus {
|
|
21425
20552
|
outline-style: dotted;
|
|
21426
20553
|
}
|
|
21427
20554
|
}
|
|
@@ -21563,9 +20690,9 @@ a.cds--side-nav__link--current::before {
|
|
|
21563
20690
|
|
|
21564
20691
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
21565
20692
|
.cds--side-nav__icon > svg,
|
|
21566
|
-
.cds--side-nav a.cds--header__menu-item:hover .cds--header__menu-arrow,
|
|
21567
|
-
.cds--side-nav a.cds--header__menu-item:focus .cds--header__menu-arrow,
|
|
21568
|
-
.cds--side-nav .cds--header__menu-arrow {
|
|
20693
|
+
.cds--side-nav a.cds--header__menu-item:hover .cds--header__menu-arrow,
|
|
20694
|
+
.cds--side-nav a.cds--header__menu-item:focus .cds--header__menu-arrow,
|
|
20695
|
+
.cds--side-nav .cds--header__menu-arrow {
|
|
21569
20696
|
fill: ButtonText;
|
|
21570
20697
|
}
|
|
21571
20698
|
}
|
|
@@ -22353,7 +21480,7 @@ a.cds--side-nav__link:focus,
|
|
|
22353
21480
|
}
|
|
22354
21481
|
@media screen and (prefers-contrast) {
|
|
22355
21482
|
a.cds--side-nav__link:focus,
|
|
22356
|
-
.cds--side-nav a.cds--header__menu-item:focus {
|
|
21483
|
+
.cds--side-nav a.cds--header__menu-item:focus {
|
|
22357
21484
|
outline-style: dotted;
|
|
22358
21485
|
}
|
|
22359
21486
|
}
|
|
@@ -22495,9 +21622,9 @@ a.cds--side-nav__link--current::before {
|
|
|
22495
21622
|
|
|
22496
21623
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
22497
21624
|
.cds--side-nav__icon > svg,
|
|
22498
|
-
.cds--side-nav a.cds--header__menu-item:hover .cds--header__menu-arrow,
|
|
22499
|
-
.cds--side-nav a.cds--header__menu-item:focus .cds--header__menu-arrow,
|
|
22500
|
-
.cds--side-nav .cds--header__menu-arrow {
|
|
21625
|
+
.cds--side-nav a.cds--header__menu-item:hover .cds--header__menu-arrow,
|
|
21626
|
+
.cds--side-nav a.cds--header__menu-item:focus .cds--header__menu-arrow,
|
|
21627
|
+
.cds--side-nav .cds--header__menu-arrow {
|
|
22501
21628
|
fill: ButtonText;
|
|
22502
21629
|
}
|
|
22503
21630
|
}
|
|
@@ -22991,162 +22118,162 @@ a.cds--side-nav__link--current::before {
|
|
|
22991
22118
|
--cds-charts-14-1-13-hovered: #963f00;
|
|
22992
22119
|
--cds-charts-14-1-14: #d4bbff;
|
|
22993
22120
|
--cds-charts-14-1-14-hovered: #bd97ff;
|
|
22994
|
-
--cds-charts-mono-1-1: #
|
|
22995
|
-
--cds-charts-mono-1-1-hovered: #
|
|
22996
|
-
--cds-charts-mono-1-2: #
|
|
22997
|
-
--cds-charts-mono-1-2-hovered: #
|
|
22998
|
-
--cds-charts-mono-1-3: #
|
|
22999
|
-
--cds-charts-mono-1-3-hovered: #
|
|
23000
|
-
--cds-charts-mono-1-4: #
|
|
23001
|
-
--cds-charts-mono-1-4-hovered: #
|
|
23002
|
-
--cds-charts-mono-1-5: #
|
|
23003
|
-
--cds-charts-mono-1-5-hovered: #
|
|
22121
|
+
--cds-charts-mono-1-1: #ffffff;
|
|
22122
|
+
--cds-charts-mono-1-1-hovered: #ededed;
|
|
22123
|
+
--cds-charts-mono-1-2: #f6f2ff;
|
|
22124
|
+
--cds-charts-mono-1-2-hovered: #ddceff;
|
|
22125
|
+
--cds-charts-mono-1-3: #e8daff;
|
|
22126
|
+
--cds-charts-mono-1-3-hovered: #d2b6ff;
|
|
22127
|
+
--cds-charts-mono-1-4: #d4bbff;
|
|
22128
|
+
--cds-charts-mono-1-4-hovered: #bd97ff;
|
|
22129
|
+
--cds-charts-mono-1-5: #be95ff;
|
|
22130
|
+
--cds-charts-mono-1-5-hovered: #a871ff;
|
|
23004
22131
|
--cds-charts-mono-1-6: #a56eff;
|
|
23005
22132
|
--cds-charts-mono-1-6-hovered: #8f4aff;
|
|
23006
|
-
--cds-charts-mono-1-7: #
|
|
23007
|
-
--cds-charts-mono-1-7-hovered: #
|
|
23008
|
-
--cds-charts-mono-1-8: #
|
|
23009
|
-
--cds-charts-mono-1-8-hovered: #
|
|
23010
|
-
--cds-charts-mono-1-9: #
|
|
23011
|
-
--cds-charts-mono-1-9-hovered: #
|
|
23012
|
-
--cds-charts-mono-1-10: #
|
|
23013
|
-
--cds-charts-mono-1-10-hovered: #
|
|
23014
|
-
--cds-charts-mono-1-11: #
|
|
23015
|
-
--cds-charts-mono-1-11-hovered: #
|
|
23016
|
-
--cds-charts-mono-2-1: #
|
|
23017
|
-
--cds-charts-mono-2-1-hovered: #
|
|
23018
|
-
--cds-charts-mono-2-2: #
|
|
23019
|
-
--cds-charts-mono-2-2-hovered: #
|
|
23020
|
-
--cds-charts-mono-2-3: #
|
|
23021
|
-
--cds-charts-mono-2-3-hovered: #
|
|
23022
|
-
--cds-charts-mono-2-4: #
|
|
23023
|
-
--cds-charts-mono-2-4-hovered: #
|
|
23024
|
-
--cds-charts-mono-2-5: #
|
|
23025
|
-
--cds-charts-mono-2-5-hovered: #
|
|
22133
|
+
--cds-charts-mono-1-7: #8a3ffc;
|
|
22134
|
+
--cds-charts-mono-1-7-hovered: #751cfb;
|
|
22135
|
+
--cds-charts-mono-1-8: #6929c4;
|
|
22136
|
+
--cds-charts-mono-1-8-hovered: #5923a6;
|
|
22137
|
+
--cds-charts-mono-1-9: #491d8b;
|
|
22138
|
+
--cds-charts-mono-1-9-hovered: #39176d;
|
|
22139
|
+
--cds-charts-mono-1-10: #31135e;
|
|
22140
|
+
--cds-charts-mono-1-10-hovered: #220d40;
|
|
22141
|
+
--cds-charts-mono-1-11: #1c0f30;
|
|
22142
|
+
--cds-charts-mono-1-11-hovered: #0c0715;
|
|
22143
|
+
--cds-charts-mono-2-1: #ffffff;
|
|
22144
|
+
--cds-charts-mono-2-1-hovered: #ededed;
|
|
22145
|
+
--cds-charts-mono-2-2: #edf5ff;
|
|
22146
|
+
--cds-charts-mono-2-2-hovered: #c9e1ff;
|
|
22147
|
+
--cds-charts-mono-2-3: #d0e2ff;
|
|
22148
|
+
--cds-charts-mono-2-3-hovered: #acccff;
|
|
22149
|
+
--cds-charts-mono-2-4: #a6c8ff;
|
|
22150
|
+
--cds-charts-mono-2-4-hovered: #82b2ff;
|
|
22151
|
+
--cds-charts-mono-2-5: #78a9ff;
|
|
22152
|
+
--cds-charts-mono-2-5-hovered: #5492ff;
|
|
23026
22153
|
--cds-charts-mono-2-6: #4589ff;
|
|
23027
22154
|
--cds-charts-mono-2-6-hovered: #2172ff;
|
|
23028
|
-
--cds-charts-mono-2-7: #
|
|
23029
|
-
--cds-charts-mono-2-7-hovered: #
|
|
23030
|
-
--cds-charts-mono-2-8: #
|
|
23031
|
-
--cds-charts-mono-2-8-hovered: #
|
|
23032
|
-
--cds-charts-mono-2-9: #
|
|
23033
|
-
--cds-charts-mono-2-9-hovered: #
|
|
23034
|
-
--cds-charts-mono-2-10: #
|
|
23035
|
-
--cds-charts-mono-2-10-hovered: #
|
|
23036
|
-
--cds-charts-mono-2-11: #
|
|
23037
|
-
--cds-charts-mono-2-11-hovered: #
|
|
23038
|
-
--cds-charts-mono-3-1: #
|
|
23039
|
-
--cds-charts-mono-3-1-hovered: #
|
|
23040
|
-
--cds-charts-mono-3-2: #
|
|
23041
|
-
--cds-charts-mono-3-2-hovered: #
|
|
23042
|
-
--cds-charts-mono-3-3: #
|
|
23043
|
-
--cds-charts-mono-3-3-hovered: #
|
|
23044
|
-
--cds-charts-mono-3-4: #
|
|
23045
|
-
--cds-charts-mono-3-4-hovered: #
|
|
23046
|
-
--cds-charts-mono-3-5: #
|
|
23047
|
-
--cds-charts-mono-3-5-hovered: #
|
|
22155
|
+
--cds-charts-mono-2-7: #0f62fe;
|
|
22156
|
+
--cds-charts-mono-2-7-hovered: #0151e8;
|
|
22157
|
+
--cds-charts-mono-2-8: #0043ce;
|
|
22158
|
+
--cds-charts-mono-2-8-hovered: #0037aa;
|
|
22159
|
+
--cds-charts-mono-2-9: #002d9c;
|
|
22160
|
+
--cds-charts-mono-2-9-hovered: #002378;
|
|
22161
|
+
--cds-charts-mono-2-10: #001d6c;
|
|
22162
|
+
--cds-charts-mono-2-10-hovered: #001348;
|
|
22163
|
+
--cds-charts-mono-2-11: #001141;
|
|
22164
|
+
--cds-charts-mono-2-11-hovered: #00081d;
|
|
22165
|
+
--cds-charts-mono-3-1: #ffffff;
|
|
22166
|
+
--cds-charts-mono-3-1-hovered: #ededed;
|
|
22167
|
+
--cds-charts-mono-3-2: #e5f6ff;
|
|
22168
|
+
--cds-charts-mono-3-2-hovered: #c1eaff;
|
|
22169
|
+
--cds-charts-mono-3-3: #bae6ff;
|
|
22170
|
+
--cds-charts-mono-3-3-hovered: #96d9ff;
|
|
22171
|
+
--cds-charts-mono-3-4: #82cfff;
|
|
22172
|
+
--cds-charts-mono-3-4-hovered: #5ec1ff;
|
|
22173
|
+
--cds-charts-mono-3-5: #33b1ff;
|
|
22174
|
+
--cds-charts-mono-3-5-hovered: #0fa3ff;
|
|
23048
22175
|
--cds-charts-mono-3-6: #1192e8;
|
|
23049
22176
|
--cds-charts-mono-3-6-hovered: #0f7dc7;
|
|
23050
|
-
--cds-charts-mono-3-7: #
|
|
23051
|
-
--cds-charts-mono-3-7-hovered: #
|
|
23052
|
-
--cds-charts-mono-3-8: #
|
|
23053
|
-
--cds-charts-mono-3-8-hovered: #
|
|
23054
|
-
--cds-charts-mono-3-9: #
|
|
23055
|
-
--cds-charts-mono-3-9-hovered: #
|
|
23056
|
-
--cds-charts-mono-3-10: #
|
|
23057
|
-
--cds-charts-mono-3-10-hovered: #
|
|
23058
|
-
--cds-charts-mono-3-11: #
|
|
23059
|
-
--cds-charts-mono-3-11-hovered: #
|
|
23060
|
-
--cds-charts-mono-4-1: #
|
|
23061
|
-
--cds-charts-mono-4-1-hovered:
|
|
23062
|
-
--cds-charts-mono-4-2: #
|
|
23063
|
-
--cds-charts-mono-4-2-hovered: #
|
|
23064
|
-
--cds-charts-mono-4-3: #
|
|
23065
|
-
--cds-charts-mono-4-3-hovered: #
|
|
23066
|
-
--cds-charts-mono-4-4: #
|
|
23067
|
-
--cds-charts-mono-4-4-hovered: #
|
|
23068
|
-
--cds-charts-mono-4-5: #
|
|
23069
|
-
--cds-charts-mono-4-5-hovered: #
|
|
22177
|
+
--cds-charts-mono-3-7: #0072c3;
|
|
22178
|
+
--cds-charts-mono-3-7-hovered: #005d9f;
|
|
22179
|
+
--cds-charts-mono-3-8: #00539a;
|
|
22180
|
+
--cds-charts-mono-3-8-hovered: #004076;
|
|
22181
|
+
--cds-charts-mono-3-9: #003a6d;
|
|
22182
|
+
--cds-charts-mono-3-9-hovered: #002749;
|
|
22183
|
+
--cds-charts-mono-3-10: #012749;
|
|
22184
|
+
--cds-charts-mono-3-10-hovered: #011426;
|
|
22185
|
+
--cds-charts-mono-3-11: #061727;
|
|
22186
|
+
--cds-charts-mono-3-11-hovered: #010508;
|
|
22187
|
+
--cds-charts-mono-4-1: #ffffff;
|
|
22188
|
+
--cds-charts-mono-4-1-hovered: #ededed;
|
|
22189
|
+
--cds-charts-mono-4-2: #d9fbfb;
|
|
22190
|
+
--cds-charts-mono-4-2-hovered: #b9f8f8;
|
|
22191
|
+
--cds-charts-mono-4-3: #9ef0f0;
|
|
22192
|
+
--cds-charts-mono-4-3-hovered: #7febeb;
|
|
22193
|
+
--cds-charts-mono-4-4: #3ddbd9;
|
|
22194
|
+
--cds-charts-mono-4-4-hovered: #26cecc;
|
|
22195
|
+
--cds-charts-mono-4-5: #08bdba;
|
|
22196
|
+
--cds-charts-mono-4-5-hovered: #079b98;
|
|
23070
22197
|
--cds-charts-mono-4-6: #009d9a;
|
|
23071
22198
|
--cds-charts-mono-4-6-hovered: #007977;
|
|
23072
|
-
--cds-charts-mono-4-7: #
|
|
23073
|
-
--cds-charts-mono-4-7-hovered: #
|
|
23074
|
-
--cds-charts-mono-4-8: #
|
|
23075
|
-
--cds-charts-mono-4-8-hovered: #
|
|
23076
|
-
--cds-charts-mono-4-9: #
|
|
23077
|
-
--cds-charts-mono-4-9-hovered: #
|
|
23078
|
-
--cds-charts-mono-4-10: #
|
|
23079
|
-
--cds-charts-mono-4-10-hovered: #
|
|
23080
|
-
--cds-charts-mono-4-11: #
|
|
23081
|
-
--cds-charts-mono-4-11-hovered:
|
|
23082
|
-
--cds-charts-diverge-1-1: #
|
|
23083
|
-
--cds-charts-diverge-1-1-hovered: #
|
|
23084
|
-
--cds-charts-diverge-1-2: #
|
|
23085
|
-
--cds-charts-diverge-1-2-hovered: #
|
|
23086
|
-
--cds-charts-diverge-1-3: #
|
|
23087
|
-
--cds-charts-diverge-1-3-hovered: #
|
|
23088
|
-
--cds-charts-diverge-1-4: #
|
|
23089
|
-
--cds-charts-diverge-1-4-hovered: #
|
|
23090
|
-
--cds-charts-diverge-1-5: #
|
|
23091
|
-
--cds-charts-diverge-1-5-hovered: #
|
|
23092
|
-
--cds-charts-diverge-1-6: #
|
|
23093
|
-
--cds-charts-diverge-1-6-hovered: #
|
|
23094
|
-
--cds-charts-diverge-1-7: #
|
|
23095
|
-
--cds-charts-diverge-1-7-hovered: #
|
|
23096
|
-
--cds-charts-diverge-1-8: #
|
|
23097
|
-
--cds-charts-diverge-1-8-hovered: #
|
|
22199
|
+
--cds-charts-mono-4-7: #007d79;
|
|
22200
|
+
--cds-charts-mono-4-7-hovered: #005956;
|
|
22201
|
+
--cds-charts-mono-4-8: #005d5d;
|
|
22202
|
+
--cds-charts-mono-4-8-hovered: #003939;
|
|
22203
|
+
--cds-charts-mono-4-9: #004144;
|
|
22204
|
+
--cds-charts-mono-4-9-hovered: #001f20;
|
|
22205
|
+
--cds-charts-mono-4-10: #022b30;
|
|
22206
|
+
--cds-charts-mono-4-10-hovered: #010c0e;
|
|
22207
|
+
--cds-charts-mono-4-11: #081a1c;
|
|
22208
|
+
--cds-charts-mono-4-11-hovered: black;
|
|
22209
|
+
--cds-charts-diverge-1-1: #750e13;
|
|
22210
|
+
--cds-charts-diverge-1-1-hovered: #550a0e;
|
|
22211
|
+
--cds-charts-diverge-1-2: #a2191f;
|
|
22212
|
+
--cds-charts-diverge-1-2-hovered: #831419;
|
|
22213
|
+
--cds-charts-diverge-1-3: #da1e28;
|
|
22214
|
+
--cds-charts-diverge-1-3-hovered: #bb1a22;
|
|
22215
|
+
--cds-charts-diverge-1-4: #fa4d56;
|
|
22216
|
+
--cds-charts-diverge-1-4-hovered: #f92a35;
|
|
22217
|
+
--cds-charts-diverge-1-5: #ff8389;
|
|
22218
|
+
--cds-charts-diverge-1-5-hovered: #ff5f67;
|
|
22219
|
+
--cds-charts-diverge-1-6: #ffb3b8;
|
|
22220
|
+
--cds-charts-diverge-1-6-hovered: #ff8f97;
|
|
22221
|
+
--cds-charts-diverge-1-7: #ffd7d9;
|
|
22222
|
+
--cds-charts-diverge-1-7-hovered: #ffb3b7;
|
|
22223
|
+
--cds-charts-diverge-1-8: #fff1f1;
|
|
22224
|
+
--cds-charts-diverge-1-8-hovered: #ffcdcd;
|
|
23098
22225
|
--cds-charts-diverge-1-9: #ffffff;
|
|
23099
22226
|
--cds-charts-diverge-1-9-hovered: #ededed;
|
|
23100
|
-
--cds-charts-diverge-1-10: #
|
|
23101
|
-
--cds-charts-diverge-1-10-hovered: #
|
|
23102
|
-
--cds-charts-diverge-1-11: #
|
|
23103
|
-
--cds-charts-diverge-1-11-hovered: #
|
|
23104
|
-
--cds-charts-diverge-1-12: #
|
|
23105
|
-
--cds-charts-diverge-1-12-hovered: #
|
|
23106
|
-
--cds-charts-diverge-1-13: #
|
|
23107
|
-
--cds-charts-diverge-1-13-hovered: #
|
|
23108
|
-
--cds-charts-diverge-1-14: #
|
|
23109
|
-
--cds-charts-diverge-1-14-hovered: #
|
|
23110
|
-
--cds-charts-diverge-1-15: #
|
|
23111
|
-
--cds-charts-diverge-1-15-hovered: #
|
|
23112
|
-
--cds-charts-diverge-1-16: #
|
|
23113
|
-
--cds-charts-diverge-1-16-hovered: #
|
|
23114
|
-
--cds-charts-diverge-1-17: #
|
|
23115
|
-
--cds-charts-diverge-1-17-hovered: #
|
|
23116
|
-
--cds-charts-diverge-2-1: #
|
|
23117
|
-
--cds-charts-diverge-2-1-hovered: #
|
|
23118
|
-
--cds-charts-diverge-2-2: #
|
|
23119
|
-
--cds-charts-diverge-2-2-hovered: #
|
|
23120
|
-
--cds-charts-diverge-2-3: #
|
|
23121
|
-
--cds-charts-diverge-2-3-hovered: #
|
|
23122
|
-
--cds-charts-diverge-2-4: #
|
|
23123
|
-
--cds-charts-diverge-2-4-hovered: #
|
|
23124
|
-
--cds-charts-diverge-2-5: #
|
|
23125
|
-
--cds-charts-diverge-2-5-hovered: #
|
|
23126
|
-
--cds-charts-diverge-2-6: #
|
|
23127
|
-
--cds-charts-diverge-2-6-hovered: #
|
|
23128
|
-
--cds-charts-diverge-2-7: #
|
|
23129
|
-
--cds-charts-diverge-2-7-hovered: #
|
|
23130
|
-
--cds-charts-diverge-2-8: #
|
|
23131
|
-
--cds-charts-diverge-2-8-hovered: #
|
|
22227
|
+
--cds-charts-diverge-1-10: #e5f6ff;
|
|
22228
|
+
--cds-charts-diverge-1-10-hovered: #c1eaff;
|
|
22229
|
+
--cds-charts-diverge-1-11: #bae6ff;
|
|
22230
|
+
--cds-charts-diverge-1-11-hovered: #96d9ff;
|
|
22231
|
+
--cds-charts-diverge-1-12: #82cfff;
|
|
22232
|
+
--cds-charts-diverge-1-12-hovered: #5ec1ff;
|
|
22233
|
+
--cds-charts-diverge-1-13: #33b1ff;
|
|
22234
|
+
--cds-charts-diverge-1-13-hovered: #0fa3ff;
|
|
22235
|
+
--cds-charts-diverge-1-14: #1192e8;
|
|
22236
|
+
--cds-charts-diverge-1-14-hovered: #0f7dc7;
|
|
22237
|
+
--cds-charts-diverge-1-15: #0072c3;
|
|
22238
|
+
--cds-charts-diverge-1-15-hovered: #005d9f;
|
|
22239
|
+
--cds-charts-diverge-1-16: #00539a;
|
|
22240
|
+
--cds-charts-diverge-1-16-hovered: #004076;
|
|
22241
|
+
--cds-charts-diverge-1-17: #003a6d;
|
|
22242
|
+
--cds-charts-diverge-1-17-hovered: #002749;
|
|
22243
|
+
--cds-charts-diverge-2-1: #491d8b;
|
|
22244
|
+
--cds-charts-diverge-2-1-hovered: #39176d;
|
|
22245
|
+
--cds-charts-diverge-2-2: #6929c4;
|
|
22246
|
+
--cds-charts-diverge-2-2-hovered: #5923a6;
|
|
22247
|
+
--cds-charts-diverge-2-3: #8a3ffc;
|
|
22248
|
+
--cds-charts-diverge-2-3-hovered: #751cfb;
|
|
22249
|
+
--cds-charts-diverge-2-4: #a56eff;
|
|
22250
|
+
--cds-charts-diverge-2-4-hovered: #8f4aff;
|
|
22251
|
+
--cds-charts-diverge-2-5: #be95ff;
|
|
22252
|
+
--cds-charts-diverge-2-5-hovered: #a871ff;
|
|
22253
|
+
--cds-charts-diverge-2-6: #d4bbff;
|
|
22254
|
+
--cds-charts-diverge-2-6-hovered: #bd97ff;
|
|
22255
|
+
--cds-charts-diverge-2-7: #e8daff;
|
|
22256
|
+
--cds-charts-diverge-2-7-hovered: #d2b6ff;
|
|
22257
|
+
--cds-charts-diverge-2-8: #f6f2ff;
|
|
22258
|
+
--cds-charts-diverge-2-8-hovered: #ddceff;
|
|
23132
22259
|
--cds-charts-diverge-2-9: #ffffff;
|
|
23133
22260
|
--cds-charts-diverge-2-9-hovered: #ededed;
|
|
23134
|
-
--cds-charts-diverge-2-10: #
|
|
23135
|
-
--cds-charts-diverge-2-10-hovered: #
|
|
23136
|
-
--cds-charts-diverge-2-11: #
|
|
23137
|
-
--cds-charts-diverge-2-11-hovered: #
|
|
23138
|
-
--cds-charts-diverge-2-12: #
|
|
23139
|
-
--cds-charts-diverge-2-12-hovered: #
|
|
23140
|
-
--cds-charts-diverge-2-13: #
|
|
23141
|
-
--cds-charts-diverge-2-13-hovered: #
|
|
23142
|
-
--cds-charts-diverge-2-14: #
|
|
23143
|
-
--cds-charts-diverge-2-14-hovered: #
|
|
23144
|
-
--cds-charts-diverge-2-15: #
|
|
23145
|
-
--cds-charts-diverge-2-15-hovered: #
|
|
23146
|
-
--cds-charts-diverge-2-16: #
|
|
23147
|
-
--cds-charts-diverge-2-16-hovered: #
|
|
23148
|
-
--cds-charts-diverge-2-17: #
|
|
23149
|
-
--cds-charts-diverge-2-17-hovered: #
|
|
22261
|
+
--cds-charts-diverge-2-10: #d9fbfb;
|
|
22262
|
+
--cds-charts-diverge-2-10-hovered: #b9f8f8;
|
|
22263
|
+
--cds-charts-diverge-2-11: #9ef0f0;
|
|
22264
|
+
--cds-charts-diverge-2-11-hovered: #7febeb;
|
|
22265
|
+
--cds-charts-diverge-2-12: #3ddbd9;
|
|
22266
|
+
--cds-charts-diverge-2-12-hovered: #26cecc;
|
|
22267
|
+
--cds-charts-diverge-2-13: #08bdba;
|
|
22268
|
+
--cds-charts-diverge-2-13-hovered: #079b98;
|
|
22269
|
+
--cds-charts-diverge-2-14: #009d9a;
|
|
22270
|
+
--cds-charts-diverge-2-14-hovered: #007977;
|
|
22271
|
+
--cds-charts-diverge-2-15: #007d79;
|
|
22272
|
+
--cds-charts-diverge-2-15-hovered: #005956;
|
|
22273
|
+
--cds-charts-diverge-2-16: #005d5d;
|
|
22274
|
+
--cds-charts-diverge-2-16-hovered: #003939;
|
|
22275
|
+
--cds-charts-diverge-2-17: #004144;
|
|
22276
|
+
--cds-charts-diverge-2-17-hovered: #001f20;
|
|
23150
22277
|
}
|
|
23151
22278
|
|
|
23152
22279
|
.cds--cc--chart-wrapper .fill-1-1-1 {
|
|
@@ -26814,7 +25941,7 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
26814
25941
|
}
|
|
26815
25942
|
@media screen and (prefers-contrast) {
|
|
26816
25943
|
.cds--cc--card-node--a:focus,
|
|
26817
|
-
.cds--cc--card-node--button:focus {
|
|
25944
|
+
.cds--cc--card-node--button:focus {
|
|
26818
25945
|
outline-style: dotted;
|
|
26819
25946
|
}
|
|
26820
25947
|
}
|
|
@@ -27473,6 +26600,14 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
27473
26600
|
--cds-fluid-spacing-02: 2vw;
|
|
27474
26601
|
--cds-fluid-spacing-03: 5vw;
|
|
27475
26602
|
--cds-fluid-spacing-04: 10vw;
|
|
26603
|
+
--cds-caption-01-font-size: 0.75rem;
|
|
26604
|
+
--cds-caption-01-font-weight: 400;
|
|
26605
|
+
--cds-caption-01-line-height: 1.33333;
|
|
26606
|
+
--cds-caption-01-letter-spacing: 0.32px;
|
|
26607
|
+
--cds-caption-02-font-size: 0.875rem;
|
|
26608
|
+
--cds-caption-02-font-weight: 400;
|
|
26609
|
+
--cds-caption-02-line-height: 1.28572;
|
|
26610
|
+
--cds-caption-02-letter-spacing: 0.32px;
|
|
27476
26611
|
--cds-label-01-font-size: 0.75rem;
|
|
27477
26612
|
--cds-label-01-font-weight: 400;
|
|
27478
26613
|
--cds-label-01-line-height: 1.33333;
|
|
@@ -27906,6 +27041,14 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
27906
27041
|
--cds-fluid-spacing-02: 2vw;
|
|
27907
27042
|
--cds-fluid-spacing-03: 5vw;
|
|
27908
27043
|
--cds-fluid-spacing-04: 10vw;
|
|
27044
|
+
--cds-caption-01-font-size: 0.75rem;
|
|
27045
|
+
--cds-caption-01-font-weight: 400;
|
|
27046
|
+
--cds-caption-01-line-height: 1.33333;
|
|
27047
|
+
--cds-caption-01-letter-spacing: 0.32px;
|
|
27048
|
+
--cds-caption-02-font-size: 0.875rem;
|
|
27049
|
+
--cds-caption-02-font-weight: 400;
|
|
27050
|
+
--cds-caption-02-line-height: 1.28572;
|
|
27051
|
+
--cds-caption-02-letter-spacing: 0.32px;
|
|
27909
27052
|
--cds-label-01-font-size: 0.75rem;
|
|
27910
27053
|
--cds-label-01-font-weight: 400;
|
|
27911
27054
|
--cds-label-01-line-height: 1.33333;
|
|
@@ -28339,6 +27482,14 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
28339
27482
|
--cds-fluid-spacing-02: 2vw;
|
|
28340
27483
|
--cds-fluid-spacing-03: 5vw;
|
|
28341
27484
|
--cds-fluid-spacing-04: 10vw;
|
|
27485
|
+
--cds-caption-01-font-size: 0.75rem;
|
|
27486
|
+
--cds-caption-01-font-weight: 400;
|
|
27487
|
+
--cds-caption-01-line-height: 1.33333;
|
|
27488
|
+
--cds-caption-01-letter-spacing: 0.32px;
|
|
27489
|
+
--cds-caption-02-font-size: 0.875rem;
|
|
27490
|
+
--cds-caption-02-font-weight: 400;
|
|
27491
|
+
--cds-caption-02-line-height: 1.28572;
|
|
27492
|
+
--cds-caption-02-letter-spacing: 0.32px;
|
|
28342
27493
|
--cds-label-01-font-size: 0.75rem;
|
|
28343
27494
|
--cds-label-01-font-weight: 400;
|
|
28344
27495
|
--cds-label-01-line-height: 1.33333;
|
|
@@ -28772,6 +27923,14 @@ svg.cds--cc--color-legend g.legend-title text {
|
|
|
28772
27923
|
--cds-fluid-spacing-02: 2vw;
|
|
28773
27924
|
--cds-fluid-spacing-03: 5vw;
|
|
28774
27925
|
--cds-fluid-spacing-04: 10vw;
|
|
27926
|
+
--cds-caption-01-font-size: 0.75rem;
|
|
27927
|
+
--cds-caption-01-font-weight: 400;
|
|
27928
|
+
--cds-caption-01-line-height: 1.33333;
|
|
27929
|
+
--cds-caption-01-letter-spacing: 0.32px;
|
|
27930
|
+
--cds-caption-02-font-size: 0.875rem;
|
|
27931
|
+
--cds-caption-02-font-weight: 400;
|
|
27932
|
+
--cds-caption-02-line-height: 1.28572;
|
|
27933
|
+
--cds-caption-02-letter-spacing: 0.32px;
|
|
28775
27934
|
--cds-label-01-font-size: 0.75rem;
|
|
28776
27935
|
--cds-label-01-font-weight: 400;
|
|
28777
27936
|
--cds-label-01-line-height: 1.33333;
|
|
@@ -29220,6 +28379,14 @@ html {
|
|
|
29220
28379
|
--cds-fluid-spacing-02: 2vw;
|
|
29221
28380
|
--cds-fluid-spacing-03: 5vw;
|
|
29222
28381
|
--cds-fluid-spacing-04: 10vw;
|
|
28382
|
+
--cds-caption-01-font-size: 0.75rem;
|
|
28383
|
+
--cds-caption-01-font-weight: 400;
|
|
28384
|
+
--cds-caption-01-line-height: 1.33333;
|
|
28385
|
+
--cds-caption-01-letter-spacing: 0.32px;
|
|
28386
|
+
--cds-caption-02-font-size: 0.875rem;
|
|
28387
|
+
--cds-caption-02-font-weight: 400;
|
|
28388
|
+
--cds-caption-02-line-height: 1.28572;
|
|
28389
|
+
--cds-caption-02-letter-spacing: 0.32px;
|
|
29223
28390
|
--cds-label-01-font-size: 0.75rem;
|
|
29224
28391
|
--cds-label-01-font-weight: 400;
|
|
29225
28392
|
--cds-label-01-line-height: 1.33333;
|
|
@@ -29653,6 +28820,14 @@ html[data-carbon-theme=g10] {
|
|
|
29653
28820
|
--cds-fluid-spacing-02: 2vw;
|
|
29654
28821
|
--cds-fluid-spacing-03: 5vw;
|
|
29655
28822
|
--cds-fluid-spacing-04: 10vw;
|
|
28823
|
+
--cds-caption-01-font-size: 0.75rem;
|
|
28824
|
+
--cds-caption-01-font-weight: 400;
|
|
28825
|
+
--cds-caption-01-line-height: 1.33333;
|
|
28826
|
+
--cds-caption-01-letter-spacing: 0.32px;
|
|
28827
|
+
--cds-caption-02-font-size: 0.875rem;
|
|
28828
|
+
--cds-caption-02-font-weight: 400;
|
|
28829
|
+
--cds-caption-02-line-height: 1.28572;
|
|
28830
|
+
--cds-caption-02-letter-spacing: 0.32px;
|
|
29656
28831
|
--cds-label-01-font-size: 0.75rem;
|
|
29657
28832
|
--cds-label-01-font-weight: 400;
|
|
29658
28833
|
--cds-label-01-line-height: 1.33333;
|
|
@@ -30086,6 +29261,14 @@ html[data-carbon-theme=g90] {
|
|
|
30086
29261
|
--cds-fluid-spacing-02: 2vw;
|
|
30087
29262
|
--cds-fluid-spacing-03: 5vw;
|
|
30088
29263
|
--cds-fluid-spacing-04: 10vw;
|
|
29264
|
+
--cds-caption-01-font-size: 0.75rem;
|
|
29265
|
+
--cds-caption-01-font-weight: 400;
|
|
29266
|
+
--cds-caption-01-line-height: 1.33333;
|
|
29267
|
+
--cds-caption-01-letter-spacing: 0.32px;
|
|
29268
|
+
--cds-caption-02-font-size: 0.875rem;
|
|
29269
|
+
--cds-caption-02-font-weight: 400;
|
|
29270
|
+
--cds-caption-02-line-height: 1.28572;
|
|
29271
|
+
--cds-caption-02-letter-spacing: 0.32px;
|
|
30089
29272
|
--cds-label-01-font-size: 0.75rem;
|
|
30090
29273
|
--cds-label-01-font-weight: 400;
|
|
30091
29274
|
--cds-label-01-line-height: 1.33333;
|
|
@@ -30519,6 +29702,14 @@ html[data-carbon-theme=g100] {
|
|
|
30519
29702
|
--cds-fluid-spacing-02: 2vw;
|
|
30520
29703
|
--cds-fluid-spacing-03: 5vw;
|
|
30521
29704
|
--cds-fluid-spacing-04: 10vw;
|
|
29705
|
+
--cds-caption-01-font-size: 0.75rem;
|
|
29706
|
+
--cds-caption-01-font-weight: 400;
|
|
29707
|
+
--cds-caption-01-line-height: 1.33333;
|
|
29708
|
+
--cds-caption-01-letter-spacing: 0.32px;
|
|
29709
|
+
--cds-caption-02-font-size: 0.875rem;
|
|
29710
|
+
--cds-caption-02-font-weight: 400;
|
|
29711
|
+
--cds-caption-02-line-height: 1.28572;
|
|
29712
|
+
--cds-caption-02-letter-spacing: 0.32px;
|
|
30522
29713
|
--cds-label-01-font-size: 0.75rem;
|
|
30523
29714
|
--cds-label-01-font-weight: 400;
|
|
30524
29715
|
--cds-label-01-line-height: 1.33333;
|
|
@@ -31013,53 +30204,6 @@ div.container.intro span.netlify a {
|
|
|
31013
30204
|
color: #fff;
|
|
31014
30205
|
font-weight: 700;
|
|
31015
30206
|
}
|
|
31016
|
-
div.container.tutorial {
|
|
31017
|
-
@import '~highlight.js/styles/sunburst.css';
|
|
31018
|
-
}
|
|
31019
|
-
div.container.tutorial h1,
|
|
31020
|
-
div.container.tutorial h2,
|
|
31021
|
-
div.container.tutorial h5,
|
|
31022
|
-
div.container.tutorial p {
|
|
31023
|
-
margin-bottom: 15px;
|
|
31024
|
-
}
|
|
31025
|
-
div.container.tutorial ul,
|
|
31026
|
-
div.container.tutorial pre {
|
|
31027
|
-
margin-bottom: 30px;
|
|
31028
|
-
}
|
|
31029
|
-
div.container.tutorial h5 {
|
|
31030
|
-
margin-top: 30px;
|
|
31031
|
-
}
|
|
31032
|
-
div.container.tutorial ul {
|
|
31033
|
-
padding-inline-start: 15px;
|
|
31034
|
-
list-style: disc;
|
|
31035
|
-
}
|
|
31036
|
-
div.container.tutorial ul li {
|
|
31037
|
-
margin-bottom: 0.5em;
|
|
31038
|
-
}
|
|
31039
|
-
div.container.tutorial ul li:last-child {
|
|
31040
|
-
margin-bottom: 0;
|
|
31041
|
-
}
|
|
31042
|
-
div.container.tutorial code {
|
|
31043
|
-
border-radius: 4px;
|
|
31044
|
-
background-color: #e0e0e0;
|
|
31045
|
-
color: #161616;
|
|
31046
|
-
padding: 0 0.5em;
|
|
31047
|
-
}
|
|
31048
|
-
div.container.tutorial pre {
|
|
31049
|
-
background-color: black;
|
|
31050
|
-
color: white;
|
|
31051
|
-
padding: 15px;
|
|
31052
|
-
margin-top: 15px;
|
|
31053
|
-
-moz-tab-size: 4;
|
|
31054
|
-
tab-size: 4;
|
|
31055
|
-
font-size: 14px;
|
|
31056
|
-
line-height: 1.4;
|
|
31057
|
-
}
|
|
31058
|
-
div.container.tutorial pre code {
|
|
31059
|
-
background-color: unset;
|
|
31060
|
-
color: white;
|
|
31061
|
-
padding: 0;
|
|
31062
|
-
}
|
|
31063
30207
|
div.container .marginTop {
|
|
31064
30208
|
margin-top: 10px;
|
|
31065
30209
|
}
|