@carbon/charts 1.13.6 → 1.13.8
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 +18 -0
- package/dist/{choropleth-bfa2bf81.mjs → choropleth-d532597d.mjs} +6 -4
- package/dist/choropleth-d532597d.mjs.map +1 -0
- package/dist/components/essentials/modal.d.ts +1 -0
- package/dist/components/index.mjs +1 -1
- package/dist/demo/index.mjs +94 -93
- package/dist/demo/index.mjs.map +1 -1
- package/dist/demo/styles.css +674 -45
- package/dist/demo/styles.css.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +2 -2
- package/dist/interfaces/index.d.ts +1 -1
- package/dist/styles.css +48 -0
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/dist/umd/bundle.umd.js +9 -9
- package/dist/umd/bundle.umd.js.map +1 -1
- package/package.json +24 -24
- package/styles.css +48 -0
- package/styles.min.css +1 -1
- package/dist/choropleth-bfa2bf81.mjs.map +0 -1
package/dist/demo/styles.css
CHANGED
|
@@ -5140,6 +5140,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5140
5140
|
}
|
|
5141
5141
|
|
|
5142
5142
|
.cds--chart-holder {
|
|
5143
|
+
--cds-ai-gradient-end: rgba(255, 255, 255, 0);
|
|
5144
|
+
--cds-ai-gradient-start-01: rgba(242, 244, 248, 0.5);
|
|
5145
|
+
--cds-ai-gradient-start-02: rgba(237, 245, 255, 0.5);
|
|
5143
5146
|
--cds-background: #ffffff;
|
|
5144
5147
|
--cds-background-active: rgba(141, 141, 141, 0.5);
|
|
5145
5148
|
--cds-background-brand: #0f62fe;
|
|
@@ -5219,6 +5222,15 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5219
5222
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
5220
5223
|
--cds-skeleton-background: #e8e8e8;
|
|
5221
5224
|
--cds-skeleton-element: #c6c6c6;
|
|
5225
|
+
--cds-slug-background: #525252;
|
|
5226
|
+
--cds-slug-background-hover: #6f6f6f;
|
|
5227
|
+
--cds-slug-callout-aura-end: rgba(255, 255, 255, 0);
|
|
5228
|
+
--cds-slug-callout-aura-start: rgba(237, 245, 255, 0.6);
|
|
5229
|
+
--cds-slug-callout-gradient-bottom: rgba(224, 224, 224, 0.85);
|
|
5230
|
+
--cds-slug-callout-gradient-top: rgba(244, 244, 244, 0.85);
|
|
5231
|
+
--cds-slug-gradient: #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%);
|
|
5232
|
+
--cds-slug-gradient-hover: #161616 linear-gradient(135deg, #d1d1d1 0%, rgba(255, 255, 255, 0) 100%);
|
|
5233
|
+
--cds-slug-hollow-hover: #474747;
|
|
5222
5234
|
--cds-support-caution-major: #ff832b;
|
|
5223
5235
|
--cds-support-caution-minor: #f1c21b;
|
|
5224
5236
|
--cds-support-caution-undefined: #8a3ffc;
|
|
@@ -5526,6 +5538,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5526
5538
|
}
|
|
5527
5539
|
|
|
5528
5540
|
.cds--chart-holder[data-carbon-theme=g10] {
|
|
5541
|
+
--cds-ai-gradient-end: rgba(255, 255, 255, 0);
|
|
5542
|
+
--cds-ai-gradient-start-01: rgba(242, 244, 248, 0.5);
|
|
5543
|
+
--cds-ai-gradient-start-02: rgba(237, 245, 255, 0.5);
|
|
5529
5544
|
--cds-background: #f4f4f4;
|
|
5530
5545
|
--cds-background-active: rgba(141, 141, 141, 0.5);
|
|
5531
5546
|
--cds-background-brand: #0f62fe;
|
|
@@ -5605,6 +5620,15 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5605
5620
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
5606
5621
|
--cds-skeleton-background: #e8e8e8;
|
|
5607
5622
|
--cds-skeleton-element: #c6c6c6;
|
|
5623
|
+
--cds-slug-background: #525252;
|
|
5624
|
+
--cds-slug-background-hover: #6f6f6f;
|
|
5625
|
+
--cds-slug-callout-aura-end: rgba(255, 255, 255, 0);
|
|
5626
|
+
--cds-slug-callout-aura-start: rgba(237, 245, 255, 0.6);
|
|
5627
|
+
--cds-slug-callout-gradient-bottom: rgba(224, 224, 224, 0.85);
|
|
5628
|
+
--cds-slug-callout-gradient-top: rgba(244, 244, 244, 0.85);
|
|
5629
|
+
--cds-slug-gradient: #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%);
|
|
5630
|
+
--cds-slug-gradient-hover: #161616 linear-gradient(135deg, #d1d1d1 0%, rgba(255, 255, 255, 0) 100%);
|
|
5631
|
+
--cds-slug-hollow-hover: #474747;
|
|
5608
5632
|
--cds-support-caution-major: #ff832b;
|
|
5609
5633
|
--cds-support-caution-minor: #f1c21b;
|
|
5610
5634
|
--cds-support-caution-undefined: #8a3ffc;
|
|
@@ -5912,6 +5936,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5912
5936
|
}
|
|
5913
5937
|
|
|
5914
5938
|
.cds--chart-holder[data-carbon-theme=g90] {
|
|
5939
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
5940
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
5941
|
+
--cds-ai-gradient-start-02: transparent;
|
|
5915
5942
|
--cds-background: #262626;
|
|
5916
5943
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
5917
5944
|
--cds-background-brand: #0f62fe;
|
|
@@ -5991,6 +6018,15 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5991
6018
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
5992
6019
|
--cds-skeleton-background: #333333;
|
|
5993
6020
|
--cds-skeleton-element: #525252;
|
|
6021
|
+
--cds-slug-background: #c6c6c6;
|
|
6022
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
6023
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
6024
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
6025
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
6026
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
6027
|
+
--cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
|
|
6028
|
+
--cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
|
|
6029
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
5994
6030
|
--cds-support-caution-major: #ff832b;
|
|
5995
6031
|
--cds-support-caution-minor: #f1c21b;
|
|
5996
6032
|
--cds-support-caution-undefined: #a56eff;
|
|
@@ -6298,6 +6334,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
6298
6334
|
}
|
|
6299
6335
|
|
|
6300
6336
|
.cds--chart-holder[data-carbon-theme=g100] {
|
|
6337
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
6338
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
6339
|
+
--cds-ai-gradient-start-02: transparent;
|
|
6301
6340
|
--cds-background: #161616;
|
|
6302
6341
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
6303
6342
|
--cds-background-brand: #0f62fe;
|
|
@@ -6377,6 +6416,15 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
6377
6416
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
6378
6417
|
--cds-skeleton-background: #292929;
|
|
6379
6418
|
--cds-skeleton-element: #393939;
|
|
6419
|
+
--cds-slug-background: #c6c6c6;
|
|
6420
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
6421
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
6422
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
6423
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
6424
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
6425
|
+
--cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
|
|
6426
|
+
--cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
|
|
6427
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
6380
6428
|
--cds-support-caution-major: #ff832b;
|
|
6381
6429
|
--cds-support-caution-minor: #f1c21b;
|
|
6382
6430
|
--cds-support-caution-undefined: #a56eff;
|
|
@@ -9350,8 +9398,11 @@ em {
|
|
|
9350
9398
|
}
|
|
9351
9399
|
|
|
9352
9400
|
.cds--white {
|
|
9353
|
-
background: var(--cds-background);
|
|
9401
|
+
background-color: var(--cds-background);
|
|
9354
9402
|
color: var(--cds-text-primary);
|
|
9403
|
+
--cds-ai-gradient-end: rgba(255, 255, 255, 0);
|
|
9404
|
+
--cds-ai-gradient-start-01: rgba(242, 244, 248, 0.5);
|
|
9405
|
+
--cds-ai-gradient-start-02: rgba(237, 245, 255, 0.5);
|
|
9355
9406
|
--cds-background: #ffffff;
|
|
9356
9407
|
--cds-background-active: rgba(141, 141, 141, 0.5);
|
|
9357
9408
|
--cds-background-brand: #0f62fe;
|
|
@@ -9431,6 +9482,13 @@ em {
|
|
|
9431
9482
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
9432
9483
|
--cds-skeleton-background: #e8e8e8;
|
|
9433
9484
|
--cds-skeleton-element: #c6c6c6;
|
|
9485
|
+
--cds-slug-background: #525252;
|
|
9486
|
+
--cds-slug-background-hover: #6f6f6f;
|
|
9487
|
+
--cds-slug-callout-aura-end: rgba(255, 255, 255, 0);
|
|
9488
|
+
--cds-slug-callout-aura-start: rgba(237, 245, 255, 0.6);
|
|
9489
|
+
--cds-slug-callout-gradient-bottom: rgba(224, 224, 224, 0.85);
|
|
9490
|
+
--cds-slug-callout-gradient-top: rgba(244, 244, 244, 0.85);
|
|
9491
|
+
--cds-slug-hollow-hover: #474747;
|
|
9434
9492
|
--cds-support-caution-major: #ff832b;
|
|
9435
9493
|
--cds-support-caution-minor: #f1c21b;
|
|
9436
9494
|
--cds-support-caution-undefined: #8a3ffc;
|
|
@@ -9524,8 +9582,11 @@ em {
|
|
|
9524
9582
|
}
|
|
9525
9583
|
|
|
9526
9584
|
.cds--g10 {
|
|
9527
|
-
background: var(--cds-background);
|
|
9585
|
+
background-color: var(--cds-background);
|
|
9528
9586
|
color: var(--cds-text-primary);
|
|
9587
|
+
--cds-ai-gradient-end: rgba(255, 255, 255, 0);
|
|
9588
|
+
--cds-ai-gradient-start-01: rgba(242, 244, 248, 0.5);
|
|
9589
|
+
--cds-ai-gradient-start-02: rgba(237, 245, 255, 0.5);
|
|
9529
9590
|
--cds-background: #f4f4f4;
|
|
9530
9591
|
--cds-background-active: rgba(141, 141, 141, 0.5);
|
|
9531
9592
|
--cds-background-brand: #0f62fe;
|
|
@@ -9605,6 +9666,13 @@ em {
|
|
|
9605
9666
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
9606
9667
|
--cds-skeleton-background: #e8e8e8;
|
|
9607
9668
|
--cds-skeleton-element: #c6c6c6;
|
|
9669
|
+
--cds-slug-background: #525252;
|
|
9670
|
+
--cds-slug-background-hover: #6f6f6f;
|
|
9671
|
+
--cds-slug-callout-aura-end: rgba(255, 255, 255, 0);
|
|
9672
|
+
--cds-slug-callout-aura-start: rgba(237, 245, 255, 0.6);
|
|
9673
|
+
--cds-slug-callout-gradient-bottom: rgba(224, 224, 224, 0.85);
|
|
9674
|
+
--cds-slug-callout-gradient-top: rgba(244, 244, 244, 0.85);
|
|
9675
|
+
--cds-slug-hollow-hover: #474747;
|
|
9608
9676
|
--cds-support-caution-major: #ff832b;
|
|
9609
9677
|
--cds-support-caution-minor: #f1c21b;
|
|
9610
9678
|
--cds-support-caution-undefined: #8a3ffc;
|
|
@@ -9698,8 +9766,10 @@ em {
|
|
|
9698
9766
|
}
|
|
9699
9767
|
|
|
9700
9768
|
.cds--g90 {
|
|
9701
|
-
background: var(--cds-background);
|
|
9769
|
+
background-color: var(--cds-background);
|
|
9702
9770
|
color: var(--cds-text-primary);
|
|
9771
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
9772
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
9703
9773
|
--cds-background: #262626;
|
|
9704
9774
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
9705
9775
|
--cds-background-brand: #0f62fe;
|
|
@@ -9779,6 +9849,13 @@ em {
|
|
|
9779
9849
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
9780
9850
|
--cds-skeleton-background: #333333;
|
|
9781
9851
|
--cds-skeleton-element: #525252;
|
|
9852
|
+
--cds-slug-background: #c6c6c6;
|
|
9853
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
9854
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
9855
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
9856
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
9857
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
9858
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
9782
9859
|
--cds-support-caution-major: #ff832b;
|
|
9783
9860
|
--cds-support-caution-minor: #f1c21b;
|
|
9784
9861
|
--cds-support-caution-undefined: #a56eff;
|
|
@@ -9871,8 +9948,10 @@ em {
|
|
|
9871
9948
|
}
|
|
9872
9949
|
|
|
9873
9950
|
.cds--g100 {
|
|
9874
|
-
background: var(--cds-background);
|
|
9951
|
+
background-color: var(--cds-background);
|
|
9875
9952
|
color: var(--cds-text-primary);
|
|
9953
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
9954
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
9876
9955
|
--cds-background: #161616;
|
|
9877
9956
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
9878
9957
|
--cds-background-brand: #0f62fe;
|
|
@@ -9952,6 +10031,13 @@ em {
|
|
|
9952
10031
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
9953
10032
|
--cds-skeleton-background: #292929;
|
|
9954
10033
|
--cds-skeleton-element: #393939;
|
|
10034
|
+
--cds-slug-background: #c6c6c6;
|
|
10035
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
10036
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
10037
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
10038
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
10039
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
10040
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
9955
10041
|
--cds-support-caution-major: #ff832b;
|
|
9956
10042
|
--cds-support-caution-minor: #f1c21b;
|
|
9957
10043
|
--cds-support-caution-undefined: #a56eff;
|
|
@@ -10127,29 +10213,13 @@ em {
|
|
|
10127
10213
|
.cds--accordion__heading::-moz-focus-inner {
|
|
10128
10214
|
border: 0;
|
|
10129
10215
|
}
|
|
10130
|
-
.cds--accordion__heading:hover
|
|
10131
|
-
position: absolute;
|
|
10132
|
-
block-size: calc(100% + 2px);
|
|
10133
|
-
content: "";
|
|
10134
|
-
inline-size: 100%;
|
|
10135
|
-
inset-block-start: -1px;
|
|
10136
|
-
inset-inline-start: 0;
|
|
10137
|
-
}
|
|
10138
|
-
.cds--accordion__heading:hover::before {
|
|
10216
|
+
.cds--accordion__heading:hover {
|
|
10139
10217
|
background-color: var(--cds-layer-hover);
|
|
10140
10218
|
}
|
|
10141
10219
|
.cds--accordion__heading:focus {
|
|
10220
|
+
box-shadow: 0 -1px 0 0 var(--cds-focus, #0f62fe), inset 0 1px 0 0 var(--cds-focus, #0f62fe), inset 2px 0 0 0 var(--cds-focus, #0f62fe), 0 1px 0 0 var(--cds-focus, #0f62fe), inset 0 -1px 0 0 var(--cds-focus, #0f62fe), inset -2px 0 0 0 var(--cds-focus, #0f62fe);
|
|
10142
10221
|
outline: none;
|
|
10143
10222
|
}
|
|
10144
|
-
.cds--accordion__heading:focus::before {
|
|
10145
|
-
box-sizing: border-box;
|
|
10146
|
-
border: 2px solid var(--cds-focus, #0f62fe);
|
|
10147
|
-
}
|
|
10148
|
-
@media screen and (prefers-contrast) {
|
|
10149
|
-
.cds--accordion__heading:focus::before {
|
|
10150
|
-
border-style: dotted;
|
|
10151
|
-
}
|
|
10152
|
-
}
|
|
10153
10223
|
|
|
10154
10224
|
.cds--accordion__heading[disabled] {
|
|
10155
10225
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
@@ -14663,7 +14733,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
14663
14733
|
block-size: 1.5rem;
|
|
14664
14734
|
cursor: pointer;
|
|
14665
14735
|
inline-size: 1.5rem;
|
|
14666
|
-
inset-inline-end:
|
|
14736
|
+
inset-inline-end: 0.75rem;
|
|
14667
14737
|
outline: none;
|
|
14668
14738
|
transition: transform 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
14669
14739
|
}
|
|
@@ -19141,11 +19211,14 @@ th .cds--table-sort__flex {
|
|
|
19141
19211
|
}
|
|
19142
19212
|
|
|
19143
19213
|
.cds--date-picker-input__wrapper {
|
|
19144
|
-
position: relative;
|
|
19145
19214
|
display: flex;
|
|
19146
19215
|
align-items: center;
|
|
19147
19216
|
}
|
|
19148
19217
|
|
|
19218
|
+
.cds--date-picker-input__wrapper span {
|
|
19219
|
+
position: relative;
|
|
19220
|
+
}
|
|
19221
|
+
|
|
19149
19222
|
.cds--date-picker.cds--date-picker--simple .cds--date-picker__input,
|
|
19150
19223
|
.cds--date-picker.cds--date-picker--simple .cds--label {
|
|
19151
19224
|
inline-size: 7.5rem;
|
|
@@ -19933,6 +20006,7 @@ button.cds--dropdown-text:focus {
|
|
|
19933
20006
|
.cds--loading--small {
|
|
19934
20007
|
block-size: 1rem;
|
|
19935
20008
|
inline-size: 1rem;
|
|
20009
|
+
line-height: 1rem;
|
|
19936
20010
|
}
|
|
19937
20011
|
.cds--loading--small circle {
|
|
19938
20012
|
stroke-width: 16;
|
|
@@ -20150,7 +20224,7 @@ button.cds--dropdown-text:focus {
|
|
|
20150
20224
|
display: grid;
|
|
20151
20225
|
align-items: center;
|
|
20152
20226
|
background-color: var(--cds-layer);
|
|
20153
|
-
gap: 0.75rem
|
|
20227
|
+
gap: 0.75rem 0;
|
|
20154
20228
|
grid-auto-rows: auto;
|
|
20155
20229
|
grid-template-columns: 1fr auto;
|
|
20156
20230
|
margin-block-end: 0.5rem;
|
|
@@ -20180,14 +20254,69 @@ button.cds--dropdown-text:focus {
|
|
|
20180
20254
|
text-overflow: ellipsis;
|
|
20181
20255
|
white-space: nowrap;
|
|
20182
20256
|
}
|
|
20257
|
+
.cds--file__selected-file .cds--file-filename-container-wrap {
|
|
20258
|
+
margin-block-start: 1px;
|
|
20259
|
+
max-inline-size: 17.5rem;
|
|
20260
|
+
padding-inline-start: 1rem;
|
|
20261
|
+
}
|
|
20262
|
+
@media (max-width: 410px) {
|
|
20263
|
+
.cds--file__selected-file .cds--file-filename-container-wrap {
|
|
20264
|
+
max-inline-size: 13.5rem;
|
|
20265
|
+
}
|
|
20266
|
+
}
|
|
20267
|
+
.cds--file__selected-file .cds--file-filename-container-wrap-invalid {
|
|
20268
|
+
max-inline-size: 15.5rem;
|
|
20269
|
+
}
|
|
20270
|
+
.cds--file__selected-file .cds--file-filename-container-wrap-invalid .cds--file-filename-tooltip {
|
|
20271
|
+
inline-size: -webkit-fill-available;
|
|
20272
|
+
padding-inline-start: 1rem;
|
|
20273
|
+
}
|
|
20274
|
+
@-moz-document url-prefix() {
|
|
20275
|
+
.cds--file__selected-file .cds--file-filename-container-wrap-invalid .cds--file-filename-tooltip {
|
|
20276
|
+
inline-size: -moz-available;
|
|
20277
|
+
}
|
|
20278
|
+
}
|
|
20279
|
+
.cds--file__selected-file .cds--file-filename-tooltip {
|
|
20280
|
+
inline-size: -webkit-fill-available;
|
|
20281
|
+
}
|
|
20282
|
+
@-moz-document url-prefix() {
|
|
20283
|
+
.cds--file__selected-file .cds--file-filename-tooltip {
|
|
20284
|
+
inline-size: -moz-available;
|
|
20285
|
+
}
|
|
20286
|
+
}
|
|
20287
|
+
.cds--file__selected-file .cds--file-filename-button {
|
|
20288
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
20289
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
20290
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
20291
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
20292
|
+
overflow: hidden;
|
|
20293
|
+
padding: 0;
|
|
20294
|
+
border: none;
|
|
20295
|
+
background: none;
|
|
20296
|
+
color: inherit;
|
|
20297
|
+
cursor: pointer;
|
|
20298
|
+
font: inherit;
|
|
20299
|
+
inline-size: -webkit-fill-available;
|
|
20300
|
+
outline: inherit;
|
|
20301
|
+
text-overflow: ellipsis;
|
|
20302
|
+
white-space: nowrap;
|
|
20303
|
+
}
|
|
20304
|
+
@-moz-document url-prefix() {
|
|
20305
|
+
.cds--file__selected-file .cds--file-filename-button {
|
|
20306
|
+
inline-size: -moz-available;
|
|
20307
|
+
}
|
|
20308
|
+
}
|
|
20309
|
+
.cds--file__selected-file .cds--file-filename-button:focus {
|
|
20310
|
+
outline: revert;
|
|
20311
|
+
}
|
|
20183
20312
|
|
|
20184
20313
|
.cds--file__selected-file--md {
|
|
20185
|
-
gap: 0.5rem
|
|
20314
|
+
gap: 0.5rem 0;
|
|
20186
20315
|
min-block-size: 2.5rem;
|
|
20187
20316
|
}
|
|
20188
20317
|
|
|
20189
20318
|
.cds--file__selected-file--sm {
|
|
20190
|
-
gap: 0.25rem
|
|
20319
|
+
gap: 0.25rem 0;
|
|
20191
20320
|
min-block-size: 2rem;
|
|
20192
20321
|
}
|
|
20193
20322
|
|
|
@@ -20277,14 +20406,26 @@ button.cds--dropdown-text:focus {
|
|
|
20277
20406
|
align-items: center;
|
|
20278
20407
|
justify-content: center;
|
|
20279
20408
|
min-inline-size: 1.5rem;
|
|
20280
|
-
padding-inline-end:
|
|
20409
|
+
padding-inline-end: 0.75rem;
|
|
20281
20410
|
}
|
|
20282
20411
|
.cds--file__state-container .cds--loading__svg {
|
|
20283
20412
|
stroke: var(--cds-icon-primary, #161616);
|
|
20284
20413
|
}
|
|
20285
20414
|
|
|
20415
|
+
.cds--file__state-container .cds--file-loading {
|
|
20416
|
+
display: flex;
|
|
20417
|
+
align-items: center;
|
|
20418
|
+
justify-content: center;
|
|
20419
|
+
padding: 0.25rem;
|
|
20420
|
+
border: none;
|
|
20421
|
+
background-color: transparent;
|
|
20422
|
+
block-size: 1rem;
|
|
20423
|
+
inline-size: 1.5rem;
|
|
20424
|
+
}
|
|
20425
|
+
|
|
20286
20426
|
.cds--file__state-container .cds--file-complete {
|
|
20287
20427
|
fill: var(--cds-interactive, #0f62fe);
|
|
20428
|
+
inline-size: 1.5rem;
|
|
20288
20429
|
}
|
|
20289
20430
|
.cds--file__state-container .cds--file-complete:focus {
|
|
20290
20431
|
outline: 1px solid var(--cds-focus, #0f62fe);
|
|
@@ -20661,6 +20802,10 @@ button.cds--dropdown-text:focus {
|
|
|
20661
20802
|
white-space: nowrap;
|
|
20662
20803
|
}
|
|
20663
20804
|
|
|
20805
|
+
.cds--date-picker--fluid .cds--date-picker-input__wrapper > span {
|
|
20806
|
+
inline-size: 100%;
|
|
20807
|
+
}
|
|
20808
|
+
|
|
20664
20809
|
.cds--date-picker--fluid .cds--date-picker-input__wrapper .cds--date-picker__input {
|
|
20665
20810
|
padding: 2rem 1rem 0.8125rem;
|
|
20666
20811
|
background: transparent;
|
|
@@ -23191,8 +23336,8 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23191
23336
|
font-weight: 400;
|
|
23192
23337
|
grid-column: 1/-1;
|
|
23193
23338
|
grid-row: 2/-2;
|
|
23194
|
-
margin-block-end: 3rem;
|
|
23195
23339
|
overflow-y: auto;
|
|
23340
|
+
padding-block-end: 3rem;
|
|
23196
23341
|
padding-block-start: 0.5rem;
|
|
23197
23342
|
padding-inline-end: 1rem;
|
|
23198
23343
|
padding-inline-start: 1rem;
|
|
@@ -23343,20 +23488,32 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23343
23488
|
}
|
|
23344
23489
|
}
|
|
23345
23490
|
|
|
23491
|
+
.cds--modal-scroll-content {
|
|
23492
|
+
border-block-end: 2px solid transparent;
|
|
23493
|
+
}
|
|
23494
|
+
|
|
23346
23495
|
.cds--modal-scroll-content > *:last-child {
|
|
23347
|
-
padding-block-end:
|
|
23496
|
+
padding-block-end: 1.5rem;
|
|
23348
23497
|
}
|
|
23349
23498
|
|
|
23350
23499
|
.cds--modal-content--overflow-indicator {
|
|
23500
|
+
position: absolute;
|
|
23501
|
+
background: var(--cds-layer);
|
|
23502
|
+
block-size: 3rem;
|
|
23503
|
+
grid-column: 1/-1;
|
|
23504
|
+
grid-row: 2/-2;
|
|
23505
|
+
inline-size: calc(100% - 1rem);
|
|
23506
|
+
inset-block-end: 0;
|
|
23507
|
+
inset-inline-start: 0;
|
|
23508
|
+
pointer-events: none;
|
|
23509
|
+
}
|
|
23510
|
+
.cds--modal-content--overflow-indicator::before {
|
|
23351
23511
|
position: absolute;
|
|
23352
23512
|
background-image: linear-gradient(to bottom, transparent, var(--cds-layer));
|
|
23353
23513
|
block-size: 2rem;
|
|
23354
23514
|
content: "";
|
|
23355
|
-
grid-column: 1/-1;
|
|
23356
|
-
grid-row: 2/-2;
|
|
23357
23515
|
inline-size: 100%;
|
|
23358
|
-
inset-block-
|
|
23359
|
-
inset-inline-start: 0;
|
|
23516
|
+
inset-block-start: -32px;
|
|
23360
23517
|
pointer-events: none;
|
|
23361
23518
|
}
|
|
23362
23519
|
|
|
@@ -23369,7 +23526,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23369
23526
|
}
|
|
23370
23527
|
.cds--modal-content:focus ~ .cds--modal-content--overflow-indicator {
|
|
23371
23528
|
margin: 0 2px 2px;
|
|
23372
|
-
inline-size: calc(100% - 4px);
|
|
23373
23529
|
}
|
|
23374
23530
|
|
|
23375
23531
|
@media screen and (-ms-high-contrast: active) {
|
|
@@ -25833,18 +25989,21 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25833
25989
|
position: relative;
|
|
25834
25990
|
display: flex;
|
|
25835
25991
|
align-items: center;
|
|
25992
|
+
gap: 1rem;
|
|
25836
25993
|
user-select: none;
|
|
25837
25994
|
}
|
|
25838
25995
|
|
|
25839
25996
|
.cds--slider {
|
|
25840
25997
|
position: relative;
|
|
25841
25998
|
padding: 1rem 0;
|
|
25842
|
-
margin: 0 1rem;
|
|
25843
25999
|
cursor: pointer;
|
|
25844
26000
|
inline-size: 100%;
|
|
25845
26001
|
max-inline-size: 40rem;
|
|
25846
26002
|
min-inline-size: 12.5rem;
|
|
25847
26003
|
}
|
|
26004
|
+
.cds--slider-container--two-handles .cds--slider {
|
|
26005
|
+
margin-inline: 0.25rem;
|
|
26006
|
+
}
|
|
25848
26007
|
|
|
25849
26008
|
.cds--slider__range-label {
|
|
25850
26009
|
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
@@ -25854,9 +26013,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25854
26013
|
color: var(--cds-text-primary, #161616);
|
|
25855
26014
|
white-space: nowrap;
|
|
25856
26015
|
}
|
|
25857
|
-
.cds--slider__range-label:last-of-type {
|
|
25858
|
-
margin-inline-end: 1rem;
|
|
25859
|
-
}
|
|
25860
26016
|
|
|
25861
26017
|
.cds--slider__track {
|
|
25862
26018
|
position: absolute;
|
|
@@ -25914,10 +26070,98 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25914
26070
|
transform: translate(-50%, -50%) scale(1.4286);
|
|
25915
26071
|
}
|
|
25916
26072
|
|
|
26073
|
+
.cds--slider__thumb-icon {
|
|
26074
|
+
fill: var(--cds-layer-selected-inverse, #161616);
|
|
26075
|
+
}
|
|
26076
|
+
|
|
26077
|
+
.cds--slider__thumb-icon--focus {
|
|
26078
|
+
display: none;
|
|
26079
|
+
fill: var(--cds-interactive, #0f62fe);
|
|
26080
|
+
}
|
|
26081
|
+
|
|
26082
|
+
.cds--slider__thumb--lower,
|
|
26083
|
+
.cds--slider__thumb--upper {
|
|
26084
|
+
display: block;
|
|
26085
|
+
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
|
|
26086
|
+
border-radius: unset;
|
|
26087
|
+
background-color: transparent;
|
|
26088
|
+
block-size: 24px;
|
|
26089
|
+
box-shadow: none;
|
|
26090
|
+
inline-size: 16px;
|
|
26091
|
+
transform: translate(-100%, -50%);
|
|
26092
|
+
transition: none;
|
|
26093
|
+
}
|
|
26094
|
+
.cds--slider__thumb--lower::before,
|
|
26095
|
+
.cds--slider__thumb--upper::before {
|
|
26096
|
+
position: absolute;
|
|
26097
|
+
z-index: -1;
|
|
26098
|
+
display: block;
|
|
26099
|
+
background: var(--cds-background, #ffffff);
|
|
26100
|
+
block-size: 0.125rem;
|
|
26101
|
+
content: "";
|
|
26102
|
+
inline-size: 0.375rem;
|
|
26103
|
+
inset-block-start: calc(50% - 0.0625rem);
|
|
26104
|
+
inset-inline-end: 0;
|
|
26105
|
+
}
|
|
26106
|
+
.cds--slider__thumb--lower:hover,
|
|
26107
|
+
.cds--slider__thumb--upper:hover {
|
|
26108
|
+
transform: translate(-100%, -50%);
|
|
26109
|
+
}
|
|
26110
|
+
.cds--slider__thumb--lower:hover .cds--slider__thumb-icon,
|
|
26111
|
+
.cds--slider__thumb--upper:hover .cds--slider__thumb-icon {
|
|
26112
|
+
fill: var(--cds-text-secondary, #525252);
|
|
26113
|
+
}
|
|
26114
|
+
.cds--slider__thumb--lower:active,
|
|
26115
|
+
.cds--slider__thumb--upper:active {
|
|
26116
|
+
box-shadow: none;
|
|
26117
|
+
transform: translate(-100%, -50%);
|
|
26118
|
+
}
|
|
26119
|
+
.cds--slider__thumb--lower:focus,
|
|
26120
|
+
.cds--slider__thumb--upper:focus {
|
|
26121
|
+
background-color: transparent;
|
|
26122
|
+
box-shadow: none;
|
|
26123
|
+
transform: translate(-100%, -50%);
|
|
26124
|
+
}
|
|
26125
|
+
.cds--slider__thumb--lower:focus .cds--slider__thumb-icon,
|
|
26126
|
+
.cds--slider__thumb--upper:focus .cds--slider__thumb-icon {
|
|
26127
|
+
display: none;
|
|
26128
|
+
fill: var(--cds-interactive, #0f62fe);
|
|
26129
|
+
}
|
|
26130
|
+
.cds--slider__thumb--lower:focus .cds--slider__thumb-icon--focus,
|
|
26131
|
+
.cds--slider__thumb--upper:focus .cds--slider__thumb-icon--focus {
|
|
26132
|
+
display: block;
|
|
26133
|
+
}
|
|
26134
|
+
|
|
26135
|
+
.cds--slider__thumb--lower:focus::before,
|
|
26136
|
+
.cds--slider__thumb--upper:focus::before {
|
|
26137
|
+
inline-size: 100%;
|
|
26138
|
+
}
|
|
26139
|
+
|
|
26140
|
+
.cds--slider__thumb--upper {
|
|
26141
|
+
transform: translate(0, -50%);
|
|
26142
|
+
}
|
|
26143
|
+
.cds--slider__thumb--upper::before {
|
|
26144
|
+
inset-inline-end: auto;
|
|
26145
|
+
inset-inline-start: 0;
|
|
26146
|
+
}
|
|
26147
|
+
.cds--slider__thumb--upper:hover {
|
|
26148
|
+
transform: translate(0, -50%);
|
|
26149
|
+
}
|
|
26150
|
+
.cds--slider__thumb--upper:active {
|
|
26151
|
+
transform: translate(0, -50%);
|
|
26152
|
+
}
|
|
26153
|
+
.cds--slider__thumb--upper:focus {
|
|
26154
|
+
transform: translate(0, -50%);
|
|
26155
|
+
}
|
|
26156
|
+
|
|
25917
26157
|
.cds--slider__input {
|
|
25918
26158
|
display: none;
|
|
25919
26159
|
}
|
|
25920
26160
|
|
|
26161
|
+
.cds--slider-text-input-wrapper {
|
|
26162
|
+
position: relative;
|
|
26163
|
+
}
|
|
26164
|
+
|
|
25921
26165
|
.cds--slider-text-input,
|
|
25922
26166
|
.cds-slider-text-input {
|
|
25923
26167
|
-moz-appearance: textfield;
|
|
@@ -25936,7 +26180,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25936
26180
|
}
|
|
25937
26181
|
|
|
25938
26182
|
.cds--slider__thumb:focus ~ .cds--slider__filled-track {
|
|
25939
|
-
background-color: var(--cds-interactive, #0f62fe);
|
|
26183
|
+
background-color: var(--cds-border-interactive, #0f62fe);
|
|
25940
26184
|
}
|
|
25941
26185
|
|
|
25942
26186
|
.cds--slider-text-input.cds--text-input--invalid,
|
|
@@ -25956,7 +26200,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25956
26200
|
.cds--slider__validation-msg.cds--form-requirement {
|
|
25957
26201
|
display: block;
|
|
25958
26202
|
overflow: visible;
|
|
25959
|
-
margin-block-start: 0;
|
|
25960
26203
|
max-block-size: 100%;
|
|
25961
26204
|
}
|
|
25962
26205
|
|
|
@@ -26025,15 +26268,24 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
26025
26268
|
cursor: default;
|
|
26026
26269
|
}
|
|
26027
26270
|
|
|
26028
|
-
.cds--slider--readonly .cds--slider__thumb {
|
|
26271
|
+
.cds--slider-container--readonly .cds--slider__thumb {
|
|
26029
26272
|
block-size: 0;
|
|
26030
26273
|
inline-size: 0;
|
|
26031
26274
|
}
|
|
26275
|
+
.cds--slider-container--readonly .cds--slider__thumb::before, .cds--slider-container--readonly .cds--slider__thumb::after {
|
|
26276
|
+
display: none;
|
|
26277
|
+
}
|
|
26032
26278
|
|
|
26033
|
-
.cds--slider--readonly
|
|
26279
|
+
.cds--slider-container--readonly .cds--slider-text-input {
|
|
26034
26280
|
background-color: transparent;
|
|
26035
26281
|
}
|
|
26036
26282
|
|
|
26283
|
+
.cds--slider__status-msg.cds--form-requirement {
|
|
26284
|
+
display: block;
|
|
26285
|
+
overflow: visible;
|
|
26286
|
+
max-block-size: 100%;
|
|
26287
|
+
}
|
|
26288
|
+
|
|
26037
26289
|
.cds--slider-container.cds--skeleton .cds--slider__range-label {
|
|
26038
26290
|
position: relative;
|
|
26039
26291
|
padding: 0;
|
|
@@ -26074,6 +26326,12 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
26074
26326
|
inset-inline-start: 50%;
|
|
26075
26327
|
pointer-events: none;
|
|
26076
26328
|
}
|
|
26329
|
+
.cds--slider-container.cds--skeleton .cds--slider__thumb--lower {
|
|
26330
|
+
inset-inline-start: 0;
|
|
26331
|
+
}
|
|
26332
|
+
.cds--slider-container.cds--skeleton .cds--slider__thumb--upper {
|
|
26333
|
+
inset-inline-start: 100%;
|
|
26334
|
+
}
|
|
26077
26335
|
|
|
26078
26336
|
/* stylelint-disable */
|
|
26079
26337
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
@@ -26096,6 +26354,317 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
26096
26354
|
}
|
|
26097
26355
|
|
|
26098
26356
|
/* stylelint-enable */
|
|
26357
|
+
.cds--slug {
|
|
26358
|
+
display: flex;
|
|
26359
|
+
}
|
|
26360
|
+
|
|
26361
|
+
.cds--slug .cds--slug__button {
|
|
26362
|
+
position: relative;
|
|
26363
|
+
display: flex;
|
|
26364
|
+
align-items: center;
|
|
26365
|
+
justify-content: center;
|
|
26366
|
+
color: var(--cds-text-inverse, #ffffff);
|
|
26367
|
+
font-weight: 600;
|
|
26368
|
+
transition: color 70ms cubic-bezier(0, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0, 0, 0.38, 0.9), box-shadow 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
26369
|
+
}
|
|
26370
|
+
.cds--slug .cds--slug__button--mini {
|
|
26371
|
+
height: 1rem;
|
|
26372
|
+
width: 1rem;
|
|
26373
|
+
font-size: 0.5625rem;
|
|
26374
|
+
line-height: 0.75rem;
|
|
26375
|
+
background: var(--cds-slug-background, #525252);
|
|
26376
|
+
}
|
|
26377
|
+
.cds--slug .cds--slug__button--2xs {
|
|
26378
|
+
height: 1.25rem;
|
|
26379
|
+
width: 1.25rem;
|
|
26380
|
+
font-size: 0.75rem;
|
|
26381
|
+
line-height: 1rem;
|
|
26382
|
+
background: var(--cds-slug-background, #525252);
|
|
26383
|
+
}
|
|
26384
|
+
.cds--slug .cds--slug__button--xs {
|
|
26385
|
+
height: 1.5rem;
|
|
26386
|
+
width: 1.5rem;
|
|
26387
|
+
font-size: 0.75rem;
|
|
26388
|
+
line-height: 1rem;
|
|
26389
|
+
background: var(--cds-slug-gradient, #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%));
|
|
26390
|
+
}
|
|
26391
|
+
.cds--slug .cds--slug__button--sm {
|
|
26392
|
+
height: 2rem;
|
|
26393
|
+
width: 2rem;
|
|
26394
|
+
font-size: 1rem;
|
|
26395
|
+
line-height: 1.3125rem;
|
|
26396
|
+
background: var(--cds-slug-gradient, #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%));
|
|
26397
|
+
}
|
|
26398
|
+
.cds--slug .cds--slug__button--md {
|
|
26399
|
+
height: 2.5rem;
|
|
26400
|
+
width: 2.5rem;
|
|
26401
|
+
font-size: 1rem;
|
|
26402
|
+
line-height: 1.3125rem;
|
|
26403
|
+
background: var(--cds-slug-gradient, #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%));
|
|
26404
|
+
}
|
|
26405
|
+
.cds--slug .cds--slug__button--lg {
|
|
26406
|
+
height: 3rem;
|
|
26407
|
+
width: 3rem;
|
|
26408
|
+
font-size: 1rem;
|
|
26409
|
+
line-height: 1.3125rem;
|
|
26410
|
+
background: var(--cds-slug-gradient, #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%));
|
|
26411
|
+
}
|
|
26412
|
+
.cds--slug .cds--slug__button--xl {
|
|
26413
|
+
height: 4rem;
|
|
26414
|
+
width: 4rem;
|
|
26415
|
+
font-size: 1.25rem;
|
|
26416
|
+
line-height: 1.625rem;
|
|
26417
|
+
background: var(--cds-slug-gradient, #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%));
|
|
26418
|
+
}
|
|
26419
|
+
|
|
26420
|
+
.cds--slug .cds--slug__button:focus {
|
|
26421
|
+
box-shadow: inset 0 0 0 2px var(--cds-focus, #0f62fe), inset 0 0 0 3px var(--cds-focus-inset, #ffffff);
|
|
26422
|
+
outline: none;
|
|
26423
|
+
}
|
|
26424
|
+
|
|
26425
|
+
.cds--slug__text {
|
|
26426
|
+
position: relative;
|
|
26427
|
+
z-index: 1;
|
|
26428
|
+
}
|
|
26429
|
+
|
|
26430
|
+
.cds--slug__button::before {
|
|
26431
|
+
position: absolute;
|
|
26432
|
+
background: var(--cds-slug-gradient-hover, #161616 linear-gradient(135deg, #d1d1d1 0%, rgba(255, 255, 255, 0) 100%));
|
|
26433
|
+
block-size: 100%;
|
|
26434
|
+
content: "";
|
|
26435
|
+
inline-size: 100%;
|
|
26436
|
+
opacity: 0;
|
|
26437
|
+
transition: opacity 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
26438
|
+
}
|
|
26439
|
+
|
|
26440
|
+
.cds--slug__button.cds--slug__button--mini::after,
|
|
26441
|
+
.cds--slug__button.cds--slug__button--2xs::after {
|
|
26442
|
+
position: absolute;
|
|
26443
|
+
block-size: 1.5rem;
|
|
26444
|
+
content: "";
|
|
26445
|
+
inline-size: 1.5rem;
|
|
26446
|
+
opacity: 0;
|
|
26447
|
+
}
|
|
26448
|
+
|
|
26449
|
+
.cds--slug__button:hover::before {
|
|
26450
|
+
opacity: 1;
|
|
26451
|
+
}
|
|
26452
|
+
|
|
26453
|
+
.cds--slug .cds--slug__button:focus::before {
|
|
26454
|
+
block-size: calc(100% - 6px);
|
|
26455
|
+
inline-size: calc(100% - 6px);
|
|
26456
|
+
}
|
|
26457
|
+
|
|
26458
|
+
.cds--slug__button.cds--slug__button--mini::before,
|
|
26459
|
+
.cds--slug__button.cds--slug__button--2xs::before {
|
|
26460
|
+
background: var(--cds-slug-background-hover, #6f6f6f);
|
|
26461
|
+
}
|
|
26462
|
+
|
|
26463
|
+
.cds--slug__button.cds--slug__button--mini:focus,
|
|
26464
|
+
.cds--slug__button.cds--slug__button--2xs:focus {
|
|
26465
|
+
box-shadow: inset 0 0 0 1px var(--cds-focus, #0f62fe), inset 0 0 0 2px var(--cds-focus-inset, #ffffff);
|
|
26466
|
+
}
|
|
26467
|
+
|
|
26468
|
+
.cds--slug__button.cds--slug__button--mini:focus::before,
|
|
26469
|
+
.cds--slug__button.cds--slug__button--2xs:focus::before {
|
|
26470
|
+
block-size: calc(100% - 4px);
|
|
26471
|
+
inline-size: calc(100% - 4px);
|
|
26472
|
+
}
|
|
26473
|
+
|
|
26474
|
+
.cds--slug__button--hollow.cds--slug__button--sm,
|
|
26475
|
+
.cds--slug__button--hollow.cds--slug__button--md,
|
|
26476
|
+
.cds--slug__button--hollow.cds--slug__button--lg,
|
|
26477
|
+
.cds--slug__button--hollow.cds--slug__button--xl {
|
|
26478
|
+
block-size: 1.5rem;
|
|
26479
|
+
font-size: 0.75rem;
|
|
26480
|
+
inline-size: 1.5rem;
|
|
26481
|
+
line-height: 1rem;
|
|
26482
|
+
}
|
|
26483
|
+
|
|
26484
|
+
.cds--slug__button--hollow::before {
|
|
26485
|
+
display: none;
|
|
26486
|
+
}
|
|
26487
|
+
|
|
26488
|
+
.cds--slug .cds--slug__button--hollow {
|
|
26489
|
+
border: 1px solid var(--cds-border-inverse, #161616);
|
|
26490
|
+
background: transparent;
|
|
26491
|
+
color: var(--cds-text-primary, #161616);
|
|
26492
|
+
}
|
|
26493
|
+
|
|
26494
|
+
.cds--slug__button--hollow:hover {
|
|
26495
|
+
border-color: var(--cds-slug-hollow-hover, #474747);
|
|
26496
|
+
color: var(--cds-slug-hollow-hover, #474747);
|
|
26497
|
+
}
|
|
26498
|
+
|
|
26499
|
+
.cds--slug__button--hollow:focus {
|
|
26500
|
+
border-color: var(--cds-focus, #0f62fe);
|
|
26501
|
+
box-shadow: inset 0 0 0 1px var(--cds-focus, #0f62fe);
|
|
26502
|
+
}
|
|
26503
|
+
|
|
26504
|
+
.cds--slug .cds--slug__button--inline {
|
|
26505
|
+
border: 1px solid transparent;
|
|
26506
|
+
border-radius: 0.0625rem;
|
|
26507
|
+
background: transparent;
|
|
26508
|
+
block-size: initial;
|
|
26509
|
+
color: var(--cds-text-primary, #161616);
|
|
26510
|
+
font-size: 0.875rem;
|
|
26511
|
+
inline-size: initial;
|
|
26512
|
+
line-height: initial;
|
|
26513
|
+
padding-inline: 0.25rem;
|
|
26514
|
+
}
|
|
26515
|
+
|
|
26516
|
+
.cds--slug__button--inline::before {
|
|
26517
|
+
display: none;
|
|
26518
|
+
}
|
|
26519
|
+
|
|
26520
|
+
.cds--slug .cds--slug__button--inline:focus {
|
|
26521
|
+
border-color: var(--cds-focus, #0f62fe);
|
|
26522
|
+
box-shadow: none;
|
|
26523
|
+
}
|
|
26524
|
+
|
|
26525
|
+
.cds--slug .cds--slug__button--inline:hover {
|
|
26526
|
+
border-color: var(--cds-icon-secondary, #525252);
|
|
26527
|
+
color: var(--cds-text-secondary, #525252);
|
|
26528
|
+
}
|
|
26529
|
+
|
|
26530
|
+
.cds--slug .cds--slug__button--inline:focus:hover {
|
|
26531
|
+
border-color: var(--cds-focus, #0f62fe);
|
|
26532
|
+
}
|
|
26533
|
+
|
|
26534
|
+
.cds--slug .cds--slug__button--inline:hover .cds--slug__text::before {
|
|
26535
|
+
background: var(--cds-icon-secondary, #525252);
|
|
26536
|
+
}
|
|
26537
|
+
|
|
26538
|
+
.cds--slug--hollow .cds--slug__button--inline:hover .cds--slug__text::before {
|
|
26539
|
+
background: transparent;
|
|
26540
|
+
box-shadow: inset 0 0 0 1px var(--cds-icon-secondary, #525252);
|
|
26541
|
+
}
|
|
26542
|
+
|
|
26543
|
+
.cds--slug__button--inline .cds--slug__text {
|
|
26544
|
+
padding-inline-start: 0.5rem;
|
|
26545
|
+
}
|
|
26546
|
+
|
|
26547
|
+
.cds--slug__button--inline.cds--slug__button--lg .cds--slug__text {
|
|
26548
|
+
padding-inline-start: 0.75rem;
|
|
26549
|
+
}
|
|
26550
|
+
|
|
26551
|
+
.cds--slug__button--inline .cds--slug__text::before {
|
|
26552
|
+
position: absolute;
|
|
26553
|
+
display: inline-block;
|
|
26554
|
+
background: var(--cds-icon-primary, #161616);
|
|
26555
|
+
block-size: 0.25rem;
|
|
26556
|
+
content: "";
|
|
26557
|
+
inline-size: 0.25rem;
|
|
26558
|
+
inset-block-start: 50%;
|
|
26559
|
+
inset-inline-start: 0;
|
|
26560
|
+
opacity: 1;
|
|
26561
|
+
transform: translateY(-50%);
|
|
26562
|
+
transition: background 70ms cubic-bezier(0, 0, 0.38, 0.9), box-shadow 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
26563
|
+
}
|
|
26564
|
+
|
|
26565
|
+
.cds--slug--hollow .cds--slug__text::before {
|
|
26566
|
+
background: transparent;
|
|
26567
|
+
block-size: 0.375rem;
|
|
26568
|
+
box-shadow: inset 0 0 0 1px var(--cds-icon-primary, #161616);
|
|
26569
|
+
inline-size: 0.375rem;
|
|
26570
|
+
}
|
|
26571
|
+
|
|
26572
|
+
.cds--slug--hollow .cds--slug__button--sm .cds--slug__text,
|
|
26573
|
+
.cds--slug--hollow .cds--slug__button--md .cds--slug__text {
|
|
26574
|
+
padding-inline-start: 0.5625rem;
|
|
26575
|
+
}
|
|
26576
|
+
|
|
26577
|
+
.cds--slug__button--lg .cds--slug__text::before,
|
|
26578
|
+
.cds--slug--hollow .cds--slug__button--lg .cds--slug__text::before {
|
|
26579
|
+
block-size: 0.5rem;
|
|
26580
|
+
inline-size: 0.5rem;
|
|
26581
|
+
}
|
|
26582
|
+
|
|
26583
|
+
.cds--slug__button--inline.cds--slug__button--mini,
|
|
26584
|
+
.cds--slug__button--inline.cds--slug__button--mini .cds--slug__additional-text,
|
|
26585
|
+
.cds--slug__button--inline.cds--slug__button--2xs,
|
|
26586
|
+
.cds--slug__button--inline.cds--slug__button--2xs .cds--slug__additional-text,
|
|
26587
|
+
.cds--slug__button--inline.cds--slug__button--xs,
|
|
26588
|
+
.cds--slug__button--inline.cds--slug__button--xs .cds--slug__additional-text,
|
|
26589
|
+
.cds--slug__button--inline.cds--slug__button--sm,
|
|
26590
|
+
.cds--slug__button--inline.cds--slug__button--sm .cds--slug__additional-text {
|
|
26591
|
+
font-size: 0.75rem;
|
|
26592
|
+
}
|
|
26593
|
+
|
|
26594
|
+
.cds--slug__button--inline.cds--slug__button--lg,
|
|
26595
|
+
.cds--slug__button--inline.cds--slug__button--xl {
|
|
26596
|
+
font-size: 1rem;
|
|
26597
|
+
}
|
|
26598
|
+
|
|
26599
|
+
.cds--slug .cds--slug__button--inline-with-content {
|
|
26600
|
+
border: 1px solid var(--cds-border-inverse, #161616);
|
|
26601
|
+
padding-block: 0.125rem;
|
|
26602
|
+
padding-inline: 0.5rem;
|
|
26603
|
+
}
|
|
26604
|
+
|
|
26605
|
+
.cds--slug__button--inline-with-content .cds--slug__additional-text {
|
|
26606
|
+
font-size: var(--cds-body-compact-02-font-size, 1rem);
|
|
26607
|
+
font-weight: var(--cds-body-compact-02-font-weight, 400);
|
|
26608
|
+
line-height: var(--cds-body-compact-02-line-height, 1.375);
|
|
26609
|
+
letter-spacing: var(--cds-body-compact-02-letter-spacing, 0);
|
|
26610
|
+
padding-inline-start: 0.25rem;
|
|
26611
|
+
}
|
|
26612
|
+
|
|
26613
|
+
.cds--slug__button--inline.cds--slug__button--md .cds--slug__additional-text {
|
|
26614
|
+
font-size: 0.875rem;
|
|
26615
|
+
}
|
|
26616
|
+
|
|
26617
|
+
.cds--slug .cds--slug__button--inline-with-content:focus {
|
|
26618
|
+
box-shadow: inset 0 0 0 1px var(--cds-focus, #0f62fe);
|
|
26619
|
+
}
|
|
26620
|
+
|
|
26621
|
+
.cds--slug.cds--slug--hollow .cds--toggletip-content {
|
|
26622
|
+
row-gap: 0;
|
|
26623
|
+
}
|
|
26624
|
+
|
|
26625
|
+
.cds--slug.cds--slug--enabled .cds--slug-content {
|
|
26626
|
+
border: 1px solid var(--cds-border-subtle);
|
|
26627
|
+
border-radius: 16px;
|
|
26628
|
+
backdrop-filter: blur(25px);
|
|
26629
|
+
background: linear-gradient(0deg, var(--cds-slug-callout-aura-start, rgba(237, 245, 255, 0.6)) 0%, var(--cds-slug-callout-aura-end, rgba(255, 255, 255, 0)) 33%, transparent 100%), linear-gradient(180deg, var(--cds-slug-callout-gradient-top, rgba(244, 244, 244, 0.85)) 0%, var(--cds-slug-callout-gradient-bottom, rgba(224, 224, 224, 0.85)) 100%) rgba(0, 0, 0, 0.01);
|
|
26630
|
+
box-shadow: -45px 45px 100px rgba(0, 0, 0, 0.2);
|
|
26631
|
+
color: var(--cds-text-primary, #161616);
|
|
26632
|
+
min-inline-size: 17.5rem;
|
|
26633
|
+
}
|
|
26634
|
+
|
|
26635
|
+
.cds--slug.cds--slug--enabled > .cds--toggletip > .cds--popover > .cds--popover-caret {
|
|
26636
|
+
background: var(--cds-border-subtle);
|
|
26637
|
+
}
|
|
26638
|
+
|
|
26639
|
+
.cds--slug.cds--slug--enabled .cds--toggletip-content {
|
|
26640
|
+
max-inline-size: 20.875rem;
|
|
26641
|
+
padding-block-end: 5rem;
|
|
26642
|
+
padding-block-start: 2rem;
|
|
26643
|
+
padding-inline: 2rem;
|
|
26644
|
+
}
|
|
26645
|
+
|
|
26646
|
+
.cds--slug.cds--slug--enabled .cds--slug-actions {
|
|
26647
|
+
position: absolute;
|
|
26648
|
+
justify-content: flex-end;
|
|
26649
|
+
background: var(--cds-layer-accent);
|
|
26650
|
+
border-end-end-radius: 0.9375rem;
|
|
26651
|
+
border-end-start-radius: 0.9375rem;
|
|
26652
|
+
column-gap: 0;
|
|
26653
|
+
inline-size: 100%;
|
|
26654
|
+
inset-block-end: 0;
|
|
26655
|
+
inset-inline-end: 0;
|
|
26656
|
+
}
|
|
26657
|
+
|
|
26658
|
+
.cds--slug.cds--slug--enabled .cds--slug-actions .cds--btn:focus {
|
|
26659
|
+
border-color: var(--cds-focus, #0f62fe);
|
|
26660
|
+
box-shadow: inset 0 0 0 1px var(--cds-focus, #0f62fe), inset 0 0 0 2px var(--cds-background, #ffffff);
|
|
26661
|
+
}
|
|
26662
|
+
|
|
26663
|
+
.cds--slug.cds--slug--enabled .cds--slug-actions .cds--btn--primary {
|
|
26664
|
+
order: 1;
|
|
26665
|
+
border-end-end-radius: 1rem;
|
|
26666
|
+
}
|
|
26667
|
+
|
|
26099
26668
|
.cds--stack-horizontal {
|
|
26100
26669
|
display: inline-grid;
|
|
26101
26670
|
column-gap: var(--cds-stack-gap, 0);
|
|
@@ -28499,7 +29068,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
28499
29068
|
}
|
|
28500
29069
|
|
|
28501
29070
|
.cds--side-nav__item--large {
|
|
28502
|
-
block-size:
|
|
29071
|
+
block-size: auto;
|
|
28503
29072
|
}
|
|
28504
29073
|
|
|
28505
29074
|
.cds--side-nav__divider {
|
|
@@ -29515,7 +30084,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
29515
30084
|
}
|
|
29516
30085
|
|
|
29517
30086
|
.cds--side-nav__item--large {
|
|
29518
|
-
block-size:
|
|
30087
|
+
block-size: auto;
|
|
29519
30088
|
}
|
|
29520
30089
|
|
|
29521
30090
|
.cds--side-nav__divider {
|
|
@@ -29961,6 +30530,9 @@ a.cds--side-nav__link--current::before {
|
|
|
29961
30530
|
}
|
|
29962
30531
|
|
|
29963
30532
|
html {
|
|
30533
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
30534
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
30535
|
+
--cds-ai-gradient-start-02: transparent;
|
|
29964
30536
|
--cds-background: #161616;
|
|
29965
30537
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
29966
30538
|
--cds-background-brand: #0f62fe;
|
|
@@ -30040,6 +30612,15 @@ html {
|
|
|
30040
30612
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
30041
30613
|
--cds-skeleton-background: #292929;
|
|
30042
30614
|
--cds-skeleton-element: #393939;
|
|
30615
|
+
--cds-slug-background: #c6c6c6;
|
|
30616
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
30617
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
30618
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
30619
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
30620
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
30621
|
+
--cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
|
|
30622
|
+
--cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
|
|
30623
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
30043
30624
|
--cds-support-caution-major: #ff832b;
|
|
30044
30625
|
--cds-support-caution-minor: #f1c21b;
|
|
30045
30626
|
--cds-support-caution-undefined: #a56eff;
|
|
@@ -30402,6 +30983,9 @@ html {
|
|
|
30402
30983
|
}
|
|
30403
30984
|
|
|
30404
30985
|
html[data-carbon-theme=white] {
|
|
30986
|
+
--cds-ai-gradient-end: rgba(255, 255, 255, 0);
|
|
30987
|
+
--cds-ai-gradient-start-01: rgba(242, 244, 248, 0.5);
|
|
30988
|
+
--cds-ai-gradient-start-02: rgba(237, 245, 255, 0.5);
|
|
30405
30989
|
--cds-background: #ffffff;
|
|
30406
30990
|
--cds-background-active: rgba(141, 141, 141, 0.5);
|
|
30407
30991
|
--cds-background-brand: #0f62fe;
|
|
@@ -30481,6 +31065,15 @@ html[data-carbon-theme=white] {
|
|
|
30481
31065
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
30482
31066
|
--cds-skeleton-background: #e8e8e8;
|
|
30483
31067
|
--cds-skeleton-element: #c6c6c6;
|
|
31068
|
+
--cds-slug-background: #525252;
|
|
31069
|
+
--cds-slug-background-hover: #6f6f6f;
|
|
31070
|
+
--cds-slug-callout-aura-end: rgba(255, 255, 255, 0);
|
|
31071
|
+
--cds-slug-callout-aura-start: rgba(237, 245, 255, 0.6);
|
|
31072
|
+
--cds-slug-callout-gradient-bottom: rgba(224, 224, 224, 0.85);
|
|
31073
|
+
--cds-slug-callout-gradient-top: rgba(244, 244, 244, 0.85);
|
|
31074
|
+
--cds-slug-gradient: #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%);
|
|
31075
|
+
--cds-slug-gradient-hover: #161616 linear-gradient(135deg, #d1d1d1 0%, rgba(255, 255, 255, 0) 100%);
|
|
31076
|
+
--cds-slug-hollow-hover: #474747;
|
|
30484
31077
|
--cds-support-caution-major: #ff832b;
|
|
30485
31078
|
--cds-support-caution-minor: #f1c21b;
|
|
30486
31079
|
--cds-support-caution-undefined: #8a3ffc;
|
|
@@ -30843,6 +31436,9 @@ html[data-carbon-theme=white] {
|
|
|
30843
31436
|
}
|
|
30844
31437
|
|
|
30845
31438
|
html[data-carbon-theme=g10] {
|
|
31439
|
+
--cds-ai-gradient-end: rgba(255, 255, 255, 0);
|
|
31440
|
+
--cds-ai-gradient-start-01: rgba(242, 244, 248, 0.5);
|
|
31441
|
+
--cds-ai-gradient-start-02: rgba(237, 245, 255, 0.5);
|
|
30846
31442
|
--cds-background: #f4f4f4;
|
|
30847
31443
|
--cds-background-active: rgba(141, 141, 141, 0.5);
|
|
30848
31444
|
--cds-background-brand: #0f62fe;
|
|
@@ -30922,6 +31518,15 @@ html[data-carbon-theme=g10] {
|
|
|
30922
31518
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
30923
31519
|
--cds-skeleton-background: #e8e8e8;
|
|
30924
31520
|
--cds-skeleton-element: #c6c6c6;
|
|
31521
|
+
--cds-slug-background: #525252;
|
|
31522
|
+
--cds-slug-background-hover: #6f6f6f;
|
|
31523
|
+
--cds-slug-callout-aura-end: rgba(255, 255, 255, 0);
|
|
31524
|
+
--cds-slug-callout-aura-start: rgba(237, 245, 255, 0.6);
|
|
31525
|
+
--cds-slug-callout-gradient-bottom: rgba(224, 224, 224, 0.85);
|
|
31526
|
+
--cds-slug-callout-gradient-top: rgba(244, 244, 244, 0.85);
|
|
31527
|
+
--cds-slug-gradient: #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%);
|
|
31528
|
+
--cds-slug-gradient-hover: #161616 linear-gradient(135deg, #d1d1d1 0%, rgba(255, 255, 255, 0) 100%);
|
|
31529
|
+
--cds-slug-hollow-hover: #474747;
|
|
30925
31530
|
--cds-support-caution-major: #ff832b;
|
|
30926
31531
|
--cds-support-caution-minor: #f1c21b;
|
|
30927
31532
|
--cds-support-caution-undefined: #8a3ffc;
|
|
@@ -31284,6 +31889,9 @@ html[data-carbon-theme=g10] {
|
|
|
31284
31889
|
}
|
|
31285
31890
|
|
|
31286
31891
|
html[data-carbon-theme=g90] {
|
|
31892
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
31893
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
31894
|
+
--cds-ai-gradient-start-02: transparent;
|
|
31287
31895
|
--cds-background: #262626;
|
|
31288
31896
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
31289
31897
|
--cds-background-brand: #0f62fe;
|
|
@@ -31363,6 +31971,15 @@ html[data-carbon-theme=g90] {
|
|
|
31363
31971
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
31364
31972
|
--cds-skeleton-background: #333333;
|
|
31365
31973
|
--cds-skeleton-element: #525252;
|
|
31974
|
+
--cds-slug-background: #c6c6c6;
|
|
31975
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
31976
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
31977
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
31978
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
31979
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
31980
|
+
--cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
|
|
31981
|
+
--cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
|
|
31982
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
31366
31983
|
--cds-support-caution-major: #ff832b;
|
|
31367
31984
|
--cds-support-caution-minor: #f1c21b;
|
|
31368
31985
|
--cds-support-caution-undefined: #a56eff;
|
|
@@ -31725,6 +32342,9 @@ html[data-carbon-theme=g90] {
|
|
|
31725
32342
|
}
|
|
31726
32343
|
|
|
31727
32344
|
html[data-carbon-theme=g100] {
|
|
32345
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
32346
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
32347
|
+
--cds-ai-gradient-start-02: transparent;
|
|
31728
32348
|
--cds-background: #161616;
|
|
31729
32349
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
31730
32350
|
--cds-background-brand: #0f62fe;
|
|
@@ -31804,6 +32424,15 @@ html[data-carbon-theme=g100] {
|
|
|
31804
32424
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
31805
32425
|
--cds-skeleton-background: #292929;
|
|
31806
32426
|
--cds-skeleton-element: #393939;
|
|
32427
|
+
--cds-slug-background: #c6c6c6;
|
|
32428
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
32429
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
32430
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
32431
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
32432
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
32433
|
+
--cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
|
|
32434
|
+
--cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
|
|
32435
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
31807
32436
|
--cds-support-caution-major: #ff832b;
|
|
31808
32437
|
--cds-support-caution-minor: #f1c21b;
|
|
31809
32438
|
--cds-support-caution-undefined: #a56eff;
|