@carbon/styles 1.81.0 → 1.82.0
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/css/styles.css +323 -43
- package/css/styles.min.css +1 -1
- package/package.json +3 -3
- package/scss/__tests__/theme-test.js +4 -0
- package/scss/_layer.scss +7 -0
- package/scss/_zone.scss +3 -1
- package/scss/components/breadcrumb/_breadcrumb.scss +5 -0
- package/scss/components/content-switcher/_content-switcher.scss +424 -54
- package/scss/components/content-switcher/_index.scss +6 -1
- package/scss/components/content-switcher/_tokens.scss +110 -0
- package/scss/components/modal/_modal.scss +2 -0
- package/scss/components/slider/_slider.scss +1 -0
- package/scss/components/text-area/_text-area.scss +1 -0
- package/scss/components/text-input/_text-input.scss +1 -0
- package/scss/components/tooltip/_tooltip.scss +2 -1
- package/scss/layer/_layer-sets.scss +5 -0
- package/scss/theme/_theme.scss +1 -0
package/css/styles.css
CHANGED
|
@@ -2548,6 +2548,7 @@ em {
|
|
|
2548
2548
|
:root {
|
|
2549
2549
|
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
2550
2550
|
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
2551
|
+
--cds-layer-background: var(--cds-layer-background-01, #ffffff);
|
|
2551
2552
|
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
2552
2553
|
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
2553
2554
|
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
@@ -2565,6 +2566,7 @@ em {
|
|
|
2565
2566
|
.cds--layer-one {
|
|
2566
2567
|
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
2567
2568
|
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
2569
|
+
--cds-layer-background: var(--cds-layer-background-01, #ffffff);
|
|
2568
2570
|
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
2569
2571
|
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
2570
2572
|
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
@@ -2582,6 +2584,7 @@ em {
|
|
|
2582
2584
|
.cds--layer-two {
|
|
2583
2585
|
--cds-layer: var(--cds-layer-02, #ffffff);
|
|
2584
2586
|
--cds-layer-active: var(--cds-layer-active-02, #c6c6c6);
|
|
2587
|
+
--cds-layer-background: var(--cds-layer-background-02, #f4f4f4);
|
|
2585
2588
|
--cds-layer-hover: var(--cds-layer-hover-02, #e8e8e8);
|
|
2586
2589
|
--cds-layer-selected: var(--cds-layer-selected-02, #e0e0e0);
|
|
2587
2590
|
--cds-layer-selected-hover: var(--cds-layer-selected-hover-02, #d1d1d1);
|
|
@@ -2599,6 +2602,7 @@ em {
|
|
|
2599
2602
|
.cds--layer-three {
|
|
2600
2603
|
--cds-layer: var(--cds-layer-03, #f4f4f4);
|
|
2601
2604
|
--cds-layer-active: var(--cds-layer-active-03, #c6c6c6);
|
|
2605
|
+
--cds-layer-background: var(--cds-layer-background-03, #ffffff);
|
|
2602
2606
|
--cds-layer-hover: var(--cds-layer-hover-03, #e8e8e8);
|
|
2603
2607
|
--cds-layer-selected: var(--cds-layer-selected-03, #e0e0e0);
|
|
2604
2608
|
--cds-layer-selected-hover: var(--cds-layer-selected-hover-03, #d1d1d1);
|
|
@@ -2613,6 +2617,18 @@ em {
|
|
|
2613
2617
|
--cds-border-tile: var(--cds-border-tile-03, #c6c6c6);
|
|
2614
2618
|
}
|
|
2615
2619
|
|
|
2620
|
+
.cds--layer-one.cds--layer__with-background {
|
|
2621
|
+
background-color: var(--cds-layer-background);
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
.cds--layer-two.cds--layer__with-background {
|
|
2625
|
+
background-color: var(--cds-layer-background);
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
.cds--layer-three.cds--layer__with-background {
|
|
2629
|
+
background-color: var(--cds-layer-background);
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2616
2632
|
.cds--layout--size-xs {
|
|
2617
2633
|
--cds-layout-size-height-context: var(--cds-layout-size-height-xs, 1.5rem);
|
|
2618
2634
|
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
@@ -2862,6 +2878,9 @@ em {
|
|
|
2862
2878
|
--cds-layer-active-01: #c6c6c6;
|
|
2863
2879
|
--cds-layer-active-02: #c6c6c6;
|
|
2864
2880
|
--cds-layer-active-03: #c6c6c6;
|
|
2881
|
+
--cds-layer-background-01: #ffffff;
|
|
2882
|
+
--cds-layer-background-02: #f4f4f4;
|
|
2883
|
+
--cds-layer-background-03: #ffffff;
|
|
2865
2884
|
--cds-layer-hover-01: #e8e8e8;
|
|
2866
2885
|
--cds-layer-hover-02: #e8e8e8;
|
|
2867
2886
|
--cds-layer-hover-03: #e8e8e8;
|
|
@@ -2908,6 +2927,7 @@ em {
|
|
|
2908
2927
|
--cds-toggle-off: #8d8d8d;
|
|
2909
2928
|
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
2910
2929
|
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
2930
|
+
--cds-layer-background: var(--cds-layer-background-01, #ffffff);
|
|
2911
2931
|
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
2912
2932
|
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
2913
2933
|
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
@@ -2994,6 +3014,9 @@ em {
|
|
|
2994
3014
|
--cds-status-blue: #0043ce;
|
|
2995
3015
|
--cds-status-purple: #8a3ffc;
|
|
2996
3016
|
--cds-status-gray: #6f6f6f;
|
|
3017
|
+
--cds-content-switcher-background: #e0e0e0;
|
|
3018
|
+
--cds-content-switcher-background-hover: #d1d1d1;
|
|
3019
|
+
--cds-content-switcher-selected: #ffffff;
|
|
2997
3020
|
}
|
|
2998
3021
|
|
|
2999
3022
|
.cds--g10 {
|
|
@@ -3094,6 +3117,9 @@ em {
|
|
|
3094
3117
|
--cds-layer-active-01: #c6c6c6;
|
|
3095
3118
|
--cds-layer-active-02: #c6c6c6;
|
|
3096
3119
|
--cds-layer-active-03: #c6c6c6;
|
|
3120
|
+
--cds-layer-background-01: #f4f4f4;
|
|
3121
|
+
--cds-layer-background-02: #ffffff;
|
|
3122
|
+
--cds-layer-background-03: #f4f4f4;
|
|
3097
3123
|
--cds-layer-hover-01: #e8e8e8;
|
|
3098
3124
|
--cds-layer-hover-02: #e8e8e8;
|
|
3099
3125
|
--cds-layer-hover-03: #e8e8e8;
|
|
@@ -3140,6 +3166,7 @@ em {
|
|
|
3140
3166
|
--cds-toggle-off: #8d8d8d;
|
|
3141
3167
|
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
3142
3168
|
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
3169
|
+
--cds-layer-background: var(--cds-layer-background-01, #ffffff);
|
|
3143
3170
|
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
3144
3171
|
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
3145
3172
|
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
@@ -3226,6 +3253,9 @@ em {
|
|
|
3226
3253
|
--cds-status-blue: #0043ce;
|
|
3227
3254
|
--cds-status-purple: #8a3ffc;
|
|
3228
3255
|
--cds-status-gray: #6f6f6f;
|
|
3256
|
+
--cds-content-switcher-background: #e0e0e0;
|
|
3257
|
+
--cds-content-switcher-background-hover: #d1d1d1;
|
|
3258
|
+
--cds-content-switcher-selected: #ffffff;
|
|
3229
3259
|
}
|
|
3230
3260
|
|
|
3231
3261
|
.cds--g90 {
|
|
@@ -3326,6 +3356,9 @@ em {
|
|
|
3326
3356
|
--cds-layer-active-01: #6f6f6f;
|
|
3327
3357
|
--cds-layer-active-02: #8d8d8d;
|
|
3328
3358
|
--cds-layer-active-03: #393939;
|
|
3359
|
+
--cds-layer-background-01: #262626;
|
|
3360
|
+
--cds-layer-background-02: #393939;
|
|
3361
|
+
--cds-layer-background-03: #525252;
|
|
3329
3362
|
--cds-layer-hover-01: #474747;
|
|
3330
3363
|
--cds-layer-hover-02: #636363;
|
|
3331
3364
|
--cds-layer-hover-03: #5e5e5e;
|
|
@@ -3372,6 +3405,7 @@ em {
|
|
|
3372
3405
|
--cds-toggle-off: #8d8d8d;
|
|
3373
3406
|
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
3374
3407
|
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
3408
|
+
--cds-layer-background: var(--cds-layer-background-01, #ffffff);
|
|
3375
3409
|
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
3376
3410
|
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
3377
3411
|
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
@@ -3457,6 +3491,9 @@ em {
|
|
|
3457
3491
|
--cds-status-blue: #4589ff;
|
|
3458
3492
|
--cds-status-purple: #a56eff;
|
|
3459
3493
|
--cds-status-gray: #8d8d8d;
|
|
3494
|
+
--cds-content-switcher-background: rgba(0, 0, 0, 0);
|
|
3495
|
+
--cds-content-switcher-background-hover: rgba(141, 141, 141, 0.12);
|
|
3496
|
+
--cds-content-switcher-selected: rgba(141, 141, 141, 0.24);
|
|
3460
3497
|
}
|
|
3461
3498
|
|
|
3462
3499
|
.cds--g100 {
|
|
@@ -3557,6 +3594,9 @@ em {
|
|
|
3557
3594
|
--cds-layer-active-01: #525252;
|
|
3558
3595
|
--cds-layer-active-02: #6f6f6f;
|
|
3559
3596
|
--cds-layer-active-03: #8d8d8d;
|
|
3597
|
+
--cds-layer-background-01: #161616;
|
|
3598
|
+
--cds-layer-background-02: #262626;
|
|
3599
|
+
--cds-layer-background-03: #393939;
|
|
3560
3600
|
--cds-layer-hover-01: #333333;
|
|
3561
3601
|
--cds-layer-hover-02: #474747;
|
|
3562
3602
|
--cds-layer-hover-03: #636363;
|
|
@@ -3603,6 +3643,7 @@ em {
|
|
|
3603
3643
|
--cds-toggle-off: #6f6f6f;
|
|
3604
3644
|
--cds-layer: var(--cds-layer-01, #f4f4f4);
|
|
3605
3645
|
--cds-layer-active: var(--cds-layer-active-01, #c6c6c6);
|
|
3646
|
+
--cds-layer-background: var(--cds-layer-background-01, #ffffff);
|
|
3606
3647
|
--cds-layer-hover: var(--cds-layer-hover-01, #e8e8e8);
|
|
3607
3648
|
--cds-layer-selected: var(--cds-layer-selected-01, #e0e0e0);
|
|
3608
3649
|
--cds-layer-selected-hover: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
@@ -3688,6 +3729,9 @@ em {
|
|
|
3688
3729
|
--cds-status-blue: #4589ff;
|
|
3689
3730
|
--cds-status-purple: #a56eff;
|
|
3690
3731
|
--cds-status-gray: #8d8d8d;
|
|
3732
|
+
--cds-content-switcher-background: rgba(0, 0, 0, 0);
|
|
3733
|
+
--cds-content-switcher-background-hover: rgba(141, 141, 141, 0.12);
|
|
3734
|
+
--cds-content-switcher-selected: rgba(141, 141, 141, 0.24);
|
|
3691
3735
|
}
|
|
3692
3736
|
|
|
3693
3737
|
.cds--accordion {
|
|
@@ -4601,6 +4645,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4601
4645
|
letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
|
|
4602
4646
|
padding: var(--cds-tooltip-padding-block, 1rem) var(--cds-tooltip-padding-inline, 1rem);
|
|
4603
4647
|
max-inline-size: 18rem;
|
|
4648
|
+
overflow-wrap: break-word;
|
|
4604
4649
|
}
|
|
4605
4650
|
|
|
4606
4651
|
.cds--icon-tooltip {
|
|
@@ -6596,6 +6641,11 @@ a.cds--overflow-menu-options__btn::before {
|
|
|
6596
6641
|
margin-inline-end: 0.25rem;
|
|
6597
6642
|
}
|
|
6598
6643
|
|
|
6644
|
+
.cds--breadcrumb--sm .cds--breadcrumb-item .cds--link {
|
|
6645
|
+
justify-content: center;
|
|
6646
|
+
min-inline-size: 0.75rem;
|
|
6647
|
+
}
|
|
6648
|
+
|
|
6599
6649
|
.cds--breadcrumb-item .cds--link:visited {
|
|
6600
6650
|
color: var(--cds-link-primary, #0f62fe);
|
|
6601
6651
|
}
|
|
@@ -11206,8 +11256,15 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11206
11256
|
--cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
|
|
11207
11257
|
display: flex;
|
|
11208
11258
|
justify-content: space-evenly;
|
|
11259
|
+
border-radius: 0.25rem;
|
|
11209
11260
|
block-size: var(--cds-layout-size-height-local);
|
|
11210
11261
|
inline-size: 100%;
|
|
11262
|
+
outline: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11263
|
+
outline-offset: -0.0625rem;
|
|
11264
|
+
}
|
|
11265
|
+
|
|
11266
|
+
.cds--content-switcher:has(.cds--content-switcher-btn:disabled) {
|
|
11267
|
+
outline-color: var(--cds-border-disabled, #c6c6c6);
|
|
11211
11268
|
}
|
|
11212
11269
|
|
|
11213
11270
|
.cds--content-switcher-btn {
|
|
@@ -11229,7 +11286,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11229
11286
|
color: var(--cds-text-secondary, #525252);
|
|
11230
11287
|
text-align: start;
|
|
11231
11288
|
text-decoration: none;
|
|
11232
|
-
transition: all 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
11233
11289
|
white-space: nowrap;
|
|
11234
11290
|
}
|
|
11235
11291
|
.cds--content-switcher-btn html {
|
|
@@ -11251,6 +11307,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11251
11307
|
.cds--content-switcher-btn::after {
|
|
11252
11308
|
position: absolute;
|
|
11253
11309
|
display: block;
|
|
11310
|
+
border-radius: 0.25rem;
|
|
11254
11311
|
background-color: var(--cds-layer-selected-inverse, #161616);
|
|
11255
11312
|
block-size: 100%;
|
|
11256
11313
|
content: "";
|
|
@@ -11259,23 +11316,16 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11259
11316
|
inset-inline-start: 0;
|
|
11260
11317
|
transform: scaleY(0);
|
|
11261
11318
|
transform-origin: bottom;
|
|
11262
|
-
transition: all 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
11263
|
-
}
|
|
11264
|
-
@media (prefers-reduced-motion: reduce) {
|
|
11265
|
-
.cds--content-switcher-btn::after {
|
|
11266
|
-
transition: none;
|
|
11267
|
-
}
|
|
11268
11319
|
}
|
|
11269
11320
|
.cds--content-switcher-btn:disabled::after {
|
|
11270
11321
|
display: none;
|
|
11271
11322
|
}
|
|
11272
11323
|
.cds--content-switcher-btn:focus {
|
|
11273
|
-
|
|
11274
|
-
border-color: var(--cds-focus, #0f62fe);
|
|
11275
|
-
box-shadow: inset 0 0 0 2px var(--cds-focus, #0f62fe), inset 0 0 0 3px var(--cds-focus-inset, #ffffff);
|
|
11324
|
+
border: 0;
|
|
11276
11325
|
}
|
|
11277
11326
|
.cds--content-switcher-btn:focus::after {
|
|
11278
|
-
|
|
11327
|
+
border-radius: 0.25rem;
|
|
11328
|
+
box-shadow: inset 0 0 0 2px var(--cds-focus, #0f62fe), inset 0 0 0 3px var(--cds-focus-inset, #ffffff);
|
|
11279
11329
|
}
|
|
11280
11330
|
.cds--content-switcher-btn:hover {
|
|
11281
11331
|
color: var(--cds-text-primary, #161616);
|
|
@@ -11294,8 +11344,25 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11294
11344
|
.cds--content-switcher-btn:disabled:hover {
|
|
11295
11345
|
cursor: not-allowed;
|
|
11296
11346
|
}
|
|
11297
|
-
|
|
11298
|
-
|
|
11347
|
+
|
|
11348
|
+
.cds--content-switcher-btn:not(.cds--content-switcher--selected):focus::before {
|
|
11349
|
+
display: block;
|
|
11350
|
+
border-radius: 0.25rem;
|
|
11351
|
+
block-size: 100%;
|
|
11352
|
+
box-shadow: inset 0 0 0 0.125rem var(--cds-focus, #0f62fe);
|
|
11353
|
+
content: "";
|
|
11354
|
+
inline-size: 100%;
|
|
11355
|
+
}
|
|
11356
|
+
.cds--content-switcher-btn:not(.cds--content-switcher--selected):focus::after {
|
|
11357
|
+
background-color: var(--cds-focus-inset, #ffffff);
|
|
11358
|
+
transform: scaleY(1);
|
|
11359
|
+
}
|
|
11360
|
+
.cds--content-switcher-btn:not(.cds--content-switcher--selected):focus:hover::after {
|
|
11361
|
+
border-radius: 0;
|
|
11362
|
+
background-color: var(--cds-layer-hover);
|
|
11363
|
+
border-block-end: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11364
|
+
border-block-start: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11365
|
+
box-shadow: none;
|
|
11299
11366
|
}
|
|
11300
11367
|
|
|
11301
11368
|
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn {
|
|
@@ -11306,22 +11373,20 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11306
11373
|
|
|
11307
11374
|
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:first-child {
|
|
11308
11375
|
border-end-start-radius: 0.25rem;
|
|
11309
|
-
border-inline-start: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11310
11376
|
border-start-start-radius: 0.25rem;
|
|
11377
|
+
box-shadow: inset 0.0625rem 0 0 0 var(--cds-border-inverse, #161616);
|
|
11311
11378
|
}
|
|
11312
11379
|
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:first-child:disabled {
|
|
11313
|
-
|
|
11314
|
-
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
11380
|
+
box-shadow: none;
|
|
11315
11381
|
}
|
|
11316
11382
|
|
|
11317
11383
|
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:last-child {
|
|
11318
11384
|
border-end-end-radius: 0.25rem;
|
|
11319
|
-
border-inline-end: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11320
11385
|
border-start-end-radius: 0.25rem;
|
|
11386
|
+
box-shadow: inset -0.0625rem 0 0 0 var(--cds-border-inverse, #161616);
|
|
11321
11387
|
}
|
|
11322
11388
|
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:last-child:disabled {
|
|
11323
|
-
|
|
11324
|
-
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
11389
|
+
box-shadow: none;
|
|
11325
11390
|
}
|
|
11326
11391
|
|
|
11327
11392
|
.cds--content-switcher .cds--content-switcher-btn.cds--content-switcher--selected,
|
|
@@ -11329,6 +11394,11 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11329
11394
|
.cds--content-switcher .cds--content-switcher-btn.cds--content-switcher--selected:last-child {
|
|
11330
11395
|
border: 0;
|
|
11331
11396
|
}
|
|
11397
|
+
.cds--content-switcher .cds--content-switcher-btn.cds--content-switcher--selected:disabled::before,
|
|
11398
|
+
.cds--content-switcher .cds--content-switcher-btn.cds--content-switcher--selected:first-child:disabled::before,
|
|
11399
|
+
.cds--content-switcher .cds--content-switcher-btn.cds--content-switcher--selected:last-child:disabled::before {
|
|
11400
|
+
display: none;
|
|
11401
|
+
}
|
|
11332
11402
|
|
|
11333
11403
|
.cds--content-switcher-btn::before {
|
|
11334
11404
|
position: absolute;
|
|
@@ -11342,7 +11412,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11342
11412
|
}
|
|
11343
11413
|
|
|
11344
11414
|
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:first-of-type::before {
|
|
11345
|
-
|
|
11415
|
+
background-color: transparent;
|
|
11346
11416
|
}
|
|
11347
11417
|
|
|
11348
11418
|
.cds--content-switcher-btn:focus::before,
|
|
@@ -11366,7 +11436,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11366
11436
|
|
|
11367
11437
|
.cds--content-switcher__icon {
|
|
11368
11438
|
fill: var(--cds-icon-secondary, #525252);
|
|
11369
|
-
transition: fill 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
11370
11439
|
}
|
|
11371
11440
|
|
|
11372
11441
|
.cds--content-switcher__icon + span {
|
|
@@ -11386,13 +11455,36 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11386
11455
|
fill: var(--cds-icon-primary, #161616);
|
|
11387
11456
|
}
|
|
11388
11457
|
|
|
11458
|
+
.cds--content-switcher-btn:focus:has(+ .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover)::before,
|
|
11459
|
+
.cds--content-switcher-btn:not(.cds--content-switcher--selected):hover + .cds--content-switcher-btn:focus::before,
|
|
11460
|
+
.cds--content-switcher-btn:hover + .cds--content-switcher-btn.cds--content-switcher--selected::before,
|
|
11461
|
+
.cds--content-switcher-btn.cds--content-switcher--selected:has(+ .cds--content-switcher-btn:hover)::before {
|
|
11462
|
+
z-index: 0;
|
|
11463
|
+
border-radius: 0;
|
|
11464
|
+
block-size: 100%;
|
|
11465
|
+
border-block-end: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11466
|
+
border-block-start: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11467
|
+
box-shadow: inset 0 0 0 0.0625rem var(--cds-layer-hover);
|
|
11468
|
+
content: "";
|
|
11469
|
+
inline-size: 100%;
|
|
11470
|
+
}
|
|
11471
|
+
.cds--content-switcher-btn:focus:has(+ .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover):not(.cds--content-switcher--selected)::after,
|
|
11472
|
+
.cds--content-switcher-btn:not(.cds--content-switcher--selected):hover + .cds--content-switcher-btn:focus:not(.cds--content-switcher--selected)::after,
|
|
11473
|
+
.cds--content-switcher-btn:hover + .cds--content-switcher-btn.cds--content-switcher--selected:not(.cds--content-switcher--selected)::after,
|
|
11474
|
+
.cds--content-switcher-btn.cds--content-switcher--selected:has(+ .cds--content-switcher-btn:hover):not(.cds--content-switcher--selected)::after {
|
|
11475
|
+
background-color: var(--cds-focus-inset, #ffffff);
|
|
11476
|
+
transform: scaleY(1);
|
|
11477
|
+
}
|
|
11478
|
+
|
|
11389
11479
|
.cds--content-switcher-btn.cds--content-switcher--selected {
|
|
11390
11480
|
z-index: 3;
|
|
11391
|
-
background-color: var(--cds-layer-selected-inverse, #161616);
|
|
11392
11481
|
color: var(--cds-text-inverse, #ffffff);
|
|
11393
11482
|
}
|
|
11483
|
+
.cds--content-switcher-btn.cds--content-switcher--selected:hover {
|
|
11484
|
+
background-color: transparent;
|
|
11485
|
+
}
|
|
11394
11486
|
.cds--content-switcher-btn.cds--content-switcher--selected:disabled {
|
|
11395
|
-
background-color: var(--cds-
|
|
11487
|
+
background-color: var(--cds-button-disabled, #c6c6c6);
|
|
11396
11488
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
11397
11489
|
}
|
|
11398
11490
|
.cds--content-switcher-btn.cds--content-switcher--selected::after {
|
|
@@ -11412,28 +11504,38 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11412
11504
|
|
|
11413
11505
|
.cds--content-switcher--icon-only {
|
|
11414
11506
|
justify-content: flex-start;
|
|
11507
|
+
inline-size: -moz-fit-content;
|
|
11508
|
+
inline-size: fit-content;
|
|
11509
|
+
}
|
|
11510
|
+
|
|
11511
|
+
.cds--content-switcher--icon-only .cds--content-switcher-btn {
|
|
11512
|
+
align-items: center;
|
|
11513
|
+
padding: 0;
|
|
11514
|
+
transition: none;
|
|
11515
|
+
}
|
|
11516
|
+
.cds--content-switcher--icon-only .cds--content-switcher-btn:focus {
|
|
11517
|
+
box-shadow: none;
|
|
11518
|
+
}
|
|
11519
|
+
|
|
11520
|
+
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:first-child .cds--content-switcher-btn:first-of-type::before {
|
|
11521
|
+
background-color: transparent;
|
|
11415
11522
|
}
|
|
11416
11523
|
|
|
11417
11524
|
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:first-child .cds--content-switcher-btn {
|
|
11418
11525
|
border-end-start-radius: 0.25rem;
|
|
11419
|
-
border-inline-start: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11420
11526
|
border-start-start-radius: 0.25rem;
|
|
11421
|
-
|
|
11422
|
-
|
|
11423
|
-
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:first-child .cds--content-switcher--selected[disabled],
|
|
11424
|
-
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:last-child .cds--content-switcher--selected[disabled] {
|
|
11425
|
-
border-color: var(--cds-layer-selected-disabled, #8d8d8d);
|
|
11527
|
+
box-shadow: inset 0.0625rem 0 0 0 var(--cds-border-inverse, #161616);
|
|
11426
11528
|
}
|
|
11427
11529
|
|
|
11428
11530
|
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:last-child .cds--content-switcher-btn {
|
|
11429
11531
|
border-end-end-radius: 0.25rem;
|
|
11430
|
-
border-inline-end: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11431
11532
|
border-start-end-radius: 0.25rem;
|
|
11533
|
+
box-shadow: inset -0.0625rem 0 0 0 var(--cds-border-inverse, #161616);
|
|
11432
11534
|
}
|
|
11433
11535
|
|
|
11434
|
-
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:
|
|
11435
|
-
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:
|
|
11436
|
-
|
|
11536
|
+
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:first-child .cds--content-switcher-btn[disabled],
|
|
11537
|
+
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:last-child .cds--content-switcher-btn[disabled] {
|
|
11538
|
+
box-shadow: none;
|
|
11437
11539
|
}
|
|
11438
11540
|
|
|
11439
11541
|
.cds--content-switcher--lg .cds--content-switcher-btn {
|
|
@@ -11446,6 +11548,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11446
11548
|
}
|
|
11447
11549
|
|
|
11448
11550
|
.cds--content-switcher--icon-only .cds--content-switcher-btn svg {
|
|
11551
|
+
z-index: 1;
|
|
11449
11552
|
fill: var(--cds-icon-primary, #161616);
|
|
11450
11553
|
}
|
|
11451
11554
|
|
|
@@ -11458,23 +11561,14 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11458
11561
|
block-size: 2rem;
|
|
11459
11562
|
}
|
|
11460
11563
|
|
|
11461
|
-
.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:first-of-type .cds--content-switcher-btn::before {
|
|
11462
|
-
display: none;
|
|
11463
|
-
}
|
|
11464
|
-
|
|
11465
11564
|
.cds--content-switcher-btn:focus::before,
|
|
11466
11565
|
.cds--content-switcher-popover__wrapper:focus-within + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn::before,
|
|
11467
|
-
.cds--content-switcher-btn:
|
|
11468
|
-
.cds--content-switcher-popover__wrapper:not(.cds--content-switcher-popover--disabled):hover + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn::before,
|
|
11566
|
+
.cds--content-switcher-popover__wrapper:not(.cds--content-switcher-popover--disabled):hover + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:not(.cds--content-switcher--selected):not(:focus)::before,
|
|
11469
11567
|
.cds--content-switcher--selected::before,
|
|
11470
11568
|
.cds--content-switcher-popover--selected + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn::before {
|
|
11471
11569
|
background-color: transparent;
|
|
11472
11570
|
}
|
|
11473
11571
|
|
|
11474
|
-
.cds--content-switcher--icon-only .cds--content-switcher-btn[disabled] {
|
|
11475
|
-
border-color: var(--cds-border-inverse, #161616);
|
|
11476
|
-
}
|
|
11477
|
-
|
|
11478
11572
|
.cds--content-switcher--icon-only .cds--content-switcher-btn[disabled] svg {
|
|
11479
11573
|
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
11480
11574
|
}
|
|
@@ -11488,6 +11582,190 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11488
11582
|
background-color: var(--cds-border-subtle);
|
|
11489
11583
|
}
|
|
11490
11584
|
|
|
11585
|
+
.cds--content-switcher-popover__wrapper:has(+ .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover) .cds--content-switcher-btn:focus::before,
|
|
11586
|
+
.cds--content-switcher-popover__wrapper:not(.cds--content-switcher-popover--selected):hover + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:focus::before,
|
|
11587
|
+
.cds--content-switcher-popover__wrapper:hover + .cds--content-switcher-popover__wrapper .cds--content-switcher--selected::before,
|
|
11588
|
+
.cds--content-switcher-popover--selected:has(+ .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:hover) .cds--content-switcher-btn::before {
|
|
11589
|
+
z-index: 0;
|
|
11590
|
+
border-radius: 0;
|
|
11591
|
+
block-size: 100%;
|
|
11592
|
+
border-block-end: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11593
|
+
border-block-start: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
11594
|
+
box-shadow: inset 0 0 0 0.0625rem var(--cds-layer-hover);
|
|
11595
|
+
content: "";
|
|
11596
|
+
inline-size: 100%;
|
|
11597
|
+
}
|
|
11598
|
+
.cds--content-switcher-popover__wrapper:has(+ .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover) .cds--content-switcher-btn:focus:not(.cds--content-switcher--selected)::after,
|
|
11599
|
+
.cds--content-switcher-popover__wrapper:not(.cds--content-switcher-popover--selected):hover + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:focus:not(.cds--content-switcher--selected)::after,
|
|
11600
|
+
.cds--content-switcher-popover__wrapper:hover + .cds--content-switcher-popover__wrapper .cds--content-switcher--selected:not(.cds--content-switcher--selected)::after,
|
|
11601
|
+
.cds--content-switcher-popover--selected:has(+ .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:hover) .cds--content-switcher-btn:not(.cds--content-switcher--selected)::after {
|
|
11602
|
+
background-color: var(--cds-focus-inset, #ffffff);
|
|
11603
|
+
transform: scaleY(1);
|
|
11604
|
+
}
|
|
11605
|
+
|
|
11606
|
+
.cds--content-switcher--low-contrast {
|
|
11607
|
+
background-color: var(--cds-content-switcher-background, #e0e0e0);
|
|
11608
|
+
outline-color: var(--cds-border-strong);
|
|
11609
|
+
}
|
|
11610
|
+
|
|
11611
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn {
|
|
11612
|
+
border-color: var(--cds-border-strong);
|
|
11613
|
+
}
|
|
11614
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:hover, .cds--content-switcher--low-contrast .cds--content-switcher-btn:active {
|
|
11615
|
+
background-color: var(--cds-content-switcher-background-hover, #d1d1d1);
|
|
11616
|
+
}
|
|
11617
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn::before {
|
|
11618
|
+
background-color: var(--cds-border-strong);
|
|
11619
|
+
}
|
|
11620
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn::after {
|
|
11621
|
+
background-color: var(--cds-content-switcher-selected, #ffffff);
|
|
11622
|
+
}
|
|
11623
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:disabled {
|
|
11624
|
+
border-color: var(--cds-border-disabled, #c6c6c6);
|
|
11625
|
+
background-color: transparent;
|
|
11626
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
11627
|
+
}
|
|
11628
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:disabled:hover {
|
|
11629
|
+
cursor: not-allowed;
|
|
11630
|
+
}
|
|
11631
|
+
|
|
11632
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:not(.cds--content-switcher--selected):focus::before {
|
|
11633
|
+
background: transparent;
|
|
11634
|
+
}
|
|
11635
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:not(.cds--content-switcher--selected):focus::after {
|
|
11636
|
+
background-color: var(--cds-content-switcher-background, #e0e0e0);
|
|
11637
|
+
box-shadow: inset 0 0 0 0.125rem var(--cds-focus, #0f62fe);
|
|
11638
|
+
}
|
|
11639
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:not(.cds--content-switcher--selected):focus:hover::after {
|
|
11640
|
+
border-color: var(--cds-border-strong);
|
|
11641
|
+
background-color: var(--cds-content-switcher-background-hover, #d1d1d1);
|
|
11642
|
+
box-shadow: none;
|
|
11643
|
+
}
|
|
11644
|
+
|
|
11645
|
+
.cds--content-switcher--low-contrast:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:first-child {
|
|
11646
|
+
box-shadow: inset 0.0625rem 0 0 0 var(--cds-border-strong);
|
|
11647
|
+
}
|
|
11648
|
+
|
|
11649
|
+
.cds--content-switcher--low-contrast:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:last-child {
|
|
11650
|
+
box-shadow: inset -0.0625rem 0 0 0 var(--cds-border-strong);
|
|
11651
|
+
}
|
|
11652
|
+
|
|
11653
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:focus:has(+ .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover)::before,
|
|
11654
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover + .cds--content-switcher-btn:focus::before,
|
|
11655
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:hover + .cds--content-switcher-btn.cds--content-switcher--selected::before,
|
|
11656
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected:has(+ .cds--content-switcher-btn:hover)::before {
|
|
11657
|
+
border-color: var(--cds-border-strong);
|
|
11658
|
+
box-shadow: inset 0 0 0 0.0625rem var(--cds-content-switcher-background-hover, #d1d1d1);
|
|
11659
|
+
}
|
|
11660
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:focus:has(+ .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover):not(.cds--content-switcher--selected)::after,
|
|
11661
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover + .cds--content-switcher-btn:focus:not(.cds--content-switcher--selected)::after,
|
|
11662
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:hover + .cds--content-switcher-btn.cds--content-switcher--selected:not(.cds--content-switcher--selected)::after,
|
|
11663
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected:has(+ .cds--content-switcher-btn:hover):not(.cds--content-switcher--selected)::after {
|
|
11664
|
+
background-color: var(--cds-content-switcher-background, #e0e0e0);
|
|
11665
|
+
}
|
|
11666
|
+
|
|
11667
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected {
|
|
11668
|
+
font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
|
|
11669
|
+
font-weight: var(--cds-heading-compact-01-font-weight, 600);
|
|
11670
|
+
line-height: var(--cds-heading-compact-01-line-height, 1.28572);
|
|
11671
|
+
letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
|
|
11672
|
+
color: var(--cds-text-primary, #161616);
|
|
11673
|
+
}
|
|
11674
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected:hover {
|
|
11675
|
+
background-color: transparent;
|
|
11676
|
+
}
|
|
11677
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected::after {
|
|
11678
|
+
border-radius: 0.25rem;
|
|
11679
|
+
background-color: var(--cds-content-switcher-selected, #ffffff);
|
|
11680
|
+
box-shadow: inset 0 0 0 0.0625rem var(--cds-border-inverse, #161616);
|
|
11681
|
+
}
|
|
11682
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected:focus::after {
|
|
11683
|
+
box-shadow: inset 0 0 0 0.125rem var(--cds-focus, #0f62fe);
|
|
11684
|
+
}
|
|
11685
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected:disabled {
|
|
11686
|
+
border: 0.0625rem solid var(--cds-border-disabled, #c6c6c6);
|
|
11687
|
+
border-radius: 0.25rem;
|
|
11688
|
+
background-color: var(--cds-content-switcher-selected, #ffffff);
|
|
11689
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
11690
|
+
}
|
|
11691
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected:disabled::before {
|
|
11692
|
+
background-color: transparent;
|
|
11693
|
+
}
|
|
11694
|
+
|
|
11695
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:focus::before,
|
|
11696
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:focus + .cds--content-switcher-btn::before,
|
|
11697
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:hover::before,
|
|
11698
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:hover + .cds--content-switcher-btn::before,
|
|
11699
|
+
.cds--content-switcher--low-contrast .cds--content-switcher--selected::before,
|
|
11700
|
+
.cds--content-switcher--low-contrast .cds--content-switcher--selected + .cds--content-switcher-btn::before {
|
|
11701
|
+
background-color: transparent;
|
|
11702
|
+
}
|
|
11703
|
+
|
|
11704
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:disabled::before,
|
|
11705
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:disabled:hover + .cds--content-switcher-btn:disabled::before {
|
|
11706
|
+
background-color: var(--cds-border-disabled, #c6c6c6);
|
|
11707
|
+
}
|
|
11708
|
+
|
|
11709
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected:disabled + .cds--content-switcher-btn::before,
|
|
11710
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn.cds--content-switcher--selected:disabled:hover + .cds--content-switcher-btn::before,
|
|
11711
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:disabled:hover + .cds--content-switcher-btn.cds--content-switcher--selected::before {
|
|
11712
|
+
background-color: transparent;
|
|
11713
|
+
}
|
|
11714
|
+
|
|
11715
|
+
.cds--content-switcher--low-contrast.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:first-child .cds--content-switcher-btn:not([disabled]) {
|
|
11716
|
+
box-shadow: inset 0.0625rem 0 0 0 var(--cds-border-strong);
|
|
11717
|
+
}
|
|
11718
|
+
|
|
11719
|
+
.cds--content-switcher--low-contrast.cds--content-switcher--icon-only .cds--content-switcher-popover__wrapper:last-child .cds--content-switcher-btn:not([disabled]) {
|
|
11720
|
+
box-shadow: inset -0.0625rem 0 0 0 var(--cds-border-strong);
|
|
11721
|
+
}
|
|
11722
|
+
|
|
11723
|
+
.cds--content-switcher--low-contrast.cds--content-switcher--icon-only .cds--content-switcher-btn svg {
|
|
11724
|
+
fill: var(--cds-icon-secondary, #525252);
|
|
11725
|
+
}
|
|
11726
|
+
|
|
11727
|
+
.cds--content-switcher--low-contrast.cds--content-switcher--icon-only .cds--content-switcher-btn:hover svg {
|
|
11728
|
+
fill: var(--cds-icon-primary, #161616);
|
|
11729
|
+
}
|
|
11730
|
+
|
|
11731
|
+
.cds--content-switcher--low-contrast.cds--content-switcher--icon-only .cds--content-switcher-btn[disabled] svg {
|
|
11732
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
11733
|
+
}
|
|
11734
|
+
|
|
11735
|
+
.cds--content-switcher--low-contrast.cds--content-switcher--icon-only .cds--content-switcher-btn.cds--content-switcher--selected svg {
|
|
11736
|
+
fill: var(--cds-icon-primary, #161616);
|
|
11737
|
+
}
|
|
11738
|
+
|
|
11739
|
+
.cds--content-switcher--low-contrast.cds--content-switcher--icon-only .cds--content-switcher-btn.cds--content-switcher--selected[disabled] svg {
|
|
11740
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
11741
|
+
}
|
|
11742
|
+
|
|
11743
|
+
.cds--content-switcher--low-contrast.cds--content-switcher--icon-only .cds--content-switcher-btn.cds--content-switcher--selected:disabled {
|
|
11744
|
+
border-color: var(--cds-border-disabled, #c6c6c6);
|
|
11745
|
+
}
|
|
11746
|
+
|
|
11747
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-btn:not(.cds--content-switcher__selected-hovered):focus::before,
|
|
11748
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover__wrapper:focus-within + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn::before,
|
|
11749
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover__wrapper:not(.cds--content-switcher-popover--disabled):hover + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:not(.cds--content-switcher__selected-hovered)::before,
|
|
11750
|
+
.cds--content-switcher--low-contrast .cds--content-switcher--selected:not(.cds--content-switcher__selected-hovered)::before,
|
|
11751
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover--selected + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn::before {
|
|
11752
|
+
background-color: transparent;
|
|
11753
|
+
}
|
|
11754
|
+
|
|
11755
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover__wrapper:has(+ .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover) .cds--content-switcher-btn:focus::before,
|
|
11756
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover__wrapper:not(.cds--content-switcher-popover--selected):hover + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:focus::before,
|
|
11757
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover__wrapper:hover + .cds--content-switcher-popover__wrapper .cds--content-switcher--selected::before,
|
|
11758
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover--selected:has(+ .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:hover) .cds--content-switcher-btn::before {
|
|
11759
|
+
border-color: var(--cds-border-strong);
|
|
11760
|
+
box-shadow: inset 0 0 0 0.0625rem var(--cds-content-switcher-background-hover, #d1d1d1);
|
|
11761
|
+
}
|
|
11762
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover__wrapper:has(+ .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:not(.cds--content-switcher--selected):hover) .cds--content-switcher-btn:focus:not(.cds--content-switcher--selected)::after,
|
|
11763
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover__wrapper:not(.cds--content-switcher-popover--selected):hover + .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:focus:not(.cds--content-switcher--selected)::after,
|
|
11764
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover__wrapper:hover + .cds--content-switcher-popover__wrapper .cds--content-switcher--selected:not(.cds--content-switcher--selected)::after,
|
|
11765
|
+
.cds--content-switcher--low-contrast .cds--content-switcher-popover--selected:has(+ .cds--content-switcher-popover__wrapper .cds--content-switcher-btn:hover) .cds--content-switcher-btn:not(.cds--content-switcher--selected)::after {
|
|
11766
|
+
background-color: var(--cds-content-switcher-background, #e0e0e0);
|
|
11767
|
+
}
|
|
11768
|
+
|
|
11491
11769
|
.cds--radio-button-group {
|
|
11492
11770
|
box-sizing: border-box;
|
|
11493
11771
|
padding: 0;
|
|
@@ -19913,6 +20191,8 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19913
20191
|
grid-column: 1/-1;
|
|
19914
20192
|
grid-row: 1/1;
|
|
19915
20193
|
margin-block-end: 0.5rem;
|
|
20194
|
+
max-block-size: 50vh;
|
|
20195
|
+
overflow-y: auto;
|
|
19916
20196
|
padding-block-start: 1rem;
|
|
19917
20197
|
padding-inline: 1rem 3rem;
|
|
19918
20198
|
}
|