@carbon/styles 1.24.0-rc.0 → 1.25.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 +261 -30
- package/css/styles.min.css +1 -1
- package/package.json +11 -11
- package/scss/__tests__/theme-test.js +1 -0
- package/scss/components/_index.scss +2 -0
- package/scss/components/code-snippet/_code-snippet.scss +6 -0
- package/scss/components/combo-button/_combo-button.scss +47 -0
- package/scss/components/combo-button/_index.scss +11 -0
- package/scss/components/data-table/action/_data-table-action.scss +2 -3
- package/scss/components/file-uploader/_file-uploader.scss +3 -0
- package/scss/components/fluid-multiselect/_fluid-multiselect.scss +10 -0
- package/scss/components/fluid-text-area/_fluid-text-area.scss +35 -8
- package/scss/components/form/_form.scss +2 -1
- package/scss/components/menu/_menu.scss +10 -2
- package/scss/components/menu-button/_index.scss +11 -0
- package/scss/components/menu-button/_menu-button.scss +27 -0
- package/scss/components/multiselect/_multiselect.scss +17 -6
- package/scss/components/popover/_popover.scss +48 -0
- package/scss/components/tabs/_tabs.scss +0 -1
- package/scss/components/text-area/_text-area.scss +10 -0
package/css/styles.css
CHANGED
|
@@ -2697,7 +2697,7 @@ em {
|
|
|
2697
2697
|
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
2698
2698
|
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
2699
2699
|
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
2700
|
-
--cds-border-subtle: var(--cds-border-subtle-01, #
|
|
2700
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #c6c6c6);
|
|
2701
2701
|
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
2702
2702
|
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
2703
2703
|
--cds-border-tile: var(--cds-border-tile-01, #c6c6c6);
|
|
@@ -2714,7 +2714,7 @@ em {
|
|
|
2714
2714
|
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
2715
2715
|
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
2716
2716
|
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
2717
|
-
--cds-border-subtle: var(--cds-border-subtle-01, #
|
|
2717
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #c6c6c6);
|
|
2718
2718
|
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
2719
2719
|
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
2720
2720
|
--cds-border-tile: var(--cds-border-tile-01, #c6c6c6);
|
|
@@ -2748,7 +2748,7 @@ em {
|
|
|
2748
2748
|
--cds-layer-accent-active: var(--cds-layer-accent-active-03, #a8a8a8);
|
|
2749
2749
|
--cds-field: var(--cds-field-03, #f4f4f4);
|
|
2750
2750
|
--cds-field-hover: var(--cds-field-hover-03, #e8e8e8);
|
|
2751
|
-
--cds-border-subtle: var(--cds-border-subtle-03, #
|
|
2751
|
+
--cds-border-subtle: var(--cds-border-subtle-03, #c6c6c6);
|
|
2752
2752
|
--cds-border-subtle-selected: var(--cds-border-subtle-selected-03, #c6c6c6);
|
|
2753
2753
|
--cds-border-strong: var(--cds-border-strong-03, #8d8d8d);
|
|
2754
2754
|
--cds-border-tile: var(--cds-border-tile-03, #c6c6c6);
|
|
@@ -2772,9 +2772,9 @@ em {
|
|
|
2772
2772
|
--cds-border-strong-02: #8d8d8d;
|
|
2773
2773
|
--cds-border-strong-03: #8d8d8d;
|
|
2774
2774
|
--cds-border-subtle-00: #e0e0e0;
|
|
2775
|
-
--cds-border-subtle-01: #
|
|
2775
|
+
--cds-border-subtle-01: #c6c6c6;
|
|
2776
2776
|
--cds-border-subtle-02: #e0e0e0;
|
|
2777
|
-
--cds-border-subtle-03: #
|
|
2777
|
+
--cds-border-subtle-03: #c6c6c6;
|
|
2778
2778
|
--cds-border-subtle-selected-01: #c6c6c6;
|
|
2779
2779
|
--cds-border-subtle-selected-02: #c6c6c6;
|
|
2780
2780
|
--cds-border-subtle-selected-03: #c6c6c6;
|
|
@@ -2792,6 +2792,7 @@ em {
|
|
|
2792
2792
|
--cds-focus-inverse: #ffffff;
|
|
2793
2793
|
--cds-highlight: #d0e2ff;
|
|
2794
2794
|
--cds-icon-disabled: rgba(22, 22, 22, 0.25);
|
|
2795
|
+
--cds-icon-interactive: #0f62fe;
|
|
2795
2796
|
--cds-icon-inverse: #ffffff;
|
|
2796
2797
|
--cds-icon-on-color: #ffffff;
|
|
2797
2798
|
--cds-icon-on-color-disabled: #8d8d8d;
|
|
@@ -2866,7 +2867,7 @@ em {
|
|
|
2866
2867
|
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
2867
2868
|
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
2868
2869
|
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
2869
|
-
--cds-border-subtle: var(--cds-border-subtle-01, #
|
|
2870
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #c6c6c6);
|
|
2870
2871
|
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
2871
2872
|
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
2872
2873
|
--cds-border-tile: var(--cds-border-tile-01, #c6c6c6);
|
|
@@ -2944,9 +2945,9 @@ em {
|
|
|
2944
2945
|
--cds-border-strong-01: #8d8d8d;
|
|
2945
2946
|
--cds-border-strong-02: #8d8d8d;
|
|
2946
2947
|
--cds-border-strong-03: #8d8d8d;
|
|
2947
|
-
--cds-border-subtle-00: #
|
|
2948
|
+
--cds-border-subtle-00: #c6c6c6;
|
|
2948
2949
|
--cds-border-subtle-01: #e0e0e0;
|
|
2949
|
-
--cds-border-subtle-02: #
|
|
2950
|
+
--cds-border-subtle-02: #c6c6c6;
|
|
2950
2951
|
--cds-border-subtle-03: #e0e0e0;
|
|
2951
2952
|
--cds-border-subtle-selected-01: #c6c6c6;
|
|
2952
2953
|
--cds-border-subtle-selected-02: #c6c6c6;
|
|
@@ -2965,6 +2966,7 @@ em {
|
|
|
2965
2966
|
--cds-focus-inverse: #ffffff;
|
|
2966
2967
|
--cds-highlight: #d0e2ff;
|
|
2967
2968
|
--cds-icon-disabled: rgba(22, 22, 22, 0.25);
|
|
2969
|
+
--cds-icon-interactive: #0f62fe;
|
|
2968
2970
|
--cds-icon-inverse: #ffffff;
|
|
2969
2971
|
--cds-icon-on-color: #ffffff;
|
|
2970
2972
|
--cds-icon-on-color-disabled: #8d8d8d;
|
|
@@ -3039,7 +3041,7 @@ em {
|
|
|
3039
3041
|
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
3040
3042
|
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
3041
3043
|
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
3042
|
-
--cds-border-subtle: var(--cds-border-subtle-01, #
|
|
3044
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #c6c6c6);
|
|
3043
3045
|
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
3044
3046
|
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
3045
3047
|
--cds-border-tile: var(--cds-border-tile-01, #c6c6c6);
|
|
@@ -3138,6 +3140,7 @@ em {
|
|
|
3138
3140
|
--cds-focus-inverse: #0f62fe;
|
|
3139
3141
|
--cds-highlight: #0043ce;
|
|
3140
3142
|
--cds-icon-disabled: rgba(244, 244, 244, 0.25);
|
|
3143
|
+
--cds-icon-interactive: #ffffff;
|
|
3141
3144
|
--cds-icon-inverse: #161616;
|
|
3142
3145
|
--cds-icon-on-color: #ffffff;
|
|
3143
3146
|
--cds-icon-on-color-disabled: rgba(255, 255, 255, 0.25);
|
|
@@ -3212,7 +3215,7 @@ em {
|
|
|
3212
3215
|
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
3213
3216
|
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
3214
3217
|
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
3215
|
-
--cds-border-subtle: var(--cds-border-subtle-01, #
|
|
3218
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #c6c6c6);
|
|
3216
3219
|
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
3217
3220
|
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
3218
3221
|
--cds-border-tile: var(--cds-border-tile-01, #c6c6c6);
|
|
@@ -3310,6 +3313,7 @@ em {
|
|
|
3310
3313
|
--cds-focus-inverse: #0f62fe;
|
|
3311
3314
|
--cds-highlight: #002d9c;
|
|
3312
3315
|
--cds-icon-disabled: rgba(244, 244, 244, 0.25);
|
|
3316
|
+
--cds-icon-interactive: #ffffff;
|
|
3313
3317
|
--cds-icon-inverse: #161616;
|
|
3314
3318
|
--cds-icon-on-color: #ffffff;
|
|
3315
3319
|
--cds-icon-on-color-disabled: rgba(255, 255, 255, 0.25);
|
|
@@ -3384,7 +3388,7 @@ em {
|
|
|
3384
3388
|
--cds-layer-accent-active: var(--cds-layer-accent-active-01, #a8a8a8);
|
|
3385
3389
|
--cds-field: var(--cds-field-01, #f4f4f4);
|
|
3386
3390
|
--cds-field-hover: var(--cds-field-hover-01, #e8e8e8);
|
|
3387
|
-
--cds-border-subtle: var(--cds-border-subtle-01, #
|
|
3391
|
+
--cds-border-subtle: var(--cds-border-subtle-01, #c6c6c6);
|
|
3388
3392
|
--cds-border-subtle-selected: var(--cds-border-subtle-selected-01, #c6c6c6);
|
|
3389
3393
|
--cds-border-strong: var(--cds-border-strong-01, #8d8d8d);
|
|
3390
3394
|
--cds-border-tile: var(--cds-border-tile-01, #c6c6c6);
|
|
@@ -5049,7 +5053,7 @@ input[data-invalid]:not(:focus),
|
|
|
5049
5053
|
.cds--text-input__field-wrapper[data-invalid] > .cds--text-input--invalid:not(:focus),
|
|
5050
5054
|
.cds--text-area__wrapper[data-invalid] > .cds--text-area--invalid:not(:focus),
|
|
5051
5055
|
.cds--select-input__wrapper[data-invalid] .cds--select-input:not(:focus),
|
|
5052
|
-
.cds--list-box[data-invalid]:not(
|
|
5056
|
+
.cds--list-box[data-invalid]:not(.cds--multi-select--invalid--focused),
|
|
5053
5057
|
.cds--combo-box[data-invalid]:not(.cds--multi-select--selected) .cds--text-input:not(:focus) {
|
|
5054
5058
|
outline: 2px solid var(--cds-support-error, #da1e28);
|
|
5055
5059
|
outline-offset: -2px;
|
|
@@ -5060,7 +5064,7 @@ input[data-invalid]:not(:focus),
|
|
|
5060
5064
|
.cds--text-input__field-wrapper[data-invalid] > .cds--text-input--invalid:not(:focus),
|
|
5061
5065
|
.cds--text-area__wrapper[data-invalid] > .cds--text-area--invalid:not(:focus),
|
|
5062
5066
|
.cds--select-input__wrapper[data-invalid] .cds--select-input:not(:focus),
|
|
5063
|
-
.cds--list-box[data-invalid]:not(
|
|
5067
|
+
.cds--list-box[data-invalid]:not(.cds--multi-select--invalid--focused),
|
|
5064
5068
|
.cds--combo-box[data-invalid]:not(.cds--multi-select--selected) .cds--text-input:not(:focus) {
|
|
5065
5069
|
outline-style: dotted;
|
|
5066
5070
|
}
|
|
@@ -5077,6 +5081,7 @@ input[data-invalid] ~ .cds--form-requirement,
|
|
|
5077
5081
|
.cds--text-input__field-wrapper--warning ~ .cds--form-requirement,
|
|
5078
5082
|
.cds--text-input__field-wrapper--warning > .cds--text-input ~ .cds--form-requirement,
|
|
5079
5083
|
.cds--text-area__wrapper[data-invalid] ~ .cds--form-requirement,
|
|
5084
|
+
.cds--text-area__wrapper--warn ~ .cds--form-requirement,
|
|
5080
5085
|
.cds--select-input__wrapper[data-invalid] ~ .cds--form-requirement,
|
|
5081
5086
|
.cds--select--warning .cds--select-input__wrapper ~ .cds--form-requirement,
|
|
5082
5087
|
.cds--time-picker[data-invalid] ~ .cds--form-requirement,
|
|
@@ -5785,6 +5790,16 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5785
5790
|
-webkit-transition: max-height 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
5786
5791
|
transition: max-height 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
5787
5792
|
}
|
|
5793
|
+
.cds--snippet--multi .cds--snippet-container:focus {
|
|
5794
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
5795
|
+
outline-offset: -2px;
|
|
5796
|
+
outline-offset: 0;
|
|
5797
|
+
}
|
|
5798
|
+
@media screen and (prefers-contrast) {
|
|
5799
|
+
.cds--snippet--multi .cds--snippet-container:focus {
|
|
5800
|
+
outline-style: dotted;
|
|
5801
|
+
}
|
|
5802
|
+
}
|
|
5788
5803
|
|
|
5789
5804
|
.cds--snippet--multi.cds--snippet--expand .cds--snippet-container {
|
|
5790
5805
|
padding-bottom: 1rem;
|
|
@@ -8105,6 +8120,43 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8105
8120
|
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
8106
8121
|
}
|
|
8107
8122
|
|
|
8123
|
+
.cds--combo-button__container {
|
|
8124
|
+
display: -webkit-inline-box;
|
|
8125
|
+
display: -ms-inline-flexbox;
|
|
8126
|
+
display: inline-flex;
|
|
8127
|
+
-webkit-column-gap: 0.0625rem;
|
|
8128
|
+
-moz-column-gap: 0.0625rem;
|
|
8129
|
+
column-gap: 0.0625rem;
|
|
8130
|
+
}
|
|
8131
|
+
|
|
8132
|
+
.cds--combo-button__container--sm .cds--combo-button__primary-action {
|
|
8133
|
+
min-width: 7.9375rem;
|
|
8134
|
+
}
|
|
8135
|
+
|
|
8136
|
+
.cds--combo-button__container--md .cds--combo-button__primary-action {
|
|
8137
|
+
min-width: 7.4375rem;
|
|
8138
|
+
}
|
|
8139
|
+
|
|
8140
|
+
.cds--combo-button__container--lg .cds--combo-button__primary-action {
|
|
8141
|
+
min-width: 6.9375rem;
|
|
8142
|
+
}
|
|
8143
|
+
|
|
8144
|
+
.cds--combo-button__primary-action .cds--btn {
|
|
8145
|
+
width: 100%;
|
|
8146
|
+
}
|
|
8147
|
+
|
|
8148
|
+
.cds--combo-button__trigger svg {
|
|
8149
|
+
-webkit-transition: -webkit-transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
8150
|
+
transition: -webkit-transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
8151
|
+
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
8152
|
+
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9), -webkit-transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
8153
|
+
}
|
|
8154
|
+
|
|
8155
|
+
.cds--combo-button__container--open .cds--combo-button__trigger svg {
|
|
8156
|
+
-webkit-transform: rotate(180deg);
|
|
8157
|
+
transform: rotate(180deg);
|
|
8158
|
+
}
|
|
8159
|
+
|
|
8108
8160
|
.cds--contained-list__header {
|
|
8109
8161
|
position: -webkit-sticky;
|
|
8110
8162
|
position: sticky;
|
|
@@ -9651,9 +9703,8 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
9651
9703
|
}
|
|
9652
9704
|
|
|
9653
9705
|
.cds--batch-actions--active {
|
|
9654
|
-
|
|
9655
|
-
|
|
9656
|
-
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
|
9706
|
+
-webkit-clip-path: polygon(0 0, 200% 0, 200% 200%, 0 200%);
|
|
9707
|
+
clip-path: polygon(0 0, 200% 0, 200% 200%, 0 200%);
|
|
9657
9708
|
pointer-events: all;
|
|
9658
9709
|
-webkit-transform: translate3d(0, 0, 0);
|
|
9659
9710
|
transform: translate3d(0, 0, 0);
|
|
@@ -12655,6 +12706,24 @@ button.cds--dropdown-text:focus {
|
|
|
12655
12706
|
}
|
|
12656
12707
|
|
|
12657
12708
|
.cds--file__drop-container {
|
|
12709
|
+
-webkit-box-sizing: border-box;
|
|
12710
|
+
box-sizing: border-box;
|
|
12711
|
+
padding: 0;
|
|
12712
|
+
border: 0;
|
|
12713
|
+
margin: 0;
|
|
12714
|
+
font-family: inherit;
|
|
12715
|
+
font-size: 100%;
|
|
12716
|
+
vertical-align: baseline;
|
|
12717
|
+
display: inline-block;
|
|
12718
|
+
padding: 0;
|
|
12719
|
+
border: 0;
|
|
12720
|
+
-webkit-appearance: none;
|
|
12721
|
+
-moz-appearance: none;
|
|
12722
|
+
appearance: none;
|
|
12723
|
+
background: none;
|
|
12724
|
+
cursor: pointer;
|
|
12725
|
+
text-align: start;
|
|
12726
|
+
width: 100%;
|
|
12658
12727
|
display: -webkit-box;
|
|
12659
12728
|
display: -ms-flexbox;
|
|
12660
12729
|
display: flex;
|
|
@@ -12673,6 +12742,15 @@ button.cds--dropdown-text:focus {
|
|
|
12673
12742
|
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
12674
12743
|
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
12675
12744
|
}
|
|
12745
|
+
.cds--file__drop-container *,
|
|
12746
|
+
.cds--file__drop-container *::before,
|
|
12747
|
+
.cds--file__drop-container *::after {
|
|
12748
|
+
-webkit-box-sizing: inherit;
|
|
12749
|
+
box-sizing: inherit;
|
|
12750
|
+
}
|
|
12751
|
+
.cds--file__drop-container::-moz-focus-inner {
|
|
12752
|
+
border: 0;
|
|
12753
|
+
}
|
|
12676
12754
|
|
|
12677
12755
|
.cds--file__drop-container--drag-over {
|
|
12678
12756
|
background: none;
|
|
@@ -13209,6 +13287,14 @@ button.cds--dropdown-text:focus {
|
|
|
13209
13287
|
bottom: 0.5rem;
|
|
13210
13288
|
}
|
|
13211
13289
|
|
|
13290
|
+
.cds--multi-select__wrapper.cds--list-box__wrapper--fluid--focus:not(.cds--multi-select--filterable__wrapper) .cds--list-box__field--wrapper--input-focused {
|
|
13291
|
+
outline: none;
|
|
13292
|
+
}
|
|
13293
|
+
|
|
13294
|
+
.cds--list-box__wrapper--fluid .cds--tag.cds--tag--filter {
|
|
13295
|
+
margin-top: 1.25rem;
|
|
13296
|
+
}
|
|
13297
|
+
|
|
13212
13298
|
.cds--list-box__wrapper--fluid .cds--multi-select--filterable--input-focused {
|
|
13213
13299
|
outline: none;
|
|
13214
13300
|
outline-offset: 0;
|
|
@@ -15110,7 +15196,13 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15110
15196
|
display: none;
|
|
15111
15197
|
}
|
|
15112
15198
|
|
|
15113
|
-
.cds--text-area--fluid .cds--text-area--invalid
|
|
15199
|
+
.cds--text-area--fluid .cds--text-area--invalid,
|
|
15200
|
+
.cds--text-area--fluid .cds--text-area--warn {
|
|
15201
|
+
resize: none;
|
|
15202
|
+
}
|
|
15203
|
+
|
|
15204
|
+
.cds--text-area--fluid .cds--text-area__wrapper[data-invalid] .cds--text-area__divider,
|
|
15205
|
+
.cds--text-area--fluid .cds--text-area__wrapper--warn .cds--text-area__divider {
|
|
15114
15206
|
display: block;
|
|
15115
15207
|
border-style: solid;
|
|
15116
15208
|
border-color: var(--cds-border-subtle);
|
|
@@ -15118,7 +15210,8 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15118
15210
|
margin: 0 1rem;
|
|
15119
15211
|
}
|
|
15120
15212
|
|
|
15121
|
-
.cds--text-area--fluid .cds--text-
|
|
15213
|
+
.cds--text-area--fluid .cds--text-area__wrapper[data-invalid] .cds--form-requirement.cds--form-requirement,
|
|
15214
|
+
.cds--text-area--fluid .cds--text-area__wrapper--warn .cds--form-requirement.cds--form-requirement {
|
|
15122
15215
|
position: relative;
|
|
15123
15216
|
display: block;
|
|
15124
15217
|
overflow: visible;
|
|
@@ -15126,10 +15219,23 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15126
15219
|
padding: 0.5rem 2.5rem 0.5rem 1rem;
|
|
15127
15220
|
margin: 0;
|
|
15128
15221
|
background: var(--cds-field);
|
|
15222
|
+
}
|
|
15223
|
+
|
|
15224
|
+
.cds--text-area--fluid .cds--text-area__wrapper--warn .cds--form-requirement.cds--form-requirement {
|
|
15225
|
+
border-bottom: 1px solid var(--cds-border-strong);
|
|
15226
|
+
color: var(--cds-text-primary, #161616);
|
|
15227
|
+
}
|
|
15228
|
+
|
|
15229
|
+
.cds--text-area--fluid .cds--text-area__wrapper[data-invalid] .cds--form-requirement.cds--form-requirement {
|
|
15230
|
+
border-bottom: none;
|
|
15129
15231
|
color: var(--cds-text-error, #da1e28);
|
|
15130
15232
|
}
|
|
15131
15233
|
|
|
15132
|
-
.cds--
|
|
15234
|
+
.cds--text-area--fluid .cds--text-area--warn {
|
|
15235
|
+
border-bottom: none;
|
|
15236
|
+
}
|
|
15237
|
+
|
|
15238
|
+
.cds--modal .cds--text-area--fluid .cds--text-area__wrapper[data-invalid] .cds--text-area__divider + .cds--form-requirement {
|
|
15133
15239
|
background: var(--cds-field-02, #ffffff);
|
|
15134
15240
|
}
|
|
15135
15241
|
|
|
@@ -15722,12 +15828,28 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15722
15828
|
content: "▪";
|
|
15723
15829
|
}
|
|
15724
15830
|
|
|
15831
|
+
.cds--menu-button__trigger:not(.cds--btn--ghost) {
|
|
15832
|
+
min-width: 10rem;
|
|
15833
|
+
}
|
|
15834
|
+
|
|
15835
|
+
.cds--menu-button__trigger svg {
|
|
15836
|
+
-webkit-transition: -webkit-transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
15837
|
+
transition: -webkit-transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
15838
|
+
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
15839
|
+
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9), -webkit-transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
15840
|
+
}
|
|
15841
|
+
|
|
15842
|
+
.cds--menu-button__trigger--open svg {
|
|
15843
|
+
-webkit-transform: rotate(180deg);
|
|
15844
|
+
transform: rotate(180deg);
|
|
15845
|
+
}
|
|
15846
|
+
|
|
15725
15847
|
.cds--menu {
|
|
15726
15848
|
-webkit-box-shadow: 0 2px 6px var(--cds-shadow, rgba(0, 0, 0, 0.3));
|
|
15727
15849
|
box-shadow: 0 2px 6px var(--cds-shadow, rgba(0, 0, 0, 0.3));
|
|
15728
15850
|
position: fixed;
|
|
15729
15851
|
z-index: 9000;
|
|
15730
|
-
min-width:
|
|
15852
|
+
min-width: 10rem;
|
|
15731
15853
|
max-width: 18rem;
|
|
15732
15854
|
padding: 0.25rem 0;
|
|
15733
15855
|
background-color: var(--cds-layer);
|
|
@@ -15735,6 +15857,10 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15735
15857
|
visibility: hidden;
|
|
15736
15858
|
}
|
|
15737
15859
|
|
|
15860
|
+
.cds--menu--with-icons {
|
|
15861
|
+
min-width: 12rem;
|
|
15862
|
+
}
|
|
15863
|
+
|
|
15738
15864
|
.cds--menu--open {
|
|
15739
15865
|
visibility: visible;
|
|
15740
15866
|
}
|
|
@@ -15770,8 +15896,8 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15770
15896
|
-moz-column-gap: 0.5rem;
|
|
15771
15897
|
column-gap: 0.5rem;
|
|
15772
15898
|
cursor: pointer;
|
|
15773
|
-
grid-template-columns:
|
|
15774
|
-
grid-template-columns:
|
|
15899
|
+
grid-template-columns: 1fr -webkit-max-content;
|
|
15900
|
+
grid-template-columns: 1fr max-content;
|
|
15775
15901
|
padding-inline: 1rem;
|
|
15776
15902
|
-webkit-transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
15777
15903
|
transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
@@ -15807,6 +15933,10 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15807
15933
|
}
|
|
15808
15934
|
|
|
15809
15935
|
.cds--menu-item__icon {
|
|
15936
|
+
display: none;
|
|
15937
|
+
}
|
|
15938
|
+
|
|
15939
|
+
.cds--menu--with-icons .cds--menu-item__icon {
|
|
15810
15940
|
display: -webkit-box;
|
|
15811
15941
|
display: -ms-flexbox;
|
|
15812
15942
|
display: flex;
|
|
@@ -16225,12 +16355,24 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
16225
16355
|
}
|
|
16226
16356
|
|
|
16227
16357
|
/* stylelint-enable */
|
|
16228
|
-
.cds--multi-select .cds--
|
|
16229
|
-
|
|
16230
|
-
|
|
16358
|
+
.cds--multi-select .cds--list-box__field--wrapper {
|
|
16359
|
+
display: -webkit-inline-box;
|
|
16360
|
+
display: -ms-inline-flexbox;
|
|
16361
|
+
display: inline-flex;
|
|
16362
|
+
width: 100%;
|
|
16363
|
+
height: calc(100% + 1px);
|
|
16364
|
+
-webkit-box-align: center;
|
|
16365
|
+
-ms-flex-align: center;
|
|
16366
|
+
align-items: center;
|
|
16367
|
+
}
|
|
16368
|
+
|
|
16369
|
+
.cds--multi-select .cds--list-box__field:focus {
|
|
16370
|
+
outline: 2px solid transparent;
|
|
16371
|
+
outline-offset: -2px;
|
|
16231
16372
|
}
|
|
16232
16373
|
|
|
16233
|
-
.cds--multi-select
|
|
16374
|
+
.cds--multi-select .cds--tag {
|
|
16375
|
+
min-width: auto;
|
|
16234
16376
|
margin: 0 0.5rem 0 1rem;
|
|
16235
16377
|
}
|
|
16236
16378
|
|
|
@@ -16281,17 +16423,20 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
16281
16423
|
outline: none;
|
|
16282
16424
|
}
|
|
16283
16425
|
|
|
16284
|
-
.cds--multi-select--filterable--input-focused
|
|
16426
|
+
.cds--multi-select--filterable--input-focused,
|
|
16427
|
+
.cds--multi-select .cds--list-box__field--wrapper--input-focused {
|
|
16285
16428
|
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
16286
16429
|
outline-offset: -2px;
|
|
16287
16430
|
}
|
|
16288
16431
|
@media screen and (prefers-contrast) {
|
|
16289
|
-
.cds--multi-select--filterable--input-focused
|
|
16432
|
+
.cds--multi-select--filterable--input-focused,
|
|
16433
|
+
.cds--multi-select .cds--list-box__field--wrapper--input-focused {
|
|
16290
16434
|
outline-style: dotted;
|
|
16291
16435
|
}
|
|
16292
16436
|
}
|
|
16293
16437
|
|
|
16294
|
-
.cds--multi-select--filterable.cds--multi-select--selected .cds--text-input
|
|
16438
|
+
.cds--multi-select--filterable.cds--multi-select--selected .cds--text-input,
|
|
16439
|
+
.cds--multi-select.cds--multi-select--selected .cds--list-box__field {
|
|
16295
16440
|
padding-left: 0;
|
|
16296
16441
|
}
|
|
16297
16442
|
|
|
@@ -18921,6 +19066,84 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
18921
19066
|
transform: translate(calc(-1 * var(--cds-popover-offset, 0rem) + 100%), -50%);
|
|
18922
19067
|
}
|
|
18923
19068
|
|
|
19069
|
+
.cds--popover--tab-tip .cds--popover-content {
|
|
19070
|
+
border-radius: 0;
|
|
19071
|
+
}
|
|
19072
|
+
|
|
19073
|
+
.cds--popover--tab-tip__button {
|
|
19074
|
+
-webkit-box-sizing: border-box;
|
|
19075
|
+
box-sizing: border-box;
|
|
19076
|
+
padding: 0;
|
|
19077
|
+
border: 0;
|
|
19078
|
+
margin: 0;
|
|
19079
|
+
font-family: inherit;
|
|
19080
|
+
font-size: 100%;
|
|
19081
|
+
vertical-align: baseline;
|
|
19082
|
+
display: inline-block;
|
|
19083
|
+
padding: 0;
|
|
19084
|
+
border: 0;
|
|
19085
|
+
-webkit-appearance: none;
|
|
19086
|
+
-moz-appearance: none;
|
|
19087
|
+
appearance: none;
|
|
19088
|
+
background: none;
|
|
19089
|
+
cursor: pointer;
|
|
19090
|
+
text-align: start;
|
|
19091
|
+
width: 100%;
|
|
19092
|
+
position: relative;
|
|
19093
|
+
display: -webkit-inline-box;
|
|
19094
|
+
display: -ms-inline-flexbox;
|
|
19095
|
+
display: inline-flex;
|
|
19096
|
+
width: 2rem;
|
|
19097
|
+
height: 2rem;
|
|
19098
|
+
-webkit-box-align: center;
|
|
19099
|
+
-ms-flex-align: center;
|
|
19100
|
+
align-items: center;
|
|
19101
|
+
-webkit-box-pack: center;
|
|
19102
|
+
-ms-flex-pack: center;
|
|
19103
|
+
justify-content: center;
|
|
19104
|
+
}
|
|
19105
|
+
.cds--popover--tab-tip__button *,
|
|
19106
|
+
.cds--popover--tab-tip__button *::before,
|
|
19107
|
+
.cds--popover--tab-tip__button *::after {
|
|
19108
|
+
-webkit-box-sizing: inherit;
|
|
19109
|
+
box-sizing: inherit;
|
|
19110
|
+
}
|
|
19111
|
+
.cds--popover--tab-tip__button::-moz-focus-inner {
|
|
19112
|
+
border: 0;
|
|
19113
|
+
}
|
|
19114
|
+
.cds--popover--tab-tip__button:focus {
|
|
19115
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
19116
|
+
outline-offset: -2px;
|
|
19117
|
+
}
|
|
19118
|
+
@media screen and (prefers-contrast) {
|
|
19119
|
+
.cds--popover--tab-tip__button:focus {
|
|
19120
|
+
outline-style: dotted;
|
|
19121
|
+
}
|
|
19122
|
+
}
|
|
19123
|
+
.cds--popover--tab-tip__button:hover {
|
|
19124
|
+
background-color: var(--cds-layer-hover);
|
|
19125
|
+
}
|
|
19126
|
+
|
|
19127
|
+
.cds--popover--tab-tip.cds--popover--open .cds--popover--tab-tip__button {
|
|
19128
|
+
background: var(--cds-layer);
|
|
19129
|
+
-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
|
19130
|
+
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
|
19131
|
+
}
|
|
19132
|
+
|
|
19133
|
+
.cds--popover--tab-tip.cds--popover--open .cds--popover--tab-tip__button:not(:focus)::after {
|
|
19134
|
+
position: absolute;
|
|
19135
|
+
z-index: 6001;
|
|
19136
|
+
bottom: 0;
|
|
19137
|
+
width: 100%;
|
|
19138
|
+
height: 2px;
|
|
19139
|
+
background: var(--cds-layer);
|
|
19140
|
+
content: "";
|
|
19141
|
+
}
|
|
19142
|
+
|
|
19143
|
+
.cds--popover--tab-tip__button svg {
|
|
19144
|
+
fill: var(--cds-icon-primary, #161616);
|
|
19145
|
+
}
|
|
19146
|
+
|
|
18924
19147
|
.cds--progress-bar__label {
|
|
18925
19148
|
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
18926
19149
|
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
@@ -20744,7 +20967,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20744
20967
|
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
20745
20968
|
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
20746
20969
|
overflow: hidden;
|
|
20747
|
-
max-width: 10rem;
|
|
20748
20970
|
padding: 0.75rem 1rem 0.5rem;
|
|
20749
20971
|
border-bottom: 2px solid var(--cds-border-subtle);
|
|
20750
20972
|
color: var(--cds-text-secondary, #525252);
|
|
@@ -21071,6 +21293,15 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21071
21293
|
fill: var(--cds-support-error, #da1e28);
|
|
21072
21294
|
}
|
|
21073
21295
|
|
|
21296
|
+
.cds--text-area__invalid-icon--warning {
|
|
21297
|
+
fill: var(--cds-support-warning, #f1c21b);
|
|
21298
|
+
}
|
|
21299
|
+
|
|
21300
|
+
.cds--text-area__invalid-icon--warning path[fill] {
|
|
21301
|
+
fill: #000000;
|
|
21302
|
+
opacity: 1;
|
|
21303
|
+
}
|
|
21304
|
+
|
|
21074
21305
|
.cds--text-area__counter-alert {
|
|
21075
21306
|
position: absolute;
|
|
21076
21307
|
overflow: hidden;
|