@carbon/styles 1.30.0 → 1.31.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 +403 -188
- package/css/styles.min.css +1 -1
- package/index.scss +1 -0
- package/package.json +10 -10
- package/scss/_layout.scss +85 -0
- package/scss/_reset.scss +9 -0
- package/scss/components/accordion/_accordion.scss +11 -20
- package/scss/components/button/_button.scss +25 -58
- package/scss/components/button/_mixins.scss +25 -4
- package/scss/components/code-snippet/_code-snippet.scss +11 -16
- package/scss/components/contained-list/_contained-list.scss +18 -34
- package/scss/components/content-switcher/_content-switcher.scss +12 -12
- package/scss/components/copy-button/_copy-button.scss +0 -2
- package/scss/components/data-table/_data-table.scss +72 -9
- package/scss/components/data-table/expandable/_data-table-expandable.scss +32 -2
- package/scss/components/data-table/sort/_data-table-sort.scss +33 -0
- package/scss/components/form/_form.scss +1 -0
- package/scss/components/menu/_menu.scss +4 -0
- package/scss/components/overflow-menu/_overflow-menu.scss +4 -0
- package/scss/components/pagination/_pagination.scss +5 -0
- package/scss/components/popover/_popover.scss +1 -0
- package/scss/components/progress-bar/_progress-bar.scss +10 -5
- package/scss/components/slider/_slider.scss +1 -1
- package/scss/components/tabs/_tabs.scss +7 -1
- package/scss/components/tag/_tag.scss +19 -12
- package/scss/components/text-input/_text-input.scss +6 -10
- package/scss/components/time-picker/_time-picker.scss +16 -0
- package/scss/components/ui-shell/header/_header.scss +4 -0
- package/scss/components/ui-shell/side-nav/_side-nav.scss +0 -3
- package/scss/utilities/_index.scss +1 -0
- package/scss/utilities/_layout.scss +134 -0
package/css/styles.css
CHANGED
|
@@ -88,6 +88,14 @@ video {
|
|
|
88
88
|
vertical-align: baseline;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
+
button,
|
|
92
|
+
select,
|
|
93
|
+
input,
|
|
94
|
+
textarea {
|
|
95
|
+
border-radius: 0;
|
|
96
|
+
font-family: inherit;
|
|
97
|
+
}
|
|
98
|
+
|
|
91
99
|
/* HTML5 display-role reset for older browsers */
|
|
92
100
|
article,
|
|
93
101
|
aside,
|
|
@@ -2604,6 +2612,157 @@ em {
|
|
|
2604
2612
|
--cds-border-tile: var(--cds-border-tile-03, #c6c6c6);
|
|
2605
2613
|
}
|
|
2606
2614
|
|
|
2615
|
+
:root {
|
|
2616
|
+
--cds-layout-size-height-xs: 1.5rem;
|
|
2617
|
+
--cds-layout-size-height-sm: 2rem;
|
|
2618
|
+
--cds-layout-size-height-md: 2.5rem;
|
|
2619
|
+
--cds-layout-size-height-lg: 3rem;
|
|
2620
|
+
--cds-layout-size-height-xl: 4rem;
|
|
2621
|
+
--cds-layout-size-height-2xl: 5rem;
|
|
2622
|
+
--cds-layout-size-height-min: 0px;
|
|
2623
|
+
--cds-layout-size-height-max: 999999999px;
|
|
2624
|
+
--cds-layout-density-padding-inline-condensed: 0.5rem;
|
|
2625
|
+
--cds-layout-density-padding-inline-normal: 1rem;
|
|
2626
|
+
--cds-layout-density-padding-inline-min: 0px;
|
|
2627
|
+
--cds-layout-density-padding-inline-max: 999999999px;
|
|
2628
|
+
}
|
|
2629
|
+
|
|
2630
|
+
.cds--layout--size-xs {
|
|
2631
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-xs, 1.5rem);
|
|
2632
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
.cds--layout-constraint--size\:default-xs {
|
|
2636
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-xs, 1.5rem));
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
.cds--layout-constraint--size\:min-xs {
|
|
2640
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-xs, 1.5rem);
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2643
|
+
.cds--layout-constraint--size\:max-xs {
|
|
2644
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-xs, 1.5rem);
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2647
|
+
.cds--layout--size-sm {
|
|
2648
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-sm, 2rem);
|
|
2649
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
.cds--layout-constraint--size\:default-sm {
|
|
2653
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-sm, 2rem));
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
.cds--layout-constraint--size\:min-sm {
|
|
2657
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-sm, 2rem);
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
.cds--layout-constraint--size\:max-sm {
|
|
2661
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-sm, 2rem);
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
.cds--layout--size-md {
|
|
2665
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-md, 2.5rem);
|
|
2666
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
.cds--layout-constraint--size\:default-md {
|
|
2670
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-md, 2.5rem));
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
.cds--layout-constraint--size\:min-md {
|
|
2674
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-md, 2.5rem);
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
.cds--layout-constraint--size\:max-md {
|
|
2678
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-md, 2.5rem);
|
|
2679
|
+
}
|
|
2680
|
+
|
|
2681
|
+
.cds--layout--size-lg {
|
|
2682
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-lg, 3rem);
|
|
2683
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
.cds--layout-constraint--size\:default-lg {
|
|
2687
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-lg, 3rem));
|
|
2688
|
+
}
|
|
2689
|
+
|
|
2690
|
+
.cds--layout-constraint--size\:min-lg {
|
|
2691
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-lg, 3rem);
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
.cds--layout-constraint--size\:max-lg {
|
|
2695
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-lg, 3rem);
|
|
2696
|
+
}
|
|
2697
|
+
|
|
2698
|
+
.cds--layout--size-xl {
|
|
2699
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-xl, 4rem);
|
|
2700
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
.cds--layout-constraint--size\:default-xl {
|
|
2704
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-xl, 4rem));
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
.cds--layout-constraint--size\:min-xl {
|
|
2708
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-xl, 4rem);
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
.cds--layout-constraint--size\:max-xl {
|
|
2712
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-xl, 4rem);
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2715
|
+
.cds--layout--size-2xl {
|
|
2716
|
+
--cds-layout-size-height-context: var(--cds-layout-size-height-2xl, 5rem);
|
|
2717
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context);
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
.cds--layout-constraint--size\:default-2xl {
|
|
2721
|
+
--cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-2xl, 5rem));
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
.cds--layout-constraint--size\:min-2xl {
|
|
2725
|
+
--cds-layout-size-height-min: var(--cds-layout-size-height-2xl, 5rem);
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
.cds--layout-constraint--size\:max-2xl {
|
|
2729
|
+
--cds-layout-size-height-max: var(--cds-layout-size-height-2xl, 5rem);
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2732
|
+
.cds--layout--density-condensed {
|
|
2733
|
+
--cds-layout-density-padding-inline-context: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
|
|
2734
|
+
--cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context);
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2737
|
+
.cds--layout-constraint--density\:default-condensed {
|
|
2738
|
+
--cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-condensed, 0.5rem));
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
.cds--layout-constraint--density\:min-condensed {
|
|
2742
|
+
--cds-layout-density-padding-inline-min: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
.cds--layout-constraint--density\:max-condensed {
|
|
2746
|
+
--cds-layout-density-padding-inline-max: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
|
|
2747
|
+
}
|
|
2748
|
+
|
|
2749
|
+
.cds--layout--density-normal {
|
|
2750
|
+
--cds-layout-density-padding-inline-context: var(--cds-layout-density-padding-inline-normal, 1rem);
|
|
2751
|
+
--cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context);
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
.cds--layout-constraint--density\:default-normal {
|
|
2755
|
+
--cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-normal, 1rem));
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2758
|
+
.cds--layout-constraint--density\:min-normal {
|
|
2759
|
+
--cds-layout-density-padding-inline-min: var(--cds-layout-density-padding-inline-normal, 1rem);
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
.cds--layout-constraint--density\:max-normal {
|
|
2763
|
+
--cds-layout-density-padding-inline-max: var(--cds-layout-density-padding-inline-normal, 1rem);
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2607
2766
|
.cds--white {
|
|
2608
2767
|
background: var(--cds-background);
|
|
2609
2768
|
color: var(--cds-text-primary);
|
|
@@ -3317,6 +3476,8 @@ em {
|
|
|
3317
3476
|
}
|
|
3318
3477
|
|
|
3319
3478
|
.cds--accordion {
|
|
3479
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
3480
|
+
--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));
|
|
3320
3481
|
box-sizing: border-box;
|
|
3321
3482
|
padding: 0;
|
|
3322
3483
|
border: 0;
|
|
@@ -3364,11 +3525,10 @@ em {
|
|
|
3364
3525
|
position: relative;
|
|
3365
3526
|
display: flex;
|
|
3366
3527
|
width: 100%;
|
|
3367
|
-
min-height:
|
|
3528
|
+
min-height: var(--cds-layout-size-height-local);
|
|
3368
3529
|
flex-direction: row-reverse;
|
|
3369
|
-
align-items:
|
|
3530
|
+
align-items: center;
|
|
3370
3531
|
justify-content: flex-start;
|
|
3371
|
-
padding: 0.625rem 0;
|
|
3372
3532
|
margin: 0;
|
|
3373
3533
|
color: var(--cds-text-primary, #161616);
|
|
3374
3534
|
cursor: pointer;
|
|
@@ -3406,16 +3566,6 @@ em {
|
|
|
3406
3566
|
}
|
|
3407
3567
|
}
|
|
3408
3568
|
|
|
3409
|
-
.cds--accordion--lg .cds--accordion__heading {
|
|
3410
|
-
min-height: 3rem;
|
|
3411
|
-
align-items: center;
|
|
3412
|
-
}
|
|
3413
|
-
|
|
3414
|
-
.cds--accordion--sm .cds--accordion__heading {
|
|
3415
|
-
min-height: 2rem;
|
|
3416
|
-
padding: 0.3125rem 0;
|
|
3417
|
-
}
|
|
3418
|
-
|
|
3419
3569
|
.cds--accordion__heading[disabled] {
|
|
3420
3570
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
3421
3571
|
cursor: not-allowed;
|
|
@@ -3444,7 +3594,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3444
3594
|
width: 1rem;
|
|
3445
3595
|
height: 1rem;
|
|
3446
3596
|
flex: 0 0 1rem;
|
|
3447
|
-
margin:
|
|
3597
|
+
margin: 0 var(--cds-layout-density-padding-inline-local) 0 0;
|
|
3448
3598
|
fill: var(--cds-icon-primary, #161616);
|
|
3449
3599
|
transform: rotate(-270deg) /*rtl:ignore*/;
|
|
3450
3600
|
transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
@@ -3458,14 +3608,13 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3458
3608
|
z-index: 1;
|
|
3459
3609
|
width: 100%;
|
|
3460
3610
|
padding-right: 1rem;
|
|
3461
|
-
margin: 0 0 0
|
|
3611
|
+
margin: 0 0 0 var(--cds-layout-density-padding-inline-local);
|
|
3462
3612
|
text-align: left;
|
|
3463
3613
|
}
|
|
3464
3614
|
|
|
3465
3615
|
.cds--accordion__content {
|
|
3466
3616
|
display: none;
|
|
3467
|
-
padding-
|
|
3468
|
-
padding-left: 1rem;
|
|
3617
|
+
padding-inline: var(--cds-layout-density-padding-inline-local);
|
|
3469
3618
|
transition: padding cubic-bezier(0.2, 0, 0.38, 0.9) 110ms;
|
|
3470
3619
|
}
|
|
3471
3620
|
@media (min-width: 480px) {
|
|
@@ -3490,7 +3639,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3490
3639
|
}
|
|
3491
3640
|
|
|
3492
3641
|
.cds--accordion--start .cds--accordion__arrow {
|
|
3493
|
-
margin: 2px 0 0
|
|
3642
|
+
margin: 2px 0 0 var(--cds-layout-density-padding-inline-local);
|
|
3494
3643
|
}
|
|
3495
3644
|
|
|
3496
3645
|
.cds--accordion--start .cds--accordion__title {
|
|
@@ -3498,7 +3647,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3498
3647
|
}
|
|
3499
3648
|
|
|
3500
3649
|
.cds--accordion--start .cds--accordion__content {
|
|
3501
|
-
margin-left:
|
|
3650
|
+
margin-left: calc(var(--cds-layout-density-padding-inline-local) + 1rem);
|
|
3502
3651
|
}
|
|
3503
3652
|
|
|
3504
3653
|
.cds--accordion__item--collapsing .cds--accordion__content,
|
|
@@ -4009,6 +4158,12 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4009
4158
|
}
|
|
4010
4159
|
|
|
4011
4160
|
.cds--btn {
|
|
4161
|
+
--cds-layout-size-height-local: clamp(var(--cds-layout-size-height-min), var(--cds-layout-size-height, var(--cds-layout-size-height-lg)), var(--cds-layout-size-height-max));
|
|
4162
|
+
--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));
|
|
4163
|
+
--temp-1lh: (var(--cds-body-compact-01-line-height) * 1em);
|
|
4164
|
+
--temp-padding-block-max: calc(
|
|
4165
|
+
(var(--cds-layout-size-height-lg) - var(--temp-1lh)) / 2 - 0.0625rem
|
|
4166
|
+
);
|
|
4012
4167
|
box-sizing: border-box;
|
|
4013
4168
|
padding: 0;
|
|
4014
4169
|
border: 0;
|
|
@@ -4025,15 +4180,19 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4025
4180
|
width: -moz-max-content;
|
|
4026
4181
|
width: max-content;
|
|
4027
4182
|
max-width: 20rem;
|
|
4028
|
-
|
|
4183
|
+
height: var(--cds-layout-size-height-local);
|
|
4029
4184
|
flex-shrink: 0;
|
|
4030
|
-
align-items: center;
|
|
4031
4185
|
justify-content: space-between;
|
|
4032
|
-
padding: calc(0.875rem - 3px) calc(4rem - 1px) calc(0.875rem - 3px) calc(1rem - 1px);
|
|
4033
4186
|
margin: 0;
|
|
4034
4187
|
border-radius: 0;
|
|
4035
4188
|
cursor: pointer;
|
|
4036
4189
|
outline: none;
|
|
4190
|
+
-webkit-padding-before: min((var(--cds-layout-size-height-local) - var(--temp-1lh)) / 2 - 0.0625rem, var(--temp-padding-block-max));
|
|
4191
|
+
padding-block-start: min((var(--cds-layout-size-height-local) - var(--temp-1lh)) / 2 - 0.0625rem, var(--temp-padding-block-max));
|
|
4192
|
+
-webkit-padding-end: calc(var(--cds-layout-density-padding-inline-local) * 3 + 1rem - 0.0625rem);
|
|
4193
|
+
padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) * 3 + 1rem - 0.0625rem);
|
|
4194
|
+
-webkit-padding-start: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
4195
|
+
padding-inline-start: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
4037
4196
|
text-align: left;
|
|
4038
4197
|
text-decoration: none;
|
|
4039
4198
|
transition: background 70ms cubic-bezier(0, 0, 0.38, 0.9), box-shadow 70ms cubic-bezier(0, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0, 0, 0.38, 0.9), outline 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
@@ -4053,10 +4212,13 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4053
4212
|
}
|
|
4054
4213
|
.cds--btn .cds--btn__icon {
|
|
4055
4214
|
position: absolute;
|
|
4056
|
-
|
|
4215
|
+
top: min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));
|
|
4216
|
+
right: var(--cds-layout-density-padding-inline-local);
|
|
4057
4217
|
width: 1rem;
|
|
4058
4218
|
height: 1rem;
|
|
4059
4219
|
flex-shrink: 0;
|
|
4220
|
+
-webkit-margin-before: 0.0625rem;
|
|
4221
|
+
margin-block-start: 0.0625rem;
|
|
4060
4222
|
}
|
|
4061
4223
|
|
|
4062
4224
|
.cds--btn::-moz-focus-inner {
|
|
@@ -4159,7 +4321,8 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4159
4321
|
border-color: transparent;
|
|
4160
4322
|
background-color: transparent;
|
|
4161
4323
|
color: var(--cds-link-primary, #0f62fe);
|
|
4162
|
-
padding: calc(
|
|
4324
|
+
-webkit-padding-end: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
4325
|
+
padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
4163
4326
|
}
|
|
4164
4327
|
.cds--btn--ghost:hover {
|
|
4165
4328
|
background-color: var(--cds-layer-hover);
|
|
@@ -4191,19 +4354,21 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4191
4354
|
color: var(--cds-text-on-color-disabled, #8d8d8d);
|
|
4192
4355
|
outline: none;
|
|
4193
4356
|
}
|
|
4194
|
-
.cds--btn--ghost.cds--btn--sm {
|
|
4195
|
-
padding: calc(0.375rem - 3px) 1rem;
|
|
4196
|
-
}
|
|
4197
|
-
.cds--btn--ghost.cds--btn--field, .cds--btn--ghost.cds--btn--md {
|
|
4198
|
-
padding: calc(0.675rem - 3px) 1rem;
|
|
4199
|
-
}
|
|
4200
4357
|
.cds--btn--ghost:not([disabled]) svg {
|
|
4201
4358
|
fill: var(--cds-icon-primary, #161616);
|
|
4202
4359
|
}
|
|
4203
4360
|
|
|
4204
4361
|
.cds--btn--icon-only {
|
|
4205
|
-
|
|
4206
|
-
|
|
4362
|
+
width: var(--cds-layout-size-height-local);
|
|
4363
|
+
height: var(--cds-layout-size-height-local);
|
|
4364
|
+
justify-content: center;
|
|
4365
|
+
padding: 0;
|
|
4366
|
+
-webkit-padding-before: min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));
|
|
4367
|
+
padding-block-start: min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));
|
|
4368
|
+
}
|
|
4369
|
+
.cds--btn--icon-only > :first-child {
|
|
4370
|
+
-webkit-margin-before: 0.0625rem;
|
|
4371
|
+
margin-block-start: 0.0625rem;
|
|
4207
4372
|
}
|
|
4208
4373
|
.cds--btn--icon-only .cds--btn__icon {
|
|
4209
4374
|
position: static;
|
|
@@ -4235,15 +4400,12 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4235
4400
|
cursor: not-allowed;
|
|
4236
4401
|
}
|
|
4237
4402
|
|
|
4238
|
-
.cds--
|
|
4239
|
-
|
|
4240
|
-
padding-right: 0.6875rem;
|
|
4241
|
-
padding-left: 0.6875rem;
|
|
4403
|
+
.cds--icon-tooltip--disabled .cds--tooltip-trigger__wrapper {
|
|
4404
|
+
cursor: not-allowed;
|
|
4242
4405
|
}
|
|
4243
4406
|
|
|
4244
|
-
.cds--
|
|
4245
|
-
|
|
4246
|
-
padding-left: 0.4375rem;
|
|
4407
|
+
.cds--icon-tooltip--disabled .cds--btn--icon-only[disabled] {
|
|
4408
|
+
pointer-events: none;
|
|
4247
4409
|
}
|
|
4248
4410
|
|
|
4249
4411
|
.cds--btn--danger {
|
|
@@ -4315,7 +4477,8 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4315
4477
|
border-color: transparent;
|
|
4316
4478
|
background-color: transparent;
|
|
4317
4479
|
color: var(--cds-button-danger-secondary, #da1e28);
|
|
4318
|
-
padding: calc(
|
|
4480
|
+
-webkit-padding-end: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
4481
|
+
padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
|
|
4319
4482
|
}
|
|
4320
4483
|
.cds--btn--danger--ghost:hover {
|
|
4321
4484
|
background-color: var(--cds-button-danger-hover, #b81921);
|
|
@@ -4344,46 +4507,12 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4344
4507
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
4345
4508
|
outline: none;
|
|
4346
4509
|
}
|
|
4347
|
-
.cds--btn--danger--ghost.cds--btn--sm {
|
|
4348
|
-
padding: calc(0.375rem - 3px) 1rem;
|
|
4349
|
-
}
|
|
4350
|
-
.cds--btn--danger--ghost.cds--btn--field, .cds--btn--danger--ghost.cds--btn--md {
|
|
4351
|
-
padding: calc(0.675rem - 3px) 1rem;
|
|
4352
|
-
}
|
|
4353
|
-
|
|
4354
|
-
.cds--btn--sm {
|
|
4355
|
-
min-height: 2rem;
|
|
4356
|
-
padding: calc(0.375rem - 3px) calc(4rem - 4px) calc(0.375rem - 3px) calc(1rem - 4px);
|
|
4357
|
-
}
|
|
4358
|
-
|
|
4359
|
-
.cds--btn--2xl:not(.cds--btn--icon-only) {
|
|
4360
|
-
align-items: baseline;
|
|
4361
|
-
padding-top: 1rem;
|
|
4362
|
-
padding-right: 4rem;
|
|
4363
|
-
padding-left: 1rem;
|
|
4364
|
-
min-height: 5rem;
|
|
4365
|
-
}
|
|
4366
|
-
|
|
4367
|
-
.cds--btn--xl:not(.cds--btn--icon-only) {
|
|
4368
|
-
align-items: baseline;
|
|
4369
|
-
padding-top: 1rem;
|
|
4370
|
-
padding-right: 4rem;
|
|
4371
|
-
padding-left: 1rem;
|
|
4372
|
-
min-height: 4rem;
|
|
4373
|
-
}
|
|
4374
|
-
|
|
4375
|
-
.cds--btn--field,
|
|
4376
|
-
.cds--btn--md {
|
|
4377
|
-
min-height: 2.5rem;
|
|
4378
|
-
padding: calc(0.675rem - 3px) calc(4rem - 4px) calc(0.675rem - 3px) calc(1rem - 4px);
|
|
4379
|
-
}
|
|
4380
4510
|
|
|
4381
4511
|
.cds--btn--expressive {
|
|
4382
4512
|
font-size: var(--cds-body-compact-02-font-size, 1rem);
|
|
4383
4513
|
font-weight: var(--cds-body-compact-02-font-weight, 400);
|
|
4384
4514
|
line-height: var(--cds-body-compact-02-line-height, 1.375);
|
|
4385
4515
|
letter-spacing: var(--cds-body-compact-02-letter-spacing, 0);
|
|
4386
|
-
min-height: 3rem;
|
|
4387
4516
|
}
|
|
4388
4517
|
|
|
4389
4518
|
.cds--btn--icon-only.cds--btn--expressive {
|
|
@@ -4686,6 +4815,7 @@ input[data-invalid] ~ .cds--form-requirement,
|
|
|
4686
4815
|
.cds--date-picker-input__wrapper--warn ~ .cds--form-requirement,
|
|
4687
4816
|
.cds--date-picker-input__wrapper--invalid ~ .cds--form-requirement,
|
|
4688
4817
|
.cds--time-picker--invalid ~ .cds--form-requirement,
|
|
4818
|
+
.cds--time-picker--warning ~ .cds--form-requirement,
|
|
4689
4819
|
.cds--text-input__field-wrapper[data-invalid] ~ .cds--form-requirement,
|
|
4690
4820
|
.cds--text-input__field-wrapper--warning ~ .cds--form-requirement,
|
|
4691
4821
|
.cds--text-input__field-wrapper--warning > .cds--text-input ~ .cds--form-requirement,
|
|
@@ -5081,8 +5211,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5081
5211
|
.cds--copy-btn {
|
|
5082
5212
|
position: relative;
|
|
5083
5213
|
display: flex;
|
|
5084
|
-
width: 2.5rem;
|
|
5085
|
-
height: 2.5rem;
|
|
5086
5214
|
align-items: center;
|
|
5087
5215
|
justify-content: center;
|
|
5088
5216
|
padding: 0;
|
|
@@ -5494,11 +5622,14 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5494
5622
|
transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
5495
5623
|
}
|
|
5496
5624
|
|
|
5625
|
+
.cds--btn > .cds--snippet__icon {
|
|
5626
|
+
-webkit-margin-before: 0;
|
|
5627
|
+
margin-block-start: 0;
|
|
5628
|
+
}
|
|
5629
|
+
|
|
5497
5630
|
.cds--copy-btn {
|
|
5498
5631
|
display: flex;
|
|
5499
5632
|
overflow: visible;
|
|
5500
|
-
width: 2.5rem;
|
|
5501
|
-
height: 2.5rem;
|
|
5502
5633
|
align-items: center;
|
|
5503
5634
|
justify-content: center;
|
|
5504
5635
|
padding: 0;
|
|
@@ -5541,16 +5672,13 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5541
5672
|
right: 0;
|
|
5542
5673
|
}
|
|
5543
5674
|
|
|
5544
|
-
.cds--snippet--inline.cds--btn
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
.cds--snippet--inline.cds--btn--md {
|
|
5550
|
-
min-height: 1.25rem;
|
|
5675
|
+
.cds--snippet--inline.cds--btn {
|
|
5676
|
+
width: initial;
|
|
5677
|
+
height: 1.25rem;
|
|
5678
|
+
padding-inline: 0;
|
|
5551
5679
|
}
|
|
5552
5680
|
|
|
5553
|
-
.cds--snippet--inline.cds--btn--primary:hover {
|
|
5681
|
+
.cds--snippet--inline.cds--btn.cds--btn--primary:hover {
|
|
5554
5682
|
color: var(--cds-text-primary, #161616);
|
|
5555
5683
|
}
|
|
5556
5684
|
|
|
@@ -5559,12 +5687,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5559
5687
|
right: 0.5rem;
|
|
5560
5688
|
}
|
|
5561
5689
|
|
|
5562
|
-
.cds--snippet--multi .cds--copy-btn
|
|
5690
|
+
.cds--snippet--multi .cds--copy-btn {
|
|
5563
5691
|
z-index: 10;
|
|
5564
|
-
width: 2rem;
|
|
5565
|
-
height: 2rem;
|
|
5566
|
-
min-height: 2rem;
|
|
5567
|
-
padding: 0;
|
|
5568
5692
|
}
|
|
5569
5693
|
|
|
5570
5694
|
.cds--snippet-btn--expand {
|
|
@@ -5815,6 +5939,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5815
5939
|
|
|
5816
5940
|
/* stylelint-enable */
|
|
5817
5941
|
.cds--text-input {
|
|
5942
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
5943
|
+
--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));
|
|
5818
5944
|
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
5819
5945
|
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
5820
5946
|
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
@@ -5822,8 +5948,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5822
5948
|
outline: 2px solid transparent;
|
|
5823
5949
|
outline-offset: -2px;
|
|
5824
5950
|
width: 100%;
|
|
5825
|
-
height:
|
|
5826
|
-
padding: 0
|
|
5951
|
+
height: var(--cds-layout-size-height-local);
|
|
5952
|
+
padding: 0 var(--cds-layout-density-padding-inline-local);
|
|
5827
5953
|
border: none;
|
|
5828
5954
|
border-bottom: 1px solid var(--cds-border-strong);
|
|
5829
5955
|
background-color: var(--cds-field);
|
|
@@ -5860,14 +5986,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5860
5986
|
display: none;
|
|
5861
5987
|
}
|
|
5862
5988
|
|
|
5863
|
-
.cds--text-input--lg {
|
|
5864
|
-
height: 3rem;
|
|
5865
|
-
}
|
|
5866
|
-
|
|
5867
|
-
.cds--text-input--sm {
|
|
5868
|
-
height: 2rem;
|
|
5869
|
-
}
|
|
5870
|
-
|
|
5871
5989
|
.cds--password-input {
|
|
5872
5990
|
padding-right: 2.5rem;
|
|
5873
5991
|
}
|
|
@@ -6422,6 +6540,10 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6422
6540
|
}
|
|
6423
6541
|
|
|
6424
6542
|
.cds--tag {
|
|
6543
|
+
--cds-layout-size-height-xs: 1.125rem;
|
|
6544
|
+
--cds-layout-size-height-sm: 1.125rem;
|
|
6545
|
+
--cds-layout-size-height-md: 1.5rem;
|
|
6546
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-md)));
|
|
6425
6547
|
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
6426
6548
|
font-weight: var(--cds-label-01-font-weight, 400);
|
|
6427
6549
|
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
@@ -6431,16 +6553,25 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6431
6553
|
display: inline-flex;
|
|
6432
6554
|
min-width: 2rem;
|
|
6433
6555
|
max-width: 100%;
|
|
6434
|
-
min-height:
|
|
6556
|
+
min-height: var(--cds-layout-size-height-local);
|
|
6435
6557
|
align-items: center;
|
|
6436
6558
|
justify-content: center;
|
|
6437
|
-
padding: 0.25rem 0.5rem;
|
|
6438
6559
|
margin: 0.25rem;
|
|
6439
6560
|
border-radius: 0.9375rem;
|
|
6440
6561
|
cursor: default;
|
|
6562
|
+
padding-inline: 0.5rem;
|
|
6441
6563
|
vertical-align: middle;
|
|
6442
6564
|
word-break: break-word;
|
|
6443
6565
|
}
|
|
6566
|
+
.cds--layout--size-xs .cds--tag {
|
|
6567
|
+
--cds-layout-size-height: var(--cds-layout-size-height-xs);
|
|
6568
|
+
}
|
|
6569
|
+
.cds--layout--size-sm .cds--tag {
|
|
6570
|
+
--cds-layout-size-height: var(--cds-layout-size-height-sm);
|
|
6571
|
+
}
|
|
6572
|
+
.cds--layout--size-md .cds--tag {
|
|
6573
|
+
--cds-layout-size-height: var(--cds-layout-size-height-md);
|
|
6574
|
+
}
|
|
6444
6575
|
.cds--tag.cds--tag--interactive:hover,
|
|
6445
6576
|
.cds--tag .cds--tag__close-icon:hover {
|
|
6446
6577
|
background-color: var(--cds-tag-hover-gray, #c6c6c6);
|
|
@@ -6611,8 +6742,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6611
6742
|
|
|
6612
6743
|
.cds--tag__close-icon {
|
|
6613
6744
|
display: flex;
|
|
6614
|
-
width:
|
|
6615
|
-
height:
|
|
6745
|
+
width: var(--cds-layout-size-height-local);
|
|
6746
|
+
height: var(--cds-layout-size-height-local);
|
|
6616
6747
|
flex-shrink: 0;
|
|
6617
6748
|
align-items: center;
|
|
6618
6749
|
justify-content: center;
|
|
@@ -6666,18 +6797,11 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6666
6797
|
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
6667
6798
|
}
|
|
6668
6799
|
|
|
6669
|
-
.cds--tag--sm {
|
|
6670
|
-
min-height: 1.125rem;
|
|
6671
|
-
padding: 0 0.5rem;
|
|
6672
|
-
}
|
|
6673
|
-
|
|
6674
6800
|
.cds--tag--sm.cds--tag--filter {
|
|
6675
6801
|
padding-right: 0;
|
|
6676
6802
|
}
|
|
6677
6803
|
|
|
6678
6804
|
.cds--tag--sm .cds--tag__close-icon {
|
|
6679
|
-
width: 1.125rem;
|
|
6680
|
-
height: 1.125rem;
|
|
6681
6805
|
margin-left: 0.3125rem;
|
|
6682
6806
|
}
|
|
6683
6807
|
|
|
@@ -7599,13 +7723,18 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7599
7723
|
transform: rotate(180deg);
|
|
7600
7724
|
}
|
|
7601
7725
|
|
|
7726
|
+
.cds--contained-list {
|
|
7727
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-lg)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-xl)));
|
|
7728
|
+
--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));
|
|
7729
|
+
}
|
|
7730
|
+
|
|
7602
7731
|
.cds--contained-list__header {
|
|
7603
7732
|
position: sticky;
|
|
7604
7733
|
z-index: 1;
|
|
7605
7734
|
top: 0;
|
|
7606
7735
|
display: flex;
|
|
7607
7736
|
align-items: center;
|
|
7608
|
-
padding-inline:
|
|
7737
|
+
padding-inline: var(--cds-layout-density-padding-inline-local);
|
|
7609
7738
|
}
|
|
7610
7739
|
|
|
7611
7740
|
.cds--contained-list__label {
|
|
@@ -7615,7 +7744,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7615
7744
|
.cds--contained-list .cds--search {
|
|
7616
7745
|
position: sticky;
|
|
7617
7746
|
z-index: 1;
|
|
7618
|
-
top:
|
|
7747
|
+
top: var(--cds-layout-size-height-local);
|
|
7619
7748
|
}
|
|
7620
7749
|
.cds--contained-list .cds--search.cds--search--expandable .cds--search-input {
|
|
7621
7750
|
background-color: var(--cds-field);
|
|
@@ -7654,46 +7783,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7654
7783
|
outline: none;
|
|
7655
7784
|
}
|
|
7656
7785
|
|
|
7657
|
-
.cds--contained-list--on-page.cds--contained-list--sm .cds--contained-list__header {
|
|
7658
|
-
height: 2rem;
|
|
7659
|
-
}
|
|
7660
|
-
|
|
7661
|
-
.cds--contained-list--sm .cds--contained-list-item__content,
|
|
7662
|
-
.cds--contained-list--sm .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
7663
|
-
min-height: 2rem;
|
|
7664
|
-
padding: calc(0.5rem - 0.125rem) 1rem;
|
|
7665
|
-
}
|
|
7666
|
-
|
|
7667
|
-
.cds--contained-list--on-page.cds--contained-list--md .cds--contained-list__header {
|
|
7668
|
-
height: 2.5rem;
|
|
7669
|
-
}
|
|
7670
|
-
|
|
7671
|
-
.cds--contained-list--md .cds--contained-list-item__content,
|
|
7672
|
-
.cds--contained-list--md .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
7673
|
-
min-height: 2.5rem;
|
|
7674
|
-
padding: calc(0.75rem - 0.125rem) 1rem;
|
|
7675
|
-
}
|
|
7676
|
-
|
|
7677
|
-
.cds--contained-list--on-page.cds--contained-list--lg .cds--contained-list__header {
|
|
7678
|
-
height: 3rem;
|
|
7679
|
-
}
|
|
7680
|
-
|
|
7681
|
-
.cds--contained-list--lg .cds--contained-list-item__content,
|
|
7682
|
-
.cds--contained-list--lg .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
7683
|
-
min-height: 3rem;
|
|
7684
|
-
padding: calc(1rem - 0.125rem) 1rem;
|
|
7685
|
-
}
|
|
7686
|
-
|
|
7687
|
-
.cds--contained-list--on-page.cds--contained-list--xl .cds--contained-list__header {
|
|
7688
|
-
height: 4rem;
|
|
7689
|
-
}
|
|
7690
|
-
|
|
7691
|
-
.cds--contained-list--xl .cds--contained-list-item__content,
|
|
7692
|
-
.cds--contained-list--xl .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
7693
|
-
min-height: 4rem;
|
|
7694
|
-
padding: calc(1.5rem - 0.125rem) 1rem;
|
|
7695
|
-
}
|
|
7696
|
-
|
|
7697
7786
|
.cds--contained-list--on-page + .cds--contained-list--on-page {
|
|
7698
7787
|
-webkit-margin-before: 1rem;
|
|
7699
7788
|
margin-block-start: 1rem;
|
|
@@ -7704,6 +7793,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7704
7793
|
font-weight: var(--cds-heading-compact-01-font-weight, 600);
|
|
7705
7794
|
line-height: var(--cds-heading-compact-01-line-height, 1.28572);
|
|
7706
7795
|
letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
|
|
7796
|
+
height: var(--cds-layout-size-height-local);
|
|
7707
7797
|
border-bottom: 1px solid var(--cds-border-subtle);
|
|
7708
7798
|
background-color: var(--cds-background, #ffffff);
|
|
7709
7799
|
color: var(--cds-text-primary, #161616);
|
|
@@ -7767,10 +7857,13 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7767
7857
|
|
|
7768
7858
|
.cds--contained-list-item__content,
|
|
7769
7859
|
.cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
7860
|
+
--temp-1lh: (var(--cds-body-01-line-height) * 1em);
|
|
7770
7861
|
font-size: var(--cds-body-01-font-size, 0.875rem);
|
|
7771
7862
|
font-weight: var(--cds-body-01-font-weight, 400);
|
|
7772
7863
|
line-height: var(--cds-body-01-line-height, 1.42857);
|
|
7773
7864
|
letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
|
|
7865
|
+
min-height: var(--cds-layout-size-height-local);
|
|
7866
|
+
padding: calc((var(--cds-layout-size-height-local) - var(--temp-1lh)) / 2) var(--cds-layout-density-padding-inline-local);
|
|
7774
7867
|
color: var(--cds-text-primary, #161616);
|
|
7775
7868
|
}
|
|
7776
7869
|
|
|
@@ -7785,8 +7878,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7785
7878
|
}
|
|
7786
7879
|
|
|
7787
7880
|
.cds--contained-list--inset-rulers .cds--contained-list-item:not(:last-of-type)::before {
|
|
7788
|
-
right:
|
|
7789
|
-
left:
|
|
7881
|
+
right: var(--cds-layout-density-padding-inline-local);
|
|
7882
|
+
left: var(--cds-layout-density-padding-inline-local);
|
|
7790
7883
|
}
|
|
7791
7884
|
|
|
7792
7885
|
.cds--contained-list-item--clickable .cds--contained-list-item__content:not(:disabled):hover {
|
|
@@ -7856,20 +7949,14 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7856
7949
|
}
|
|
7857
7950
|
|
|
7858
7951
|
.cds--content-switcher {
|
|
7952
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
7953
|
+
--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));
|
|
7859
7954
|
display: flex;
|
|
7860
7955
|
width: 100%;
|
|
7861
|
-
height:
|
|
7956
|
+
height: var(--cds-layout-size-height-local);
|
|
7862
7957
|
justify-content: space-evenly;
|
|
7863
7958
|
}
|
|
7864
7959
|
|
|
7865
|
-
.cds--content-switcher--sm {
|
|
7866
|
-
height: 2rem;
|
|
7867
|
-
}
|
|
7868
|
-
|
|
7869
|
-
.cds--content-switcher--lg {
|
|
7870
|
-
height: 3rem;
|
|
7871
|
-
}
|
|
7872
|
-
|
|
7873
7960
|
.cds--content-switcher-btn {
|
|
7874
7961
|
font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;
|
|
7875
7962
|
outline: 2px solid transparent;
|
|
@@ -7881,9 +7968,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7881
7968
|
position: relative;
|
|
7882
7969
|
display: inline-flex;
|
|
7883
7970
|
overflow: hidden;
|
|
7884
|
-
width: 100%;
|
|
7885
|
-
align-items: center;
|
|
7886
|
-
padding: 0.5rem 1rem;
|
|
7887
7971
|
border: none;
|
|
7888
7972
|
border-top: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
7889
7973
|
border-bottom: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
@@ -7962,6 +8046,12 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7962
8046
|
border-color: var(--cds-border-disabled, #c6c6c6);
|
|
7963
8047
|
}
|
|
7964
8048
|
|
|
8049
|
+
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn {
|
|
8050
|
+
width: 100%;
|
|
8051
|
+
align-items: center;
|
|
8052
|
+
padding: 0.5rem var(--cds-layout-density-padding-inline-local);
|
|
8053
|
+
}
|
|
8054
|
+
|
|
7965
8055
|
.cds--content-switcher:not(.cds--content-switcher--icon-only) .cds--content-switcher-btn:first-child {
|
|
7966
8056
|
border-left: 0.0625rem solid var(--cds-border-inverse, #161616);
|
|
7967
8057
|
border-bottom-left-radius: 0.25rem;
|
|
@@ -8249,6 +8339,34 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8249
8339
|
vertical-align: middle;
|
|
8250
8340
|
}
|
|
8251
8341
|
|
|
8342
|
+
.cds--data-table.cds--data-table--top-aligned-body.cds--data-table--lg tr:not([data-child-row]) td:not(.cds--table-expand) {
|
|
8343
|
+
padding-top: 1rem;
|
|
8344
|
+
padding-bottom: 1rem;
|
|
8345
|
+
}
|
|
8346
|
+
.cds--data-table.cds--data-table--top-aligned-body.cds--data-table--lg tr:not([data-child-row]) td:not(.cds--table-expand).cds--table-column-menu {
|
|
8347
|
+
padding-top: 0.5rem;
|
|
8348
|
+
}
|
|
8349
|
+
.cds--data-table.cds--data-table--top-aligned-body.cds--data-table--lg tr:not([data-child-row]) td:not(.cds--table-expand).cds--table-column-checkbox:not(.cds--table-column-radio) {
|
|
8350
|
+
padding-top: 0.8125rem;
|
|
8351
|
+
}
|
|
8352
|
+
.cds--data-table.cds--data-table--top-aligned-body td {
|
|
8353
|
+
vertical-align: top;
|
|
8354
|
+
}
|
|
8355
|
+
|
|
8356
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--lg th:not(.cds--table-expand):not(.cds--table-sort__header) {
|
|
8357
|
+
padding-top: 1rem;
|
|
8358
|
+
padding-bottom: 1rem;
|
|
8359
|
+
}
|
|
8360
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--lg th:not(.cds--table-expand):not(.cds--table-sort__header).cds--table-column-menu {
|
|
8361
|
+
padding-top: 0.5rem;
|
|
8362
|
+
}
|
|
8363
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--lg th:not(.cds--table-expand):not(.cds--table-sort__header).cds--table-column-checkbox {
|
|
8364
|
+
padding-top: 0.8125rem;
|
|
8365
|
+
}
|
|
8366
|
+
.cds--data-table.cds--data-table--top-aligned-header th {
|
|
8367
|
+
vertical-align: top;
|
|
8368
|
+
}
|
|
8369
|
+
|
|
8252
8370
|
.cds--data-table th[align=right],
|
|
8253
8371
|
.cds--data-table td[align=right] {
|
|
8254
8372
|
text-align: right;
|
|
@@ -8529,7 +8647,8 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
8529
8647
|
height: calc(100% + 1px);
|
|
8530
8648
|
}
|
|
8531
8649
|
|
|
8532
|
-
.cds--data-table.cds--data-table--xs .cds--table-column-checkbox
|
|
8650
|
+
.cds--data-table.cds--data-table--xs:not(.cds--data-table--top-aligned-body) td.cds--table-column-checkbox,
|
|
8651
|
+
.cds--data-table.cds--data-table--xs:not(.cds--data-table--top-aligned-header) th.cds--table-column-checkbox {
|
|
8533
8652
|
padding-top: 0;
|
|
8534
8653
|
padding-bottom: 0;
|
|
8535
8654
|
}
|
|
@@ -8551,12 +8670,14 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
8551
8670
|
}
|
|
8552
8671
|
|
|
8553
8672
|
.cds--data-table--sm td,
|
|
8554
|
-
.cds--data-table--sm tbody tr th
|
|
8673
|
+
.cds--data-table--sm tbody tr th,
|
|
8674
|
+
.cds--data-table--sm.cds--data-table--top-aligned-header th.cds--table-column-checkbox {
|
|
8555
8675
|
padding-top: 0.4375rem;
|
|
8556
8676
|
padding-bottom: 0.375rem;
|
|
8557
8677
|
}
|
|
8558
8678
|
|
|
8559
|
-
.cds--data-table.cds--data-table--sm .cds--table-column-checkbox
|
|
8679
|
+
.cds--data-table.cds--data-table--sm:not(.cds--data-table--top-aligned-body) td.cds--table-column-checkbox,
|
|
8680
|
+
.cds--data-table.cds--data-table--sm:not(.cds--data-table--top-aligned-header) th.cds--table-column-checkbox {
|
|
8560
8681
|
padding-top: 0.1875rem;
|
|
8561
8682
|
padding-bottom: 0.1875rem;
|
|
8562
8683
|
}
|
|
@@ -8571,7 +8692,8 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
8571
8692
|
height: 2.5rem;
|
|
8572
8693
|
}
|
|
8573
8694
|
|
|
8574
|
-
.cds--data-table--md .cds--table-header-label
|
|
8695
|
+
.cds--data-table--md .cds--table-header-label,
|
|
8696
|
+
.cds--data-table--md.cds--data-table--top-aligned-header th.cds--table-column-checkbox {
|
|
8575
8697
|
padding-top: 0.4375rem;
|
|
8576
8698
|
padding-bottom: 0.4375rem;
|
|
8577
8699
|
}
|
|
@@ -8582,7 +8704,8 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
8582
8704
|
padding-bottom: 0.375rem;
|
|
8583
8705
|
}
|
|
8584
8706
|
|
|
8585
|
-
.cds--data-table.cds--data-table--md .cds--table-column-checkbox
|
|
8707
|
+
.cds--data-table.cds--data-table--md:not(.cds--data-table--top-aligned-body) td.cds--table-column-checkbox,
|
|
8708
|
+
.cds--data-table.cds--data-table--md:not(.cds--data-table--top-aligned-header) th.cds--table-column-checkbox {
|
|
8586
8709
|
padding-top: 0.1875rem;
|
|
8587
8710
|
padding-bottom: 0.1875rem;
|
|
8588
8711
|
}
|
|
@@ -8606,6 +8729,7 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
8606
8729
|
.cds--data-table--xl td,
|
|
8607
8730
|
.cds--data-table--xl tbody tr th {
|
|
8608
8731
|
padding-top: 1rem;
|
|
8732
|
+
padding-bottom: 1rem;
|
|
8609
8733
|
}
|
|
8610
8734
|
|
|
8611
8735
|
.cds--data-table--xl th,
|
|
@@ -9556,6 +9680,25 @@ tr.cds--parent-row.cds--expandable-row.cds--expandable-row--hover td:first-of-ty
|
|
|
9556
9680
|
border: 0;
|
|
9557
9681
|
}
|
|
9558
9682
|
|
|
9683
|
+
.cds--data-table--top-aligned-body td .cds--table-expand__button,
|
|
9684
|
+
.cds--data-table--top-aligned-header th .cds--table-expand__button {
|
|
9685
|
+
height: 2rem;
|
|
9686
|
+
align-items: start;
|
|
9687
|
+
padding-top: 0.5rem;
|
|
9688
|
+
}
|
|
9689
|
+
|
|
9690
|
+
.cds--data-table--top-aligned-body.cds--data-table--xs td .cds--table-expand__button,
|
|
9691
|
+
.cds--data-table--top-aligned-header.cds--data-table--xs th .cds--table-expand__button {
|
|
9692
|
+
height: 1.5rem;
|
|
9693
|
+
padding-top: 0.25rem;
|
|
9694
|
+
}
|
|
9695
|
+
|
|
9696
|
+
.cds--data-table--top-aligned-body.cds--data-table--md td .cds--table-expand__button,
|
|
9697
|
+
.cds--data-table--top-aligned-header.cds--data-table--md th .cds--table-expand__button {
|
|
9698
|
+
padding-top: 0.5rem;
|
|
9699
|
+
margin-top: -0.25rem;
|
|
9700
|
+
}
|
|
9701
|
+
|
|
9559
9702
|
.cds--table-expand__button:focus {
|
|
9560
9703
|
box-shadow: inset 0 0 0 2px var(--cds-focus, #0f62fe);
|
|
9561
9704
|
outline: none;
|
|
@@ -9569,7 +9712,6 @@ tr.cds--parent-row.cds--expandable-row.cds--expandable-row--hover td:first-of-ty
|
|
|
9569
9712
|
|
|
9570
9713
|
.cds--data-table--xl .cds--table-expand__button {
|
|
9571
9714
|
width: 2rem;
|
|
9572
|
-
padding: 0;
|
|
9573
9715
|
}
|
|
9574
9716
|
|
|
9575
9717
|
tr.cds--parent-row.cds--expandable-row td.cds--table-expand + td::after {
|
|
@@ -9906,6 +10048,30 @@ th .cds--table-sort__flex {
|
|
|
9906
10048
|
justify-content: space-between;
|
|
9907
10049
|
}
|
|
9908
10050
|
|
|
10051
|
+
.cds--data-table--top-aligned-header th .cds--table-sort__flex {
|
|
10052
|
+
align-items: start;
|
|
10053
|
+
}
|
|
10054
|
+
|
|
10055
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--lg th.cds--table-sort__header {
|
|
10056
|
+
padding-top: 1rem;
|
|
10057
|
+
}
|
|
10058
|
+
|
|
10059
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--sm th.cds--table-sort__header .cds--table-sort__flex .cds--table-header-label,
|
|
10060
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--xs th.cds--table-sort__header .cds--table-sort__flex .cds--table-header-label {
|
|
10061
|
+
padding-top: 0;
|
|
10062
|
+
padding-bottom: 0;
|
|
10063
|
+
}
|
|
10064
|
+
|
|
10065
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--sm th.cds--table-sort__header {
|
|
10066
|
+
padding-top: 0.4375rem;
|
|
10067
|
+
padding-bottom: 0.4375rem;
|
|
10068
|
+
}
|
|
10069
|
+
|
|
10070
|
+
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--xs th.cds--table-sort__header {
|
|
10071
|
+
padding-top: 0.125rem;
|
|
10072
|
+
padding-bottom: 0.125rem;
|
|
10073
|
+
}
|
|
10074
|
+
|
|
9909
10075
|
.cds--data-table--sort:not(.cds--data-table--xs):not(.cds--data-table--sm):not(.cds--data-table--md):not(.cds--data-table--xl) th .cds--table-sort__flex {
|
|
9910
10076
|
/* IE11 workaround for align-items: center and min-height
|
|
9911
10077
|
https://github.com/philipwalton/flexbugs/issues/231 */
|
|
@@ -14798,6 +14964,10 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
14798
14964
|
white-space: nowrap;
|
|
14799
14965
|
}
|
|
14800
14966
|
|
|
14967
|
+
.cds--menu-item__shortcut {
|
|
14968
|
+
display: flex;
|
|
14969
|
+
}
|
|
14970
|
+
|
|
14801
14971
|
.cds--menu--with-icons > .cds--menu-item,
|
|
14802
14972
|
.cds--menu--with-icons > .cds--menu-item-group > ul > .cds--menu-item,
|
|
14803
14973
|
.cds--menu--with-icons > .cds--menu-item-radio-group > ul > .cds--menu-item {
|
|
@@ -16498,6 +16668,11 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
16498
16668
|
background-color: var(--cds-layer-hover);
|
|
16499
16669
|
}
|
|
16500
16670
|
|
|
16671
|
+
.cds--overflow-menu > :first-child {
|
|
16672
|
+
-webkit-margin-before: 0;
|
|
16673
|
+
margin-block-start: 0;
|
|
16674
|
+
}
|
|
16675
|
+
|
|
16501
16676
|
.cds--overflow-menu--sm {
|
|
16502
16677
|
width: 2rem;
|
|
16503
16678
|
height: 2rem;
|
|
@@ -17025,6 +17200,12 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17025
17200
|
box-sizing: inherit;
|
|
17026
17201
|
}
|
|
17027
17202
|
|
|
17203
|
+
.cds--pagination__button > svg,
|
|
17204
|
+
.cds--btn--ghost.cds--pagination__button > svg {
|
|
17205
|
+
-webkit-margin-before: 0;
|
|
17206
|
+
margin-block-start: 0;
|
|
17207
|
+
}
|
|
17208
|
+
|
|
17028
17209
|
.cds--pagination--sm .cds--pagination__button,
|
|
17029
17210
|
.cds--pagination--sm .cds--btn--ghost.cds--pagination__button {
|
|
17030
17211
|
width: 2rem;
|
|
@@ -17777,6 +17958,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17777
17958
|
fill: var(--cds-icon-primary, #161616);
|
|
17778
17959
|
}
|
|
17779
17960
|
|
|
17961
|
+
.cds--progress-bar {
|
|
17962
|
+
--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));
|
|
17963
|
+
}
|
|
17964
|
+
|
|
17780
17965
|
.cds--progress-bar__label {
|
|
17781
17966
|
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
17782
17967
|
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
@@ -17785,8 +17970,9 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17785
17970
|
display: flex;
|
|
17786
17971
|
min-width: 3rem;
|
|
17787
17972
|
justify-content: space-between;
|
|
17788
|
-
margin-bottom: 0.5rem;
|
|
17789
17973
|
color: var(--cds-text-primary, #161616);
|
|
17974
|
+
-webkit-margin-after: 0.5rem;
|
|
17975
|
+
margin-block-end: 0.5rem;
|
|
17790
17976
|
}
|
|
17791
17977
|
|
|
17792
17978
|
.cds--progress-bar__label-text {
|
|
@@ -17848,7 +18034,8 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17848
18034
|
|
|
17849
18035
|
.cds--progress-bar__status-icon {
|
|
17850
18036
|
flex-shrink: 0;
|
|
17851
|
-
margin-
|
|
18037
|
+
-webkit-margin-start: var(--cds-layout-density-padding-inline-local);
|
|
18038
|
+
margin-inline-start: var(--cds-layout-density-padding-inline-local);
|
|
17852
18039
|
}
|
|
17853
18040
|
|
|
17854
18041
|
.cds--progress-bar--finished .cds--progress-bar__bar,
|
|
@@ -17885,7 +18072,8 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17885
18072
|
.cds--progress-bar--error.cds--progress-bar--inline .cds--progress-bar__label {
|
|
17886
18073
|
flex-shrink: 1;
|
|
17887
18074
|
justify-content: flex-start;
|
|
17888
|
-
margin-
|
|
18075
|
+
-webkit-margin-end: 0;
|
|
18076
|
+
margin-inline-end: 0;
|
|
17889
18077
|
}
|
|
17890
18078
|
|
|
17891
18079
|
@keyframes progress-bar-indeterminate {
|
|
@@ -17904,8 +18092,8 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17904
18092
|
.cds--progress-bar--inline .cds--progress-bar__label {
|
|
17905
18093
|
flex-shrink: 0;
|
|
17906
18094
|
margin-bottom: 0;
|
|
17907
|
-
-webkit-margin-end:
|
|
17908
|
-
margin-inline-end:
|
|
18095
|
+
-webkit-margin-end: var(--cds-layout-density-padding-inline-local);
|
|
18096
|
+
margin-inline-end: var(--cds-layout-density-padding-inline-local);
|
|
17909
18097
|
}
|
|
17910
18098
|
|
|
17911
18099
|
.cds--progress-bar--inline .cds--progress-bar__track {
|
|
@@ -17928,7 +18116,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17928
18116
|
|
|
17929
18117
|
.cds--progress-bar--indented .cds--progress-bar__label,
|
|
17930
18118
|
.cds--progress-bar--indented .cds--progress-bar__helper-text {
|
|
17931
|
-
padding-inline:
|
|
18119
|
+
padding-inline: var(--cds-layout-density-padding-inline-local);
|
|
17932
18120
|
}
|
|
17933
18121
|
|
|
17934
18122
|
.cds--tooltip {
|
|
@@ -18713,11 +18901,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
18713
18901
|
}
|
|
18714
18902
|
|
|
18715
18903
|
.cds--slider__range-label {
|
|
18716
|
-
font-
|
|
18717
|
-
font-
|
|
18718
|
-
|
|
18719
|
-
|
|
18720
|
-
letter-spacing: var(--cds-code-02-letter-spacing, 0.32px);
|
|
18904
|
+
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
18905
|
+
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
18906
|
+
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
18907
|
+
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
18721
18908
|
color: var(--cds-text-primary, #161616);
|
|
18722
18909
|
white-space: nowrap;
|
|
18723
18910
|
}
|
|
@@ -19507,10 +19694,15 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
19507
19694
|
.cds--tabs .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon {
|
|
19508
19695
|
padding: 0.25rem;
|
|
19509
19696
|
margin: -0.25rem;
|
|
19510
|
-
cursor: pointer;
|
|
19511
19697
|
line-height: 0;
|
|
19512
19698
|
pointer-events: auto;
|
|
19513
19699
|
}
|
|
19700
|
+
.cds--tabs .cds--tabs__nav-item--icon-left {
|
|
19701
|
+
display: flex;
|
|
19702
|
+
align-items: center;
|
|
19703
|
+
padding-right: 0.5rem;
|
|
19704
|
+
margin-top: -2px;
|
|
19705
|
+
}
|
|
19514
19706
|
.cds--tabs.cds--tabs--contained .cds--tabs__nav-item--icon {
|
|
19515
19707
|
padding-left: 1rem;
|
|
19516
19708
|
}
|
|
@@ -20317,10 +20509,21 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20317
20509
|
}
|
|
20318
20510
|
|
|
20319
20511
|
.cds--time-picker__input {
|
|
20512
|
+
position: relative;
|
|
20320
20513
|
display: flex;
|
|
20321
20514
|
flex-direction: column;
|
|
20322
20515
|
}
|
|
20323
20516
|
|
|
20517
|
+
.cds--time-picker__error__icon {
|
|
20518
|
+
position: absolute;
|
|
20519
|
+
top: 50%;
|
|
20520
|
+
right: 1rem;
|
|
20521
|
+
display: flex;
|
|
20522
|
+
height: 100%;
|
|
20523
|
+
place-items: center;
|
|
20524
|
+
transform: translateY(-50%);
|
|
20525
|
+
}
|
|
20526
|
+
|
|
20324
20527
|
.cds--time-picker .cds--select-input {
|
|
20325
20528
|
width: auto;
|
|
20326
20529
|
min-width: auto;
|
|
@@ -20352,6 +20555,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20352
20555
|
opacity: 1;
|
|
20353
20556
|
}
|
|
20354
20557
|
|
|
20558
|
+
.cds--time-picker__input-field-error {
|
|
20559
|
+
width: 6.175rem;
|
|
20560
|
+
}
|
|
20561
|
+
|
|
20355
20562
|
.cds--time-picker--light .cds--select-input {
|
|
20356
20563
|
background-color: var(--cds-field-02, #ffffff);
|
|
20357
20564
|
}
|
|
@@ -20902,6 +21109,11 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20902
21109
|
}
|
|
20903
21110
|
}
|
|
20904
21111
|
|
|
21112
|
+
.cds--header__action > :first-child {
|
|
21113
|
+
-webkit-margin-before: 0;
|
|
21114
|
+
margin-block-start: 0;
|
|
21115
|
+
}
|
|
21116
|
+
|
|
20905
21117
|
.cds--header__action > svg.cds--navigation-menu-panel-collapse-icon,
|
|
20906
21118
|
.cds--header__action--active > svg.cds--navigation-menu-panel-expand-icon {
|
|
20907
21119
|
display: none;
|
|
@@ -21287,7 +21499,6 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
21287
21499
|
width: 0;
|
|
21288
21500
|
}
|
|
21289
21501
|
|
|
21290
|
-
.cds--side-nav.cds--side-nav--rail:not(.cds--side-nav--fixed):hover,
|
|
21291
21502
|
.cds--side-nav--expanded {
|
|
21292
21503
|
width: 16rem;
|
|
21293
21504
|
}
|
|
@@ -21846,6 +22057,11 @@ a.cds--side-nav__link--current::before {
|
|
|
21846
22057
|
}
|
|
21847
22058
|
}
|
|
21848
22059
|
|
|
22060
|
+
.cds--header__action > :first-child {
|
|
22061
|
+
-webkit-margin-before: 0;
|
|
22062
|
+
margin-block-start: 0;
|
|
22063
|
+
}
|
|
22064
|
+
|
|
21849
22065
|
.cds--header__action > svg.cds--navigation-menu-panel-collapse-icon,
|
|
21850
22066
|
.cds--header__action--active > svg.cds--navigation-menu-panel-expand-icon {
|
|
21851
22067
|
display: none;
|
|
@@ -22231,7 +22447,6 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
22231
22447
|
width: 0;
|
|
22232
22448
|
}
|
|
22233
22449
|
|
|
22234
|
-
.cds--side-nav.cds--side-nav--rail:not(.cds--side-nav--fixed):hover,
|
|
22235
22450
|
.cds--side-nav--expanded {
|
|
22236
22451
|
width: 16rem;
|
|
22237
22452
|
}
|