@carbon/styles 1.67.0 → 1.68.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/README.md +3 -3
- package/css/styles.css +172 -86
- package/css/styles.min.css +1 -1
- package/package.json +10 -10
- package/scss/__tests__/zone-test.js +1 -1
- package/scss/_reset.scss +0 -2
- package/scss/_zone.scss +1 -1
- package/scss/components/accordion/_accordion.scss +26 -20
- package/scss/components/breadcrumb/_breadcrumb.scss +1 -1
- package/scss/components/button/_button.scss +4 -3
- package/scss/components/button/_mixins.scss +7 -4
- package/scss/components/code-snippet/_code-snippet.scss +1 -2
- package/scss/components/contained-list/_contained-list.scss +2 -2
- package/scss/components/content-switcher/_content-switcher.scss +4 -2
- package/scss/components/data-table/_data-table.scss +15 -5
- package/scss/components/data-table/action/_data-table-action.scss +10 -6
- package/scss/components/data-table/expandable/_data-table-expandable.scss +20 -9
- package/scss/components/data-table/sort/_data-table-sort.scss +3 -2
- package/scss/components/date-picker/_date-picker.scss +1 -1
- package/scss/components/date-picker/_flatpickr.scss +8 -4
- package/scss/components/dialog/_dialog.scss +10 -7
- package/scss/components/dropdown/_dropdown.scss +3 -2
- package/scss/components/file-uploader/_file-uploader.scss +4 -5
- package/scss/components/fluid-date-picker/_fluid-date-picker.scss +2 -1
- package/scss/components/fluid-list-box/_fluid-list-box.scss +2 -1
- package/scss/components/fluid-number-input/_fluid-number-input.scss +3 -1
- package/scss/components/fluid-select/_fluid-select.scss +2 -1
- package/scss/components/fluid-text-input/_fluid-text-input.scss +2 -1
- package/scss/components/list-box/_list-box.scss +3 -2
- package/scss/components/loading/_animation.scss +2 -1
- package/scss/components/modal/_modal.scss +9 -6
- package/scss/components/notification/_actionable-notification.scss +5 -4
- package/scss/components/notification/_inline-notification.scss +3 -3
- package/scss/components/notification/_toast-notification.scss +4 -3
- package/scss/components/number-input/_number-input.scss +3 -3
- package/scss/components/overflow-menu/_overflow-menu.scss +4 -2
- package/scss/components/pagination/_pagination.scss +3 -2
- package/scss/components/pagination/_unstable_pagination.scss +2 -1
- package/scss/components/pagination-nav/_pagination-nav.scss +3 -2
- package/scss/components/popover/_popover.scss +8 -10
- package/scss/components/progress-indicator/_progress-indicator.scss +2 -1
- package/scss/components/search/_search.scss +6 -3
- package/scss/components/select/_select.scss +2 -2
- package/scss/components/slider/_slider.scss +29 -8
- package/scss/components/slug/_slug.scss +12 -5
- package/scss/components/tabs/_tabs.scss +33 -6
- package/scss/components/tag/_tag.scss +7 -3
- package/scss/components/text-area/_text-area.scss +2 -1
- package/scss/components/text-input/_text-input.scss +4 -2
- package/scss/components/tile/_tile.scss +10 -5
- package/scss/components/time-picker/_time-picker.scss +2 -1
- package/scss/components/toggle/_toggle.scss +3 -2
- package/scss/components/treeview/_treeview.scss +4 -0
- package/scss/components/ui-shell/header/_header.scss +10 -5
- package/scss/components/ui-shell/side-nav/_side-nav.scss +15 -8
- package/scss/utilities/_ai-gradient.scss +6 -3
- package/scss/utilities/_convert.scss +6 -6
- package/scss/utilities/_skeleton.scss +1 -0
- package/scss/utilities/_tooltip.scss +2 -5
- package/scss/utilities/_z-index.scss +3 -3
- package/telemetry.yml +1 -1
package/css/styles.css
CHANGED
|
@@ -131,7 +131,6 @@ blockquote::before,
|
|
|
131
131
|
blockquote::after,
|
|
132
132
|
q::before,
|
|
133
133
|
q::after {
|
|
134
|
-
content: "";
|
|
135
134
|
content: none;
|
|
136
135
|
}
|
|
137
136
|
|
|
@@ -1113,6 +1112,14 @@ em {
|
|
|
1113
1112
|
--cds-grid-column-hang: 0.96875rem;
|
|
1114
1113
|
}
|
|
1115
1114
|
|
|
1115
|
+
.cds--css-grid--start {
|
|
1116
|
+
margin-inline-start: 0;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
.cds--css-grid--end {
|
|
1120
|
+
margin-inline-end: 0;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1116
1123
|
.cds--subgrid {
|
|
1117
1124
|
display: grid;
|
|
1118
1125
|
grid-template-columns: repeat(var(--cds-grid-columns), minmax(0, 1fr));
|
|
@@ -2938,25 +2945,25 @@ em {
|
|
|
2938
2945
|
--cds-notification-action-tertiary-inverse-text: #161616;
|
|
2939
2946
|
--cds-notification-action-tertiary-inverse-text-on-color-disabled: rgba(255, 255, 255, 0.25);
|
|
2940
2947
|
--cds-tag-background-red: #ffd7d9;
|
|
2941
|
-
--cds-tag-color-red: #
|
|
2948
|
+
--cds-tag-color-red: #a2191f;
|
|
2942
2949
|
--cds-tag-hover-red: #ffc2c5;
|
|
2943
2950
|
--cds-tag-background-magenta: #ffd6e8;
|
|
2944
|
-
--cds-tag-color-magenta: #
|
|
2951
|
+
--cds-tag-color-magenta: #9f1853;
|
|
2945
2952
|
--cds-tag-hover-magenta: #ffbdda;
|
|
2946
2953
|
--cds-tag-background-purple: #e8daff;
|
|
2947
|
-
--cds-tag-color-purple: #
|
|
2954
|
+
--cds-tag-color-purple: #6929c4;
|
|
2948
2955
|
--cds-tag-hover-purple: #dcc7ff;
|
|
2949
2956
|
--cds-tag-background-blue: #d0e2ff;
|
|
2950
|
-
--cds-tag-color-blue: #
|
|
2957
|
+
--cds-tag-color-blue: #0043ce;
|
|
2951
2958
|
--cds-tag-hover-blue: #b8d3ff;
|
|
2952
2959
|
--cds-tag-background-cyan: #bae6ff;
|
|
2953
|
-
--cds-tag-color-cyan: #
|
|
2960
|
+
--cds-tag-color-cyan: #00539a;
|
|
2954
2961
|
--cds-tag-hover-cyan: #99daff;
|
|
2955
2962
|
--cds-tag-background-teal: #9ef0f0;
|
|
2956
|
-
--cds-tag-color-teal: #
|
|
2963
|
+
--cds-tag-color-teal: #005d5d;
|
|
2957
2964
|
--cds-tag-hover-teal: #57e5e5;
|
|
2958
2965
|
--cds-tag-background-green: #a7f0ba;
|
|
2959
|
-
--cds-tag-color-green: #
|
|
2966
|
+
--cds-tag-color-green: #0e6027;
|
|
2960
2967
|
--cds-tag-hover-green: #74e792;
|
|
2961
2968
|
--cds-tag-background-gray: #e0e0e0;
|
|
2962
2969
|
--cds-tag-color-gray: #161616;
|
|
@@ -3161,25 +3168,25 @@ em {
|
|
|
3161
3168
|
--cds-notification-action-tertiary-inverse-text: #161616;
|
|
3162
3169
|
--cds-notification-action-tertiary-inverse-text-on-color-disabled: rgba(255, 255, 255, 0.25);
|
|
3163
3170
|
--cds-tag-background-red: #ffd7d9;
|
|
3164
|
-
--cds-tag-color-red: #
|
|
3171
|
+
--cds-tag-color-red: #a2191f;
|
|
3165
3172
|
--cds-tag-hover-red: #ffc2c5;
|
|
3166
3173
|
--cds-tag-background-magenta: #ffd6e8;
|
|
3167
|
-
--cds-tag-color-magenta: #
|
|
3174
|
+
--cds-tag-color-magenta: #9f1853;
|
|
3168
3175
|
--cds-tag-hover-magenta: #ffbdda;
|
|
3169
3176
|
--cds-tag-background-purple: #e8daff;
|
|
3170
|
-
--cds-tag-color-purple: #
|
|
3177
|
+
--cds-tag-color-purple: #6929c4;
|
|
3171
3178
|
--cds-tag-hover-purple: #dcc7ff;
|
|
3172
3179
|
--cds-tag-background-blue: #d0e2ff;
|
|
3173
|
-
--cds-tag-color-blue: #
|
|
3180
|
+
--cds-tag-color-blue: #0043ce;
|
|
3174
3181
|
--cds-tag-hover-blue: #b8d3ff;
|
|
3175
3182
|
--cds-tag-background-cyan: #bae6ff;
|
|
3176
|
-
--cds-tag-color-cyan: #
|
|
3183
|
+
--cds-tag-color-cyan: #00539a;
|
|
3177
3184
|
--cds-tag-hover-cyan: #99daff;
|
|
3178
3185
|
--cds-tag-background-teal: #9ef0f0;
|
|
3179
|
-
--cds-tag-color-teal: #
|
|
3186
|
+
--cds-tag-color-teal: #005d5d;
|
|
3180
3187
|
--cds-tag-hover-teal: #57e5e5;
|
|
3181
3188
|
--cds-tag-background-green: #a7f0ba;
|
|
3182
|
-
--cds-tag-color-green: #
|
|
3189
|
+
--cds-tag-color-green: #0e6027;
|
|
3183
3190
|
--cds-tag-hover-green: #74e792;
|
|
3184
3191
|
--cds-tag-background-gray: #e0e0e0;
|
|
3185
3192
|
--cds-tag-color-gray: #161616;
|
|
@@ -3656,7 +3663,6 @@ em {
|
|
|
3656
3663
|
font-family: inherit;
|
|
3657
3664
|
font-size: 100%;
|
|
3658
3665
|
vertical-align: baseline;
|
|
3659
|
-
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector, no-duplicate-selectors */
|
|
3660
3666
|
}
|
|
3661
3667
|
.cds--accordion *,
|
|
3662
3668
|
.cds--accordion *::before,
|
|
@@ -3704,7 +3710,6 @@ em {
|
|
|
3704
3710
|
cursor: pointer;
|
|
3705
3711
|
text-align: start;
|
|
3706
3712
|
inline-size: 100%;
|
|
3707
|
-
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector, no-duplicate-selectors */
|
|
3708
3713
|
}
|
|
3709
3714
|
.cds--accordion__heading *,
|
|
3710
3715
|
.cds--accordion__heading *::before,
|
|
@@ -3764,7 +3769,6 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3764
3769
|
outline: 2px solid transparent;
|
|
3765
3770
|
outline-offset: -2px;
|
|
3766
3771
|
transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
3767
|
-
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector, no-duplicate-selectors */
|
|
3768
3772
|
}
|
|
3769
3773
|
.cds--accordion__arrow {
|
|
3770
3774
|
flex: 0 0 1rem;
|
|
@@ -3779,7 +3783,6 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3779
3783
|
font-weight: var(--cds-body-01-font-weight, 400);
|
|
3780
3784
|
line-height: var(--cds-body-01-line-height, 1.42857);
|
|
3781
3785
|
letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
|
|
3782
|
-
/* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector, no-duplicate-selectors */
|
|
3783
3786
|
}
|
|
3784
3787
|
.cds--accordion__title {
|
|
3785
3788
|
z-index: 1;
|
|
@@ -3789,11 +3792,12 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3789
3792
|
}
|
|
3790
3793
|
|
|
3791
3794
|
.cds--accordion__wrapper {
|
|
3795
|
+
display: none;
|
|
3792
3796
|
overflow: hidden;
|
|
3793
3797
|
padding: 0;
|
|
3794
3798
|
max-block-size: 0;
|
|
3795
3799
|
opacity: 0;
|
|
3796
|
-
transition: all 110ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
3800
|
+
transition: all 110ms cubic-bezier(0, 0, 0.38, 0.9) allow-discrete;
|
|
3797
3801
|
writing-mode: horizontal-tb;
|
|
3798
3802
|
}
|
|
3799
3803
|
|
|
@@ -3842,6 +3846,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3842
3846
|
overflow: visible;
|
|
3843
3847
|
}
|
|
3844
3848
|
.cds--accordion__item--active > .cds--accordion__wrapper {
|
|
3849
|
+
display: block;
|
|
3845
3850
|
overflow: visible;
|
|
3846
3851
|
max-block-size: -moz-fit-content;
|
|
3847
3852
|
max-block-size: fit-content;
|
|
@@ -3854,6 +3859,18 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3854
3859
|
transform: rotate(-90deg) /*rtl:ignore*/;
|
|
3855
3860
|
}
|
|
3856
3861
|
|
|
3862
|
+
/** starting style also not supported widely
|
|
3863
|
+
* https://caniuse.com/mdn-css_at-rules_starting-style
|
|
3864
|
+
*/
|
|
3865
|
+
/* Needs to be after the previous accordion__item--active rule
|
|
3866
|
+
to take effect, as the specificity is the same */
|
|
3867
|
+
@starting-style {
|
|
3868
|
+
.cds--accordion__item--active > .cds--accordion__wrapper {
|
|
3869
|
+
padding: 0;
|
|
3870
|
+
max-block-size: 0;
|
|
3871
|
+
opacity: 0;
|
|
3872
|
+
}
|
|
3873
|
+
}
|
|
3857
3874
|
.cds--accordion--flush .cds--accordion__item {
|
|
3858
3875
|
position: relative;
|
|
3859
3876
|
border-color: transparent;
|
|
@@ -4056,8 +4073,8 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4056
4073
|
--cds-popover-text-color: var(--cds-text-inverse, #ffffff);
|
|
4057
4074
|
}
|
|
4058
4075
|
|
|
4059
|
-
.cds--popover--drop-shadow .cds--popover {
|
|
4060
|
-
|
|
4076
|
+
.cds--popover--drop-shadow .cds--popover > .cds--popover-content {
|
|
4077
|
+
filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
|
|
4061
4078
|
}
|
|
4062
4079
|
|
|
4063
4080
|
.cds--popover--caret {
|
|
@@ -4186,7 +4203,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4186
4203
|
.cds--popover--bottom-end > .cds--popover > .cds--popover-content::before {
|
|
4187
4204
|
block-size: var(--cds-popover-offset, 0rem);
|
|
4188
4205
|
inset-block-start: 0;
|
|
4189
|
-
inset-inline: 0
|
|
4206
|
+
inset-inline: 0;
|
|
4190
4207
|
transform: translateY(-100%);
|
|
4191
4208
|
}
|
|
4192
4209
|
|
|
@@ -4263,7 +4280,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4263
4280
|
.cds--popover--top-end > .cds--popover > .cds--popover-content::before {
|
|
4264
4281
|
block-size: var(--cds-popover-offset, 0rem);
|
|
4265
4282
|
inset-block-end: 0;
|
|
4266
|
-
inset-inline: 0
|
|
4283
|
+
inset-inline: 0;
|
|
4267
4284
|
transform: translateY(100%);
|
|
4268
4285
|
}
|
|
4269
4286
|
|
|
@@ -4333,7 +4350,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4333
4350
|
.cds--popover--right-bottom > .cds--popover > .cds--popover-content::before,
|
|
4334
4351
|
.cds--popover--right-end > .cds--popover > .cds--popover-content::before {
|
|
4335
4352
|
inline-size: var(--cds-popover-offset, 0rem);
|
|
4336
|
-
inset-block: 0
|
|
4353
|
+
inset-block: 0;
|
|
4337
4354
|
inset-inline-start: 0;
|
|
4338
4355
|
transform: translateX(-100%);
|
|
4339
4356
|
}
|
|
@@ -4405,7 +4422,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4405
4422
|
.cds--popover--left-bottom > .cds--popover > .cds--popover-content::before,
|
|
4406
4423
|
.cds--popover--left-end > .cds--popover > .cds--popover-content::before {
|
|
4407
4424
|
inline-size: var(--cds-popover-offset, 0rem);
|
|
4408
|
-
inset-block: 0
|
|
4425
|
+
inset-block: 0;
|
|
4409
4426
|
inset-inline-end: 0;
|
|
4410
4427
|
transform: translateX(100%);
|
|
4411
4428
|
}
|
|
@@ -4995,6 +5012,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4995
5012
|
block-size: 100%;
|
|
4996
5013
|
content: "";
|
|
4997
5014
|
inline-size: 100%;
|
|
5015
|
+
inset-inline-start: 0;
|
|
4998
5016
|
will-change: transform-origin, transform, opacity;
|
|
4999
5017
|
}
|
|
5000
5018
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -6329,6 +6347,7 @@ a.cds--overflow-menu-options__btn::before {
|
|
|
6329
6347
|
block-size: 100%;
|
|
6330
6348
|
content: "";
|
|
6331
6349
|
inline-size: 100%;
|
|
6350
|
+
inset-inline-start: 0;
|
|
6332
6351
|
will-change: transform-origin, transform, opacity;
|
|
6333
6352
|
}
|
|
6334
6353
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -6339,7 +6358,7 @@ a.cds--overflow-menu-options__btn::before {
|
|
|
6339
6358
|
|
|
6340
6359
|
.cds--breadcrumb .cds--overflow-menu.cds--btn--icon-only {
|
|
6341
6360
|
min-block-size: 1.125rem;
|
|
6342
|
-
padding-inline: 0
|
|
6361
|
+
padding-inline: 0;
|
|
6343
6362
|
}
|
|
6344
6363
|
|
|
6345
6364
|
.cds--link {
|
|
@@ -6686,6 +6705,7 @@ textarea:-webkit-autofill:focus {
|
|
|
6686
6705
|
block-size: 100%;
|
|
6687
6706
|
content: "";
|
|
6688
6707
|
inline-size: 100%;
|
|
6708
|
+
inset-inline-start: 0;
|
|
6689
6709
|
will-change: transform-origin, transform, opacity;
|
|
6690
6710
|
}
|
|
6691
6711
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -7118,6 +7138,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7118
7138
|
block-size: 100%;
|
|
7119
7139
|
content: "";
|
|
7120
7140
|
inline-size: 100%;
|
|
7141
|
+
inset-inline-start: 0;
|
|
7121
7142
|
will-change: transform-origin, transform, opacity;
|
|
7122
7143
|
}
|
|
7123
7144
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -7873,6 +7894,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7873
7894
|
block-size: 100%;
|
|
7874
7895
|
content: "";
|
|
7875
7896
|
inline-size: 100%;
|
|
7897
|
+
inset-inline-start: 0;
|
|
7876
7898
|
will-change: transform-origin, transform, opacity;
|
|
7877
7899
|
}
|
|
7878
7900
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -7894,7 +7916,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7894
7916
|
padding-block-end: 0;
|
|
7895
7917
|
}
|
|
7896
7918
|
|
|
7897
|
-
/* stylelint-disable */
|
|
7898
7919
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
7899
7920
|
.cds--snippet__icon {
|
|
7900
7921
|
fill: ButtonText;
|
|
@@ -7915,7 +7936,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7915
7936
|
}
|
|
7916
7937
|
}
|
|
7917
7938
|
|
|
7918
|
-
/* stylelint-enable */
|
|
7919
7939
|
.cds--text-input {
|
|
7920
7940
|
--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)));
|
|
7921
7941
|
--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));
|
|
@@ -8183,8 +8203,8 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8183
8203
|
inset-inline-start: 50%;
|
|
8184
8204
|
}
|
|
8185
8205
|
.cds--text-input--password__visibility::before {
|
|
8186
|
-
border-width: 0 0.25rem 0.3125rem
|
|
8187
|
-
border-color: transparent transparent var(--cds-background-inverse, #393939)
|
|
8206
|
+
border-width: 0 0.25rem 0.3125rem;
|
|
8207
|
+
border-color: transparent transparent var(--cds-background-inverse, #393939);
|
|
8188
8208
|
inset-block-end: -0.5rem;
|
|
8189
8209
|
transform: translate(-50%, 100%);
|
|
8190
8210
|
}
|
|
@@ -8365,6 +8385,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8365
8385
|
block-size: 100%;
|
|
8366
8386
|
content: "";
|
|
8367
8387
|
inline-size: 100%;
|
|
8388
|
+
inset-inline-start: 0;
|
|
8368
8389
|
will-change: transform-origin, transform, opacity;
|
|
8369
8390
|
}
|
|
8370
8391
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -8685,7 +8706,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8685
8706
|
|
|
8686
8707
|
.cds--tag--red {
|
|
8687
8708
|
background-color: var(--cds-tag-background-red, #ffd7d9);
|
|
8688
|
-
color: var(--cds-tag-color-red, #
|
|
8709
|
+
color: var(--cds-tag-color-red, #a2191f);
|
|
8689
8710
|
}
|
|
8690
8711
|
.cds--tag--red.cds--tag--operational {
|
|
8691
8712
|
border: 1px solid var(--cds-tag-border-red, #ff8389);
|
|
@@ -8699,7 +8720,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8699
8720
|
|
|
8700
8721
|
.cds--tag--magenta {
|
|
8701
8722
|
background-color: var(--cds-tag-background-magenta, #ffd6e8);
|
|
8702
|
-
color: var(--cds-tag-color-magenta, #
|
|
8723
|
+
color: var(--cds-tag-color-magenta, #9f1853);
|
|
8703
8724
|
}
|
|
8704
8725
|
.cds--tag--magenta.cds--tag--operational {
|
|
8705
8726
|
border: 1px solid var(--cds-tag-border-magenta, #ff7eb6);
|
|
@@ -8713,7 +8734,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8713
8734
|
|
|
8714
8735
|
.cds--tag--purple {
|
|
8715
8736
|
background-color: var(--cds-tag-background-purple, #e8daff);
|
|
8716
|
-
color: var(--cds-tag-color-purple, #
|
|
8737
|
+
color: var(--cds-tag-color-purple, #6929c4);
|
|
8717
8738
|
}
|
|
8718
8739
|
.cds--tag--purple.cds--tag--operational {
|
|
8719
8740
|
border: 1px solid var(--cds-tag-border-purple, #be95ff);
|
|
@@ -8727,7 +8748,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8727
8748
|
|
|
8728
8749
|
.cds--tag--blue {
|
|
8729
8750
|
background-color: var(--cds-tag-background-blue, #d0e2ff);
|
|
8730
|
-
color: var(--cds-tag-color-blue, #
|
|
8751
|
+
color: var(--cds-tag-color-blue, #0043ce);
|
|
8731
8752
|
}
|
|
8732
8753
|
.cds--tag--blue.cds--tag--operational {
|
|
8733
8754
|
border: 1px solid var(--cds-tag-border-blue, #78a9ff);
|
|
@@ -8741,7 +8762,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8741
8762
|
|
|
8742
8763
|
.cds--tag--cyan {
|
|
8743
8764
|
background-color: var(--cds-tag-background-cyan, #bae6ff);
|
|
8744
|
-
color: var(--cds-tag-color-cyan, #
|
|
8765
|
+
color: var(--cds-tag-color-cyan, #00539a);
|
|
8745
8766
|
}
|
|
8746
8767
|
.cds--tag--cyan.cds--tag--operational {
|
|
8747
8768
|
border: 1px solid var(--cds-tag-border-cyan, #33b1ff);
|
|
@@ -8755,7 +8776,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8755
8776
|
|
|
8756
8777
|
.cds--tag--teal {
|
|
8757
8778
|
background-color: var(--cds-tag-background-teal, #9ef0f0);
|
|
8758
|
-
color: var(--cds-tag-color-teal, #
|
|
8779
|
+
color: var(--cds-tag-color-teal, #005d5d);
|
|
8759
8780
|
}
|
|
8760
8781
|
.cds--tag--teal.cds--tag--operational {
|
|
8761
8782
|
border: 1px solid var(--cds-tag-border-teal, #08bdba);
|
|
@@ -8769,7 +8790,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8769
8790
|
|
|
8770
8791
|
.cds--tag--green {
|
|
8771
8792
|
background-color: var(--cds-tag-background-green, #a7f0ba);
|
|
8772
|
-
color: var(--cds-tag-color-green, #
|
|
8793
|
+
color: var(--cds-tag-color-green, #0e6027);
|
|
8773
8794
|
}
|
|
8774
8795
|
.cds--tag--green.cds--tag--operational {
|
|
8775
8796
|
border: 1px solid var(--cds-tag-border-green, #42be65);
|
|
@@ -8994,6 +9015,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8994
9015
|
block-size: 100%;
|
|
8995
9016
|
content: "";
|
|
8996
9017
|
inline-size: 100%;
|
|
9018
|
+
inset-inline-start: 0;
|
|
8997
9019
|
will-change: transform-origin, transform, opacity;
|
|
8998
9020
|
}
|
|
8999
9021
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -9031,7 +9053,10 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9031
9053
|
border-color: currentColor;
|
|
9032
9054
|
}
|
|
9033
9055
|
|
|
9034
|
-
|
|
9056
|
+
.cds--tag--filter .cds--slug {
|
|
9057
|
+
min-inline-size: 2.00875rem;
|
|
9058
|
+
}
|
|
9059
|
+
|
|
9035
9060
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
9036
9061
|
.cds--tag {
|
|
9037
9062
|
outline: 1px solid transparent;
|
|
@@ -9064,7 +9089,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9064
9089
|
max-inline-size: 9.875rem;
|
|
9065
9090
|
}
|
|
9066
9091
|
|
|
9067
|
-
/* stylelint-enable */
|
|
9068
9092
|
.cds--interactive--tag-children {
|
|
9069
9093
|
display: inline-flex;
|
|
9070
9094
|
max-inline-size: 12.5rem;
|
|
@@ -9608,7 +9632,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9608
9632
|
display: none;
|
|
9609
9633
|
background-color: var(--cds-layer);
|
|
9610
9634
|
inline-size: 100%;
|
|
9611
|
-
inset-inline: 0
|
|
9635
|
+
inset-inline: 0;
|
|
9612
9636
|
overflow-y: auto;
|
|
9613
9637
|
transition: max-height 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
9614
9638
|
}
|
|
@@ -10518,7 +10542,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
10518
10542
|
block-size: 1px;
|
|
10519
10543
|
content: "";
|
|
10520
10544
|
inset-block-end: 0;
|
|
10521
|
-
inset-inline: 0
|
|
10545
|
+
inset-inline: 0;
|
|
10522
10546
|
}
|
|
10523
10547
|
|
|
10524
10548
|
.cds--contained-list--inset-rulers .cds--contained-list-item:not(:last-of-type)::before {
|
|
@@ -10565,7 +10589,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
10565
10589
|
display: flex;
|
|
10566
10590
|
justify-content: flex-end;
|
|
10567
10591
|
inset-block-start: 0;
|
|
10568
|
-
inset-inline: 0
|
|
10592
|
+
inset-inline: 0;
|
|
10569
10593
|
pointer-events: none;
|
|
10570
10594
|
}
|
|
10571
10595
|
|
|
@@ -11097,6 +11121,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11097
11121
|
block-size: 100%;
|
|
11098
11122
|
content: "";
|
|
11099
11123
|
inline-size: 100%;
|
|
11124
|
+
inset-inline-start: 0;
|
|
11100
11125
|
will-change: transform-origin, transform, opacity;
|
|
11101
11126
|
}
|
|
11102
11127
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -11325,7 +11350,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11325
11350
|
|
|
11326
11351
|
.cds--data-table td,
|
|
11327
11352
|
.cds--data-table tbody th {
|
|
11328
|
-
border-block-end: 1px solid var(--cds-border-subtle);
|
|
11353
|
+
border-block-end: 1px solid var(--cds-border-subtle-01, #c6c6c6);
|
|
11329
11354
|
border-block-start: 1px solid var(--cds-layer);
|
|
11330
11355
|
color: var(--cds-text-secondary, #525252);
|
|
11331
11356
|
padding-inline: 1rem 1rem;
|
|
@@ -11335,6 +11360,16 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11335
11360
|
padding-inline-start: 0.75rem;
|
|
11336
11361
|
}
|
|
11337
11362
|
|
|
11363
|
+
.cds--layer-two .cds--data-table td,
|
|
11364
|
+
.cds--layer-two .cds--data-table tbody th {
|
|
11365
|
+
border-block-end: 1px solid var(--cds-border-subtle-02, #e0e0e0);
|
|
11366
|
+
}
|
|
11367
|
+
|
|
11368
|
+
.cds--layer-three .cds--data-table td,
|
|
11369
|
+
.cds--layer-three .cds--data-table tbody th {
|
|
11370
|
+
border-block-end: 1px solid var(--cds-border-subtle-03, #c6c6c6);
|
|
11371
|
+
}
|
|
11372
|
+
|
|
11338
11373
|
@supports (-moz-appearance: none) {
|
|
11339
11374
|
.cds--data-table td {
|
|
11340
11375
|
background-clip: padding-box;
|
|
@@ -11405,7 +11440,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11405
11440
|
.cds--data-table--xs td.cds--table-column-menu,
|
|
11406
11441
|
.cds--data-table--sm td.cds--table-column-menu {
|
|
11407
11442
|
block-size: 1.5rem;
|
|
11408
|
-
padding-block: 0
|
|
11443
|
+
padding-block: 0;
|
|
11409
11444
|
}
|
|
11410
11445
|
|
|
11411
11446
|
.cds--data-table--sm td.cds--table-column-menu {
|
|
@@ -11595,7 +11630,7 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
11595
11630
|
|
|
11596
11631
|
.cds--data-table.cds--data-table--xs:not(.cds--data-table--top-aligned-body) td.cds--table-column-checkbox,
|
|
11597
11632
|
.cds--data-table.cds--data-table--xs:not(.cds--data-table--top-aligned-header) th.cds--table-column-checkbox {
|
|
11598
|
-
padding-block: 0
|
|
11633
|
+
padding-block: 0;
|
|
11599
11634
|
}
|
|
11600
11635
|
|
|
11601
11636
|
.cds--data-table.cds--data-table--xs .cds--table-column-checkbox .cds--checkbox-label {
|
|
@@ -11776,7 +11811,7 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
11776
11811
|
.cds--data-table--sticky-header tbody::-webkit-scrollbar {
|
|
11777
11812
|
display: none;
|
|
11778
11813
|
}
|
|
11779
|
-
|
|
11814
|
+
@document url-prefix() {
|
|
11780
11815
|
.cds--data-table--sticky-header thead,
|
|
11781
11816
|
.cds--data-table--sticky-header tbody {
|
|
11782
11817
|
scrollbar-width: none;
|
|
@@ -12317,6 +12352,7 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
12317
12352
|
block-size: 100%;
|
|
12318
12353
|
content: "";
|
|
12319
12354
|
inline-size: 100%;
|
|
12355
|
+
inset-inline-start: 0;
|
|
12320
12356
|
will-change: transform-origin, transform, opacity;
|
|
12321
12357
|
}
|
|
12322
12358
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -12776,7 +12812,7 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
12776
12812
|
background-color: var(--cds-background-brand, #0f62fe);
|
|
12777
12813
|
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
|
|
12778
12814
|
inset-block-end: 0;
|
|
12779
|
-
inset-inline: 0
|
|
12815
|
+
inset-inline: 0;
|
|
12780
12816
|
opacity: 0;
|
|
12781
12817
|
pointer-events: none;
|
|
12782
12818
|
transform: translate3d(0, 48px, 0);
|
|
@@ -12991,7 +13027,7 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
12991
13027
|
.cds--table-toolbar--sm .cds--btn--primary {
|
|
12992
13028
|
block-size: 2rem;
|
|
12993
13029
|
min-block-size: auto;
|
|
12994
|
-
padding-block: 0.375rem
|
|
13030
|
+
padding-block: 0.375rem;
|
|
12995
13031
|
}
|
|
12996
13032
|
|
|
12997
13033
|
.cds--table-toolbar--sm .cds--btn--primary.cds--batch-summary__cancel::before {
|
|
@@ -13025,7 +13061,7 @@ tr.cds--parent-row:not(.cds--expandable-row) + tr[data-child-row] {
|
|
|
13025
13061
|
tr.cds--parent-row:not(.cds--expandable-row) + tr[data-child-row] td {
|
|
13026
13062
|
border: 0;
|
|
13027
13063
|
background-color: var(--cds-layer-hover);
|
|
13028
|
-
padding-block: 0
|
|
13064
|
+
padding-block: 0;
|
|
13029
13065
|
transition: padding 150ms cubic-bezier(0.2, 0, 0.38, 0.9), background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
13030
13066
|
}
|
|
13031
13067
|
|
|
@@ -13121,7 +13157,15 @@ tr.cds--parent-row.cds--expandable-row.cds--expandable-row--hover td:first-of-ty
|
|
|
13121
13157
|
}
|
|
13122
13158
|
|
|
13123
13159
|
.cds--data-table td.cds--table-expand {
|
|
13124
|
-
border-block-end: 1px solid var(--cds-border-subtle);
|
|
13160
|
+
border-block-end: 1px solid var(--cds-border-subtle-01, #c6c6c6);
|
|
13161
|
+
}
|
|
13162
|
+
|
|
13163
|
+
.cds--layer-two .cds--data-table td.cds--table-expand {
|
|
13164
|
+
border-block-end: 1px solid var(--cds-border-subtle-02, #e0e0e0);
|
|
13165
|
+
}
|
|
13166
|
+
|
|
13167
|
+
.cds--layer-three .cds--data-table td.cds--table-expand {
|
|
13168
|
+
border-block-end: 1px solid var(--cds-border-subtle-03, #c6c6c6);
|
|
13125
13169
|
}
|
|
13126
13170
|
|
|
13127
13171
|
.cds--data-table th.cds--table-expand + .cds--table-column-checkbox,
|
|
@@ -13394,6 +13438,7 @@ tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover + tr[dat
|
|
|
13394
13438
|
block-size: 100%;
|
|
13395
13439
|
content: "";
|
|
13396
13440
|
inline-size: 100%;
|
|
13441
|
+
inset-inline-start: 0;
|
|
13397
13442
|
will-change: transform-origin, transform, opacity;
|
|
13398
13443
|
}
|
|
13399
13444
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -13447,6 +13492,7 @@ tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover + tr[dat
|
|
|
13447
13492
|
block-size: 100%;
|
|
13448
13493
|
content: "";
|
|
13449
13494
|
inline-size: 100%;
|
|
13495
|
+
inset-inline-start: 0;
|
|
13450
13496
|
will-change: transform-origin, transform, opacity;
|
|
13451
13497
|
}
|
|
13452
13498
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -13478,6 +13524,7 @@ tr.cds--parent-row.cds--data-table--selected.cds--expandable-row--hover + tr[dat
|
|
|
13478
13524
|
block-size: 100%;
|
|
13479
13525
|
content: "";
|
|
13480
13526
|
inline-size: 100%;
|
|
13527
|
+
inset-inline-start: 0;
|
|
13481
13528
|
will-change: transform-origin, transform, opacity;
|
|
13482
13529
|
}
|
|
13483
13530
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -13580,7 +13627,7 @@ th .cds--table-sort__flex {
|
|
|
13580
13627
|
|
|
13581
13628
|
.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,
|
|
13582
13629
|
.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 {
|
|
13583
|
-
padding-block: 0
|
|
13630
|
+
padding-block: 0;
|
|
13584
13631
|
}
|
|
13585
13632
|
|
|
13586
13633
|
.cds--data-table.cds--data-table--top-aligned-header.cds--data-table--sm th.cds--table-sort__header {
|
|
@@ -14480,6 +14527,7 @@ th .cds--table-sort__flex {
|
|
|
14480
14527
|
block-size: 100%;
|
|
14481
14528
|
content: "";
|
|
14482
14529
|
inline-size: 100%;
|
|
14530
|
+
inset-inline-start: 0;
|
|
14483
14531
|
will-change: transform-origin, transform, opacity;
|
|
14484
14532
|
}
|
|
14485
14533
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -14518,6 +14566,7 @@ th .cds--table-sort__flex {
|
|
|
14518
14566
|
block-size: 100%;
|
|
14519
14567
|
content: "";
|
|
14520
14568
|
inline-size: 100%;
|
|
14569
|
+
inset-inline-start: 0;
|
|
14521
14570
|
will-change: transform-origin, transform, opacity;
|
|
14522
14571
|
}
|
|
14523
14572
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -14989,6 +15038,7 @@ button.cds--dropdown-text:focus {
|
|
|
14989
15038
|
block-size: 100%;
|
|
14990
15039
|
content: "";
|
|
14991
15040
|
inline-size: 100%;
|
|
15041
|
+
inset-inline-start: 0;
|
|
14992
15042
|
will-change: transform-origin, transform, opacity;
|
|
14993
15043
|
}
|
|
14994
15044
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -15371,7 +15421,7 @@ button.cds--dropdown-text:focus {
|
|
|
15371
15421
|
inline-size: -webkit-fill-available;
|
|
15372
15422
|
padding-inline-start: 1rem;
|
|
15373
15423
|
}
|
|
15374
|
-
|
|
15424
|
+
@document url-prefix() {
|
|
15375
15425
|
.cds--file__selected-file .cds--file-filename-container-wrap-invalid .cds--file-filename-tooltip {
|
|
15376
15426
|
inline-size: -moz-available;
|
|
15377
15427
|
}
|
|
@@ -15379,7 +15429,7 @@ button.cds--dropdown-text:focus {
|
|
|
15379
15429
|
.cds--file__selected-file .cds--file-filename-tooltip {
|
|
15380
15430
|
inline-size: -webkit-fill-available;
|
|
15381
15431
|
}
|
|
15382
|
-
|
|
15432
|
+
@document url-prefix() {
|
|
15383
15433
|
.cds--file__selected-file .cds--file-filename-tooltip {
|
|
15384
15434
|
inline-size: -moz-available;
|
|
15385
15435
|
}
|
|
@@ -15401,7 +15451,7 @@ button.cds--dropdown-text:focus {
|
|
|
15401
15451
|
text-overflow: ellipsis;
|
|
15402
15452
|
white-space: nowrap;
|
|
15403
15453
|
}
|
|
15404
|
-
|
|
15454
|
+
@document url-prefix() {
|
|
15405
15455
|
.cds--file__selected-file .cds--file-filename-button {
|
|
15406
15456
|
inline-size: -moz-available;
|
|
15407
15457
|
}
|
|
@@ -15621,7 +15671,6 @@ button.cds--dropdown-text:focus {
|
|
|
15621
15671
|
outline-offset: -2px;
|
|
15622
15672
|
}
|
|
15623
15673
|
|
|
15624
|
-
/* stylelint-disable */
|
|
15625
15674
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
15626
15675
|
.cds--file__selected-file {
|
|
15627
15676
|
outline: 1px solid transparent;
|
|
@@ -15634,7 +15683,6 @@ button.cds--dropdown-text:focus {
|
|
|
15634
15683
|
}
|
|
15635
15684
|
}
|
|
15636
15685
|
|
|
15637
|
-
/* stylelint-enable */
|
|
15638
15686
|
.cds--list-box__wrapper--fluid.cds--list-box__wrapper {
|
|
15639
15687
|
position: relative;
|
|
15640
15688
|
background: var(--cds-field);
|
|
@@ -16900,6 +16948,7 @@ button.cds--dropdown-text:focus {
|
|
|
16900
16948
|
block-size: 100%;
|
|
16901
16949
|
content: "";
|
|
16902
16950
|
inline-size: 100%;
|
|
16951
|
+
inset-inline-start: 0;
|
|
16903
16952
|
will-change: transform-origin, transform, opacity;
|
|
16904
16953
|
}
|
|
16905
16954
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -16911,7 +16960,6 @@ button.cds--dropdown-text:focus {
|
|
|
16911
16960
|
display: none;
|
|
16912
16961
|
}
|
|
16913
16962
|
|
|
16914
|
-
/* stylelint-disable */
|
|
16915
16963
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
16916
16964
|
.cds--number__control-btn:hover,
|
|
16917
16965
|
.cds--number__control-btn:focus {
|
|
@@ -16932,7 +16980,6 @@ button.cds--dropdown-text:focus {
|
|
|
16932
16980
|
}
|
|
16933
16981
|
}
|
|
16934
16982
|
|
|
16935
|
-
/* stylelint-enable */
|
|
16936
16983
|
.cds--number-input--fluid {
|
|
16937
16984
|
position: relative;
|
|
16938
16985
|
background: var(--cds-field);
|
|
@@ -17284,7 +17331,7 @@ button.cds--dropdown-text:focus {
|
|
|
17284
17331
|
.cds--select-input::-ms-expand {
|
|
17285
17332
|
display: none;
|
|
17286
17333
|
}
|
|
17287
|
-
|
|
17334
|
+
@document url-prefix() {
|
|
17288
17335
|
.cds--select-input:-moz-focusring, .cds--select-input::-moz-focus-inner {
|
|
17289
17336
|
background-image: none;
|
|
17290
17337
|
color: transparent;
|
|
@@ -17479,6 +17526,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
17479
17526
|
block-size: 100%;
|
|
17480
17527
|
content: "";
|
|
17481
17528
|
inline-size: 100%;
|
|
17529
|
+
inset-inline-start: 0;
|
|
17482
17530
|
will-change: transform-origin, transform, opacity;
|
|
17483
17531
|
}
|
|
17484
17532
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -17890,6 +17938,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
17890
17938
|
block-size: 100%;
|
|
17891
17939
|
content: "";
|
|
17892
17940
|
inline-size: 100%;
|
|
17941
|
+
inset-inline-start: 0;
|
|
17893
17942
|
will-change: transform-origin, transform, opacity;
|
|
17894
17943
|
}
|
|
17895
17944
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -19039,7 +19088,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19039
19088
|
display: none;
|
|
19040
19089
|
}
|
|
19041
19090
|
|
|
19042
|
-
/* stylelint-disable no-duplicate-selectors */
|
|
19043
19091
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
19044
19092
|
.cds--modal-close__icon {
|
|
19045
19093
|
fill: ButtonText;
|
|
@@ -19053,7 +19101,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19053
19101
|
}
|
|
19054
19102
|
}
|
|
19055
19103
|
|
|
19056
|
-
/* stylelint-enable no-duplicate-selectors */
|
|
19057
19104
|
.cds--inline-notification {
|
|
19058
19105
|
position: relative;
|
|
19059
19106
|
display: flex;
|
|
@@ -19382,7 +19429,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19382
19429
|
fill: var(--cds-icon-primary, #161616);
|
|
19383
19430
|
}
|
|
19384
19431
|
|
|
19385
|
-
/* stylelint-disable */
|
|
19386
19432
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
19387
19433
|
.cds--inline-notification {
|
|
19388
19434
|
outline: 1px solid transparent;
|
|
@@ -19409,7 +19455,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19409
19455
|
}
|
|
19410
19456
|
}
|
|
19411
19457
|
|
|
19412
|
-
/* stylelint-enable */
|
|
19413
19458
|
.cds--toast-notification {
|
|
19414
19459
|
display: flex;
|
|
19415
19460
|
block-size: auto;
|
|
@@ -19659,7 +19704,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19659
19704
|
color: var(--cds-text-primary, #161616);
|
|
19660
19705
|
}
|
|
19661
19706
|
|
|
19662
|
-
/* stylelint-disable */
|
|
19663
19707
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
19664
19708
|
.cds--toast-notification {
|
|
19665
19709
|
outline: 1px solid transparent;
|
|
@@ -19685,7 +19729,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19685
19729
|
}
|
|
19686
19730
|
}
|
|
19687
19731
|
|
|
19688
|
-
/* stylelint-enable */
|
|
19689
19732
|
.cds--actionable-notification {
|
|
19690
19733
|
position: relative;
|
|
19691
19734
|
display: flex;
|
|
@@ -20137,7 +20180,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
20137
20180
|
fill: var(--cds-icon-primary, #161616);
|
|
20138
20181
|
}
|
|
20139
20182
|
|
|
20140
|
-
/* stylelint-disable */
|
|
20141
20183
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
20142
20184
|
.cds--actionable-notification {
|
|
20143
20185
|
outline: 1px solid transparent;
|
|
@@ -20160,7 +20202,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
20160
20202
|
}
|
|
20161
20203
|
}
|
|
20162
20204
|
|
|
20163
|
-
/* stylelint-enable */
|
|
20164
20205
|
.cds--data-table-container + .cds--pagination {
|
|
20165
20206
|
border-block-start: 0;
|
|
20166
20207
|
}
|
|
@@ -20776,7 +20817,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20776
20817
|
max-block-size: var(--cds-layout-size-height-local);
|
|
20777
20818
|
text-indent: calc(50% - 4.5px);
|
|
20778
20819
|
}
|
|
20779
|
-
|
|
20820
|
+
@document url-prefix() {
|
|
20780
20821
|
.cds--pagination-nav__page--select {
|
|
20781
20822
|
text-indent: 0;
|
|
20782
20823
|
}
|
|
@@ -21278,6 +21319,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21278
21319
|
block-size: 100%;
|
|
21279
21320
|
content: "";
|
|
21280
21321
|
inline-size: 100%;
|
|
21322
|
+
inset-inline-start: 0;
|
|
21281
21323
|
will-change: transform-origin, transform, opacity;
|
|
21282
21324
|
}
|
|
21283
21325
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -21373,6 +21415,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21373
21415
|
block-size: 100%;
|
|
21374
21416
|
content: "";
|
|
21375
21417
|
inline-size: 100%;
|
|
21418
|
+
inset-inline-start: 0;
|
|
21376
21419
|
will-change: transform-origin, transform, opacity;
|
|
21377
21420
|
}
|
|
21378
21421
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -21403,6 +21446,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21403
21446
|
block-size: 100%;
|
|
21404
21447
|
content: "";
|
|
21405
21448
|
inline-size: 100%;
|
|
21449
|
+
inset-inline-start: 0;
|
|
21406
21450
|
will-change: transform-origin, transform, opacity;
|
|
21407
21451
|
}
|
|
21408
21452
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -21434,6 +21478,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21434
21478
|
block-size: 100%;
|
|
21435
21479
|
content: "";
|
|
21436
21480
|
inline-size: 100%;
|
|
21481
|
+
inset-inline-start: 0;
|
|
21437
21482
|
will-change: transform-origin, transform, opacity;
|
|
21438
21483
|
}
|
|
21439
21484
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -21773,17 +21818,34 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21773
21818
|
}
|
|
21774
21819
|
.cds--slider--disabled .cds--slider__thumb:hover {
|
|
21775
21820
|
cursor: not-allowed;
|
|
21776
|
-
transform:
|
|
21821
|
+
transform: none;
|
|
21777
21822
|
}
|
|
21778
21823
|
.cds--slider--disabled .cds--slider__thumb:focus {
|
|
21779
21824
|
background-color: var(--cds-border-disabled, #c6c6c6);
|
|
21780
21825
|
box-shadow: none;
|
|
21781
21826
|
outline: none;
|
|
21782
|
-
transform:
|
|
21827
|
+
transform: none;
|
|
21783
21828
|
}
|
|
21784
21829
|
.cds--slider--disabled .cds--slider__thumb:active {
|
|
21785
21830
|
background: var(--cds-border-disabled, #c6c6c6);
|
|
21786
|
-
|
|
21831
|
+
box-shadow: none;
|
|
21832
|
+
transform: none;
|
|
21833
|
+
}
|
|
21834
|
+
|
|
21835
|
+
.cds--slider--disabled .cds--slider__thumb--lower,
|
|
21836
|
+
.cds--slider--disabled .cds--slider__thumb--upper {
|
|
21837
|
+
background-color: transparent;
|
|
21838
|
+
}
|
|
21839
|
+
.cds--slider--disabled .cds--slider__thumb--lower:active, .cds--slider--disabled .cds--slider__thumb--lower:hover, .cds--slider--disabled .cds--slider__thumb--lower:focus,
|
|
21840
|
+
.cds--slider--disabled .cds--slider__thumb--upper:active,
|
|
21841
|
+
.cds--slider--disabled .cds--slider__thumb--upper:hover,
|
|
21842
|
+
.cds--slider--disabled .cds--slider__thumb--upper:focus {
|
|
21843
|
+
background-color: transparent;
|
|
21844
|
+
transform: none;
|
|
21845
|
+
}
|
|
21846
|
+
.cds--slider--disabled .cds--slider__thumb--lower .cds--slider__thumb-icon,
|
|
21847
|
+
.cds--slider--disabled .cds--slider__thumb--upper .cds--slider__thumb-icon {
|
|
21848
|
+
fill: var(--cds-border-disabled, #c6c6c6);
|
|
21787
21849
|
}
|
|
21788
21850
|
|
|
21789
21851
|
.cds--slider--disabled .cds--slider__track,
|
|
@@ -21852,6 +21914,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21852
21914
|
block-size: 100%;
|
|
21853
21915
|
content: "";
|
|
21854
21916
|
inline-size: 100%;
|
|
21917
|
+
inset-inline-start: 0;
|
|
21855
21918
|
will-change: transform-origin, transform, opacity;
|
|
21856
21919
|
}
|
|
21857
21920
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -21883,7 +21946,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21883
21946
|
position: absolute;
|
|
21884
21947
|
}
|
|
21885
21948
|
|
|
21886
|
-
/* stylelint-disable */
|
|
21887
21949
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
21888
21950
|
.cds--slider__thumb {
|
|
21889
21951
|
outline: 1px solid transparent;
|
|
@@ -21903,7 +21965,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21903
21965
|
}
|
|
21904
21966
|
}
|
|
21905
21967
|
|
|
21906
|
-
/* stylelint-enable */
|
|
21907
21968
|
.cds--stack-horizontal {
|
|
21908
21969
|
display: inline-grid;
|
|
21909
21970
|
-moz-column-gap: var(--cds-stack-gap, 0);
|
|
@@ -22188,6 +22249,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
22188
22249
|
block-size: 100%;
|
|
22189
22250
|
content: "";
|
|
22190
22251
|
inline-size: 100%;
|
|
22252
|
+
inset-inline-start: 0;
|
|
22191
22253
|
will-change: transform-origin, transform, opacity;
|
|
22192
22254
|
}
|
|
22193
22255
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -22386,6 +22448,12 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
22386
22448
|
outline-style: dotted;
|
|
22387
22449
|
}
|
|
22388
22450
|
}
|
|
22451
|
+
.cds--tabs .cds--tab--overflow-nav-button:hover {
|
|
22452
|
+
background-color: var(--cds-background-hover, rgba(141, 141, 141, 0.12));
|
|
22453
|
+
}
|
|
22454
|
+
.cds--tabs .cds--tab--overflow-nav-button:active {
|
|
22455
|
+
background-color: var(--cds-background-active, rgba(141, 141, 141, 0.5));
|
|
22456
|
+
}
|
|
22389
22457
|
.cds--tabs .cds--tab--overflow-nav-button--hidden {
|
|
22390
22458
|
display: none;
|
|
22391
22459
|
}
|
|
@@ -22394,13 +22462,22 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
22394
22462
|
background-color: var(--cds-layer-accent);
|
|
22395
22463
|
inline-size: 3rem;
|
|
22396
22464
|
}
|
|
22465
|
+
.cds--tabs.cds--tabs--contained .cds--tab--overflow-nav-button:hover {
|
|
22466
|
+
background-color: var(--cds-layer-accent-hover);
|
|
22467
|
+
}
|
|
22468
|
+
.cds--tabs.cds--tabs--contained .cds--tab--overflow-nav-button:active {
|
|
22469
|
+
background-color: var(--cds-layer-accent-active);
|
|
22470
|
+
}
|
|
22397
22471
|
.cds--tabs .cds--tab--overflow-nav-button svg {
|
|
22398
22472
|
z-index: 2;
|
|
22399
22473
|
fill: var(--cds-icon-primary, #161616);
|
|
22400
22474
|
}
|
|
22475
|
+
.cds--tabs .cds--tab--overflow-nav-button svg:active, .cds--tabs .cds--tab--overflow-nav-button svg:hover {
|
|
22476
|
+
fill: var(--cds-icon-primary, #161616);
|
|
22477
|
+
}
|
|
22401
22478
|
.cds--tabs .cds--tab--overflow-nav-button--next {
|
|
22402
|
-
position:
|
|
22403
|
-
inset-block: 0
|
|
22479
|
+
position: relative;
|
|
22480
|
+
inset-block: 0;
|
|
22404
22481
|
inset-inline-end: 0;
|
|
22405
22482
|
}
|
|
22406
22483
|
.cds--tabs .cds--tab--overflow-nav-button--next::before {
|
|
@@ -22418,9 +22495,9 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
22418
22495
|
background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--cds-background, #ffffff));
|
|
22419
22496
|
}
|
|
22420
22497
|
.cds--tabs .cds--tab--overflow-nav-button--previous {
|
|
22421
|
-
position:
|
|
22498
|
+
position: relative;
|
|
22422
22499
|
z-index: 1;
|
|
22423
|
-
inset-block: 0
|
|
22500
|
+
inset-block: 0;
|
|
22424
22501
|
inset-inline-start: 0;
|
|
22425
22502
|
}
|
|
22426
22503
|
.cds--tabs .cds--tab--overflow-nav-button--previous::before {
|
|
@@ -22704,6 +22781,9 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
22704
22781
|
.cds--tabs.cds--tabs__icon--default .cds--tab--list, .cds--tabs.cds--tabs__icon--lg .cds--tab--list {
|
|
22705
22782
|
overflow-x: visible;
|
|
22706
22783
|
}
|
|
22784
|
+
.cds--tabs .cds--tabs__nav-item--icon-only {
|
|
22785
|
+
margin-inline-end: 0.0625rem;
|
|
22786
|
+
}
|
|
22707
22787
|
.cds--tabs .cds--tabs__nav-item--icon-only, .cds--tabs.cds--tabs--contained .cds--tabs__nav-item--icon-only {
|
|
22708
22788
|
display: flex;
|
|
22709
22789
|
align-items: center;
|
|
@@ -22909,6 +22989,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
22909
22989
|
block-size: 100%;
|
|
22910
22990
|
content: "";
|
|
22911
22991
|
inline-size: 100%;
|
|
22992
|
+
inset-inline-start: 0;
|
|
22912
22993
|
will-change: transform-origin, transform, opacity;
|
|
22913
22994
|
}
|
|
22914
22995
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -23769,6 +23850,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
23769
23850
|
block-size: 100%;
|
|
23770
23851
|
content: "";
|
|
23771
23852
|
inline-size: 100%;
|
|
23853
|
+
inset-inline-start: 0;
|
|
23772
23854
|
will-change: transform-origin, transform, opacity;
|
|
23773
23855
|
}
|
|
23774
23856
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -23813,6 +23895,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
23813
23895
|
cursor: pointer;
|
|
23814
23896
|
}
|
|
23815
23897
|
|
|
23898
|
+
.cds--tree-node--hidden {
|
|
23899
|
+
display: none;
|
|
23900
|
+
}
|
|
23901
|
+
|
|
23816
23902
|
.cds--tree-node__children {
|
|
23817
23903
|
box-sizing: border-box;
|
|
23818
23904
|
padding: 0;
|
|
@@ -24030,7 +24116,7 @@ div:has(.cds--header) ~ .cds--content {
|
|
|
24030
24116
|
block-size: 3rem;
|
|
24031
24117
|
border-block-end: 1px solid var(--cds-border-subtle);
|
|
24032
24118
|
inset-block-start: 0;
|
|
24033
|
-
inset-inline: 0
|
|
24119
|
+
inset-inline: 0;
|
|
24034
24120
|
}
|
|
24035
24121
|
.cds--header *,
|
|
24036
24122
|
.cds--header *::before,
|
|
@@ -24455,7 +24541,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
24455
24541
|
background-color: var(--cds-background, #ffffff);
|
|
24456
24542
|
color: var(--cds-text-secondary, #525252);
|
|
24457
24543
|
inline-size: 3rem;
|
|
24458
|
-
inset-block: 0
|
|
24544
|
+
inset-block: 0;
|
|
24459
24545
|
inset-inline-start: 0;
|
|
24460
24546
|
max-inline-size: 16rem;
|
|
24461
24547
|
transition: inline-size 0.11s cubic-bezier(0.2, 0, 1, 0.9), transform 0.11s cubic-bezier(0.2, 0, 1, 0.9);
|
|
@@ -24690,7 +24776,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
24690
24776
|
background-color: var(--cds-border-interactive, #0f62fe);
|
|
24691
24777
|
content: "";
|
|
24692
24778
|
inline-size: 3px;
|
|
24693
|
-
inset-block: 0
|
|
24779
|
+
inset-block: 0;
|
|
24694
24780
|
inset-inline-start: 0;
|
|
24695
24781
|
}
|
|
24696
24782
|
|
|
@@ -24814,7 +24900,7 @@ a.cds--side-nav__link--current::before {
|
|
|
24814
24900
|
background-color: var(--cds-border-interactive, #0f62fe);
|
|
24815
24901
|
content: "";
|
|
24816
24902
|
inline-size: 3px;
|
|
24817
|
-
inset-block: 0
|
|
24903
|
+
inset-block: 0;
|
|
24818
24904
|
inset-inline-start: 0;
|
|
24819
24905
|
}
|
|
24820
24906
|
|
|
@@ -25055,7 +25141,7 @@ div:has(.cds--header) ~ .cds--content {
|
|
|
25055
25141
|
block-size: 3rem;
|
|
25056
25142
|
border-block-end: 1px solid var(--cds-border-subtle);
|
|
25057
25143
|
inset-block-start: 0;
|
|
25058
|
-
inset-inline: 0
|
|
25144
|
+
inset-inline: 0;
|
|
25059
25145
|
}
|
|
25060
25146
|
.cds--header *,
|
|
25061
25147
|
.cds--header *::before,
|
|
@@ -25480,7 +25566,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
25480
25566
|
background-color: var(--cds-background, #ffffff);
|
|
25481
25567
|
color: var(--cds-text-secondary, #525252);
|
|
25482
25568
|
inline-size: 3rem;
|
|
25483
|
-
inset-block: 0
|
|
25569
|
+
inset-block: 0;
|
|
25484
25570
|
inset-inline-start: 0;
|
|
25485
25571
|
max-inline-size: 16rem;
|
|
25486
25572
|
transition: inline-size 0.11s cubic-bezier(0.2, 0, 1, 0.9), transform 0.11s cubic-bezier(0.2, 0, 1, 0.9);
|
|
@@ -25715,7 +25801,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
25715
25801
|
background-color: var(--cds-border-interactive, #0f62fe);
|
|
25716
25802
|
content: "";
|
|
25717
25803
|
inline-size: 3px;
|
|
25718
|
-
inset-block: 0
|
|
25804
|
+
inset-block: 0;
|
|
25719
25805
|
inset-inline-start: 0;
|
|
25720
25806
|
}
|
|
25721
25807
|
|
|
@@ -25839,7 +25925,7 @@ a.cds--side-nav__link--current::before {
|
|
|
25839
25925
|
background-color: var(--cds-border-interactive, #0f62fe);
|
|
25840
25926
|
content: "";
|
|
25841
25927
|
inline-size: 3px;
|
|
25842
|
-
inset-block: 0
|
|
25928
|
+
inset-block: 0;
|
|
25843
25929
|
inset-inline-start: 0;
|
|
25844
25930
|
}
|
|
25845
25931
|
|