@carbon/styles 1.105.0 → 1.106.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 +196 -272
- package/css/styles.min.css +1 -1
- package/package.json +5 -5
- package/scss/components/__tests__/tabs-test.js +12 -0
- package/scss/components/form/_form.scss +3 -1
- package/scss/components/pagination/_pagination.scss +7 -37
- package/scss/components/popover/_popover.scss +122 -142
- package/scss/components/search/_search.scss +28 -88
- package/scss/components/select/_select.scss +20 -26
- package/scss/components/slug/_slug.scss +8 -0
- package/scss/components/tabs/_tabs.scss +1 -1
- package/scss/components/text-input/_text-input.scss +63 -66
package/css/styles.css
CHANGED
|
@@ -1117,6 +1117,14 @@ em {
|
|
|
1117
1117
|
--cds-grid-column-hang: 0.96875rem;
|
|
1118
1118
|
}
|
|
1119
1119
|
|
|
1120
|
+
.cds--css-grid--with-row-gap {
|
|
1121
|
+
row-gap: var(--cds-grid-gutter);
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.cds--css-grid--narrow.cds--css-grid--with-row-gap {
|
|
1125
|
+
row-gap: calc(var(--cds-grid-gutter) / 2);
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1120
1128
|
.cds--css-grid--start {
|
|
1121
1129
|
margin-inline-start: 0;
|
|
1122
1130
|
}
|
|
@@ -1147,11 +1155,24 @@ em {
|
|
|
1147
1155
|
}
|
|
1148
1156
|
|
|
1149
1157
|
.cds--subgrid--condensed {
|
|
1158
|
+
--cds-grid-gutter: 0.0625rem;
|
|
1150
1159
|
--cds-grid-gutter-start: 0.03125rem;
|
|
1151
1160
|
--cds-grid-gutter-end: 0.03125rem;
|
|
1152
1161
|
--cds-grid-column-hang: 0.96875rem;
|
|
1153
1162
|
}
|
|
1154
1163
|
|
|
1164
|
+
.cds--subgrid--with-row-gap {
|
|
1165
|
+
row-gap: 2rem;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.cds--subgrid--narrow.cds--subgrid--with-row-gap {
|
|
1169
|
+
row-gap: 1rem;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.cds--subgrid--condensed.cds--subgrid--with-row-gap {
|
|
1173
|
+
row-gap: 0.0625rem;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1155
1176
|
.cds--grid-column-hang {
|
|
1156
1177
|
margin-inline-start: var(--cds-grid-column-hang);
|
|
1157
1178
|
}
|
|
@@ -4694,7 +4715,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4694
4715
|
inset-inline-end: calc(100% + 0.25rem);
|
|
4695
4716
|
}
|
|
4696
4717
|
|
|
4697
|
-
|
|
4718
|
+
.cds--popover--bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
4698
4719
|
transform: translate(50%, calc(100% + var(--cds-popover-offset, 0rem)));
|
|
4699
4720
|
}
|
|
4700
4721
|
|
|
@@ -4705,8 +4726,8 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4705
4726
|
transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(100% + var(--cds-popover-offset, 0rem)));
|
|
4706
4727
|
}
|
|
4707
4728
|
|
|
4708
|
-
|
|
4709
|
-
|
|
4729
|
+
.cds--popover--bottom-left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
4730
|
+
.cds--popover--bottom-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
4710
4731
|
inset-inline-end: calc(50% - var(--cds-popover-offset, 0rem));
|
|
4711
4732
|
inset-inline-start: initial;
|
|
4712
4733
|
}
|
|
@@ -4718,8 +4739,8 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4718
4739
|
transform: translate(var(--cds-popover-offset, 0rem), calc(100% + var(--cds-popover-offset, 0rem)));
|
|
4719
4740
|
}
|
|
4720
4741
|
|
|
4721
|
-
|
|
4722
|
-
|
|
4742
|
+
.cds--popover--bottom-right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
4743
|
+
.cds--popover--bottom-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
4723
4744
|
inset-inline-start: calc(50% - var(--cds-popover-offset, 0rem));
|
|
4724
4745
|
}
|
|
4725
4746
|
|
|
@@ -4774,11 +4795,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4774
4795
|
inset-inline-start: 0.5px;
|
|
4775
4796
|
}
|
|
4776
4797
|
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4798
|
+
.cds--popover--bottom:dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
4799
|
+
.cds--popover--bottom-left:dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
4800
|
+
.cds--popover--bottom-start:dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
4801
|
+
.cds--popover--bottom-right:dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
4802
|
+
.cds--popover--bottom-end:dir(rtl) > .cds--popover > .cds--popover-caret {
|
|
4782
4803
|
transform: translate(50%, var(--cds-popover-offset, 0rem));
|
|
4783
4804
|
}
|
|
4784
4805
|
|
|
@@ -4825,7 +4846,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4825
4846
|
transform: translate(-50%, calc(-100% - var(--cds-popover-offset, 0rem)));
|
|
4826
4847
|
}
|
|
4827
4848
|
|
|
4828
|
-
|
|
4849
|
+
.cds--popover--top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
4829
4850
|
transform: translate(50%, calc(-100% - var(--cds-popover-offset, 0rem)));
|
|
4830
4851
|
}
|
|
4831
4852
|
|
|
@@ -4836,8 +4857,8 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4836
4857
|
transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(-100% - var(--cds-popover-offset, 0rem)));
|
|
4837
4858
|
}
|
|
4838
4859
|
|
|
4839
|
-
|
|
4840
|
-
|
|
4860
|
+
.cds--popover--top-left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
4861
|
+
.cds--popover--top-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
4841
4862
|
inset-inline-end: calc(50% - var(--cds-popover-offset, 0rem));
|
|
4842
4863
|
inset-inline-start: initial;
|
|
4843
4864
|
}
|
|
@@ -4849,8 +4870,8 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4849
4870
|
transform: translate(var(--cds-popover-offset, 0rem), calc(-100% - var(--cds-popover-offset, 0rem)));
|
|
4850
4871
|
}
|
|
4851
4872
|
|
|
4852
|
-
|
|
4853
|
-
|
|
4873
|
+
.cds--popover--top-right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
4874
|
+
.cds--popover--top-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
4854
4875
|
inset-inline-start: calc(50% - var(--cds-popover-offset, 0rem));
|
|
4855
4876
|
}
|
|
4856
4877
|
|
|
@@ -4905,11 +4926,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4905
4926
|
inset-inline-start: 0.5px;
|
|
4906
4927
|
}
|
|
4907
4928
|
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4929
|
+
.cds--popover--top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
4930
|
+
.cds--popover--top-left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
4931
|
+
.cds--popover--top-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
4932
|
+
.cds--popover--top-right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
4933
|
+
.cds--popover--top-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret {
|
|
4913
4934
|
transform: translate(50%, calc(-1 * var(--cds-popover-offset, 0rem)));
|
|
4914
4935
|
}
|
|
4915
4936
|
|
|
@@ -4970,11 +4991,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4970
4991
|
transform: translate(var(--cds-popover-offset, 0rem), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));
|
|
4971
4992
|
}
|
|
4972
4993
|
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4994
|
+
.cds--popover--right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
4995
|
+
.cds--popover--right-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
4996
|
+
.cds--popover--right-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
4997
|
+
.cds--popover--right-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
4998
|
+
.cds--popover--right-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
4978
4999
|
inset-inline-end: 100%;
|
|
4979
5000
|
inset-inline-start: initial;
|
|
4980
5001
|
}
|
|
@@ -5011,11 +5032,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
5011
5032
|
inline-size: var(--cds-popover-caret-height, 0.375rem);
|
|
5012
5033
|
}
|
|
5013
5034
|
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5035
|
+
.cds--popover--right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
5036
|
+
.cds--popover--right-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
5037
|
+
.cds--popover--right-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
5038
|
+
.cds--popover--right-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
5039
|
+
.cds--popover--right-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret {
|
|
5019
5040
|
inset-inline-end: 100%;
|
|
5020
5041
|
inset-inline-start: initial;
|
|
5021
5042
|
}
|
|
@@ -5037,11 +5058,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
5037
5058
|
inset-inline-start: 1px;
|
|
5038
5059
|
}
|
|
5039
5060
|
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
5061
|
+
.cds--popover--border.cds--popover--right:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
|
|
5062
|
+
.cds--popover--border.cds--popover--right-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
|
|
5063
|
+
.cds--popover--border.cds--popover--right-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
|
|
5064
|
+
.cds--popover--border.cds--popover--right-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
|
|
5065
|
+
.cds--popover--border.cds--popover--right-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after {
|
|
5045
5066
|
inset-inline-start: -1px;
|
|
5046
5067
|
}
|
|
5047
5068
|
|
|
@@ -5080,18 +5101,18 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
5080
5101
|
inset-inline-start: 1px;
|
|
5081
5102
|
}
|
|
5082
5103
|
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5104
|
+
.cds--popover--border.cds--popover--right.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
|
|
5105
|
+
.cds--popover--border.cds--popover--right-top.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
|
|
5106
|
+
.cds--popover--border.cds--popover--right-start.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
|
|
5107
|
+
.cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
|
|
5108
|
+
.cds--popover--border.cds--popover--right-end.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before {
|
|
5088
5109
|
margin-inline-start: 1px;
|
|
5089
5110
|
}
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5111
|
+
.cds--popover--border.cds--popover--right.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
|
|
5112
|
+
.cds--popover--border.cds--popover--right-top.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
|
|
5113
|
+
.cds--popover--border.cds--popover--right-start.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
|
|
5114
|
+
.cds--popover--border.cds--popover--right-bottom.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
|
|
5115
|
+
.cds--popover--border.cds--popover--right-end.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after {
|
|
5095
5116
|
inset-inline-start: 0;
|
|
5096
5117
|
}
|
|
5097
5118
|
|
|
@@ -5115,11 +5136,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
5115
5136
|
transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));
|
|
5116
5137
|
}
|
|
5117
5138
|
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
|
|
5139
|
+
.cds--popover--left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
5140
|
+
.cds--popover--left-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
5141
|
+
.cds--popover--left-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
5142
|
+
.cds--popover--left-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
5143
|
+
.cds--popover--left-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
5123
5144
|
inset-inline-end: initial;
|
|
5124
5145
|
inset-inline-start: 100%;
|
|
5125
5146
|
}
|
|
@@ -5156,11 +5177,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
5156
5177
|
inline-size: var(--cds-popover-caret-height, 0.375rem);
|
|
5157
5178
|
}
|
|
5158
5179
|
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5180
|
+
.cds--popover--left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
5181
|
+
.cds--popover--left-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
5182
|
+
.cds--popover--left-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
5183
|
+
.cds--popover--left-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret,
|
|
5184
|
+
.cds--popover--left-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret {
|
|
5164
5185
|
inset-inline-end: initial;
|
|
5165
5186
|
inset-inline-start: 100%;
|
|
5166
5187
|
}
|
|
@@ -5182,11 +5203,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
5182
5203
|
inset-inline-start: -1px;
|
|
5183
5204
|
}
|
|
5184
5205
|
|
|
5185
|
-
|
|
5186
|
-
|
|
5187
|
-
|
|
5188
|
-
|
|
5189
|
-
|
|
5206
|
+
.cds--popover--border.cds--popover--left:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
|
|
5207
|
+
.cds--popover--border.cds--popover--left-top:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
|
|
5208
|
+
.cds--popover--border.cds--popover--left-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
|
|
5209
|
+
.cds--popover--border.cds--popover--left-bottom:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after,
|
|
5210
|
+
.cds--popover--border.cds--popover--left-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-caret::after {
|
|
5190
5211
|
inset-inline-start: 1px;
|
|
5191
5212
|
}
|
|
5192
5213
|
|
|
@@ -5225,18 +5246,18 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
5225
5246
|
inset-inline-start: -1px;
|
|
5226
5247
|
}
|
|
5227
5248
|
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5249
|
+
.cds--popover--border.cds--popover--left.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
|
|
5250
|
+
.cds--popover--border.cds--popover--left-top.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
|
|
5251
|
+
.cds--popover--border.cds--popover--left-start.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
|
|
5252
|
+
.cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before,
|
|
5253
|
+
.cds--popover--border.cds--popover--left-end.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::before {
|
|
5233
5254
|
margin-inline-start: -1px;
|
|
5234
5255
|
}
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5256
|
+
.cds--popover--border.cds--popover--left.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
|
|
5257
|
+
.cds--popover--border.cds--popover--left-top.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
|
|
5258
|
+
.cds--popover--border.cds--popover--left-start.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
|
|
5259
|
+
.cds--popover--border.cds--popover--left-bottom.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after,
|
|
5260
|
+
.cds--popover--border.cds--popover--left-end.cds--popover--auto-align:dir(rtl) > .cds--popover > .cds--popover-content > .cds--popover-caret::after {
|
|
5240
5261
|
inset-inline-start: 0;
|
|
5241
5262
|
}
|
|
5242
5263
|
|
|
@@ -5246,15 +5267,15 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
5246
5267
|
|
|
5247
5268
|
.cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
|
|
5248
5269
|
.cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
|
|
5249
|
-
|
|
5250
|
-
|
|
5270
|
+
.cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
5271
|
+
.cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
5251
5272
|
inset-inline-start: 0;
|
|
5252
5273
|
}
|
|
5253
5274
|
|
|
5254
5275
|
.cds--popover--tab-tip.cds--popover--top-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
|
|
5255
5276
|
.cds--popover--tab-tip.cds--popover--bottom-end:not(.cds--popover--auto-align) > .cds--popover > .cds--popover-content,
|
|
5256
|
-
|
|
5257
|
-
|
|
5277
|
+
.cds--popover--tab-tip.cds--popover--top-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content,
|
|
5278
|
+
.cds--popover--tab-tip.cds--popover--bottom-start:not(.cds--popover--auto-align):dir(rtl) > .cds--popover > .cds--popover-content {
|
|
5258
5279
|
inset-inline-end: 0;
|
|
5259
5280
|
inset-inline-start: initial;
|
|
5260
5281
|
}
|
|
@@ -6911,6 +6932,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
6911
6932
|
.cds--slug .cds--toggletip-content {
|
|
6912
6933
|
padding-block: 1.5rem 5rem;
|
|
6913
6934
|
padding-inline: 1.5rem;
|
|
6935
|
+
--cds-button-focus-color: initial;
|
|
6936
|
+
--cds-link-text-color: initial;
|
|
6937
|
+
--cds-link-hover-text-color: initial;
|
|
6938
|
+
--cds-link-visited-text-color: initial;
|
|
6939
|
+
--cds-link-focus-text-color: initial;
|
|
6914
6940
|
}
|
|
6915
6941
|
|
|
6916
6942
|
.cds--ai-label .cds--ai-label-content .cds--toggletip-content,
|
|
@@ -8205,6 +8231,8 @@ input:not(output, [data-invalid]):-moz-ui-invalid {
|
|
|
8205
8231
|
overflow: hidden;
|
|
8206
8232
|
margin: 0.25rem 0 0;
|
|
8207
8233
|
max-block-size: 0;
|
|
8234
|
+
overflow-wrap: break-word;
|
|
8235
|
+
word-break: break-word;
|
|
8208
8236
|
}
|
|
8209
8237
|
|
|
8210
8238
|
.cds--select--inline .cds--form__helper-text {
|
|
@@ -9342,7 +9370,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9342
9370
|
}
|
|
9343
9371
|
|
|
9344
9372
|
.cds--text-input {
|
|
9345
|
-
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-
|
|
9373
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
9346
9374
|
--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));
|
|
9347
9375
|
box-sizing: border-box;
|
|
9348
9376
|
padding: 0;
|
|
@@ -9388,15 +9416,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9388
9416
|
}
|
|
9389
9417
|
|
|
9390
9418
|
.cds--password-input {
|
|
9391
|
-
padding-inline-end:
|
|
9392
|
-
}
|
|
9393
|
-
|
|
9394
|
-
.cds--text-input--sm.cds--password-input {
|
|
9395
|
-
padding-inline-end: 2rem;
|
|
9396
|
-
}
|
|
9397
|
-
|
|
9398
|
-
.cds--text-input--lg.cds--password-input {
|
|
9399
|
-
padding-inline-end: 3rem;
|
|
9419
|
+
padding-inline-end: var(--cds-layout-size-height-local);
|
|
9400
9420
|
}
|
|
9401
9421
|
|
|
9402
9422
|
.cds--text-input::-moz-placeholder {
|
|
@@ -9633,31 +9653,25 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9633
9653
|
justify-content: center;
|
|
9634
9654
|
padding: 0;
|
|
9635
9655
|
border: 0;
|
|
9656
|
+
aspect-ratio: 1;
|
|
9636
9657
|
background: none;
|
|
9637
9658
|
block-size: 100%;
|
|
9638
9659
|
cursor: pointer;
|
|
9639
|
-
inline-size: 2.5rem;
|
|
9640
9660
|
inset-inline-end: 0;
|
|
9641
9661
|
min-block-size: auto;
|
|
9642
9662
|
transition: outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
9643
9663
|
}
|
|
9644
9664
|
|
|
9645
9665
|
.cds--toggle-password-tooltip .cds--popover {
|
|
9646
|
-
|
|
9666
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
9667
|
+
gap: 0.25rem;
|
|
9668
|
+
inset-inline-start: calc(-1 * (var(--cds-layout-size-height-local)));
|
|
9647
9669
|
}
|
|
9648
9670
|
|
|
9649
9671
|
.cds--toggle-password-tooltip .cds--popover-content {
|
|
9650
9672
|
min-inline-size: 2.5rem;
|
|
9651
9673
|
}
|
|
9652
9674
|
|
|
9653
|
-
.cds--text-input--sm + .cds--btn.cds--text-input--password__visibility__toggle.cds--tooltip__trigger {
|
|
9654
|
-
inline-size: 2rem;
|
|
9655
|
-
}
|
|
9656
|
-
|
|
9657
|
-
.cds--text-input--lg + .cds--btn.cds--text-input--password__visibility__toggle.cds--tooltip__trigger {
|
|
9658
|
-
inline-size: 3rem;
|
|
9659
|
-
}
|
|
9660
|
-
|
|
9661
9675
|
.cds--btn.cds--text-input--password__visibility__toggle.cds--tooltip__trigger svg {
|
|
9662
9676
|
fill: var(--cds-icon-primary, #161616);
|
|
9663
9677
|
}
|
|
@@ -9677,16 +9691,14 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9677
9691
|
padding-inline-end: 2.5rem;
|
|
9678
9692
|
}
|
|
9679
9693
|
|
|
9680
|
-
.cds--text-input--invalid.cds--password-input
|
|
9681
|
-
|
|
9682
|
-
|
|
9683
|
-
|
|
9684
|
-
.cds--text-input--invalid + .cds--text-input--password__visibility__toggle {
|
|
9685
|
-
inset-inline-end: 1rem;
|
|
9694
|
+
.cds--text-input--invalid.cds--password-input,
|
|
9695
|
+
.cds--text-input--warning.cds--password-input {
|
|
9696
|
+
padding-inline-end: calc(var(--cds-layout-size-height-local) + 1.5rem);
|
|
9686
9697
|
}
|
|
9687
9698
|
|
|
9688
9699
|
.cds--password-input-wrapper .cds--text-input__invalid-icon {
|
|
9689
|
-
|
|
9700
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
9701
|
+
inset-inline-end: var(--cds-layout-size-height-local);
|
|
9690
9702
|
}
|
|
9691
9703
|
|
|
9692
9704
|
.cds--text-input:disabled ~ .cds--text-input--password__visibility__toggle.cds--tooltip__trigger {
|
|
@@ -9761,9 +9773,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9761
9773
|
.cds--text-input--invalid {
|
|
9762
9774
|
box-shadow: none;
|
|
9763
9775
|
}
|
|
9764
|
-
.cds--text-input--invalid .cds--text-input--password__visibility__toggle {
|
|
9765
|
-
inset-inline-end: 2.5rem;
|
|
9766
|
-
}
|
|
9767
9776
|
|
|
9768
9777
|
.cds--skeleton.cds--text-input {
|
|
9769
9778
|
position: relative;
|
|
@@ -9889,36 +9898,39 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9889
9898
|
}
|
|
9890
9899
|
|
|
9891
9900
|
.cds--text-input-wrapper.cds--text-input-wrapper--inline {
|
|
9892
|
-
flex-flow: row
|
|
9901
|
+
flex-flow: row nowrap;
|
|
9902
|
+
align-items: center;
|
|
9893
9903
|
}
|
|
9894
9904
|
|
|
9895
9905
|
.cds--text-input-wrapper .cds--label--inline {
|
|
9896
|
-
flex: 1
|
|
9897
|
-
margin: 0
|
|
9906
|
+
flex: 0 1 auto;
|
|
9907
|
+
margin: 0;
|
|
9898
9908
|
overflow-wrap: break-word;
|
|
9899
9909
|
word-break: break-word;
|
|
9900
9910
|
}
|
|
9901
9911
|
|
|
9902
|
-
.cds--text-input-wrapper .cds--label--inline--sm {
|
|
9903
|
-
margin-block-start: 0.5625rem;
|
|
9904
|
-
}
|
|
9905
|
-
|
|
9906
|
-
.cds--text-input-wrapper .cds--label--inline--lg {
|
|
9907
|
-
margin-block-start: 1.0625rem;
|
|
9908
|
-
}
|
|
9909
|
-
|
|
9910
9912
|
.cds--text-input__label-helper-wrapper {
|
|
9911
|
-
flex:
|
|
9913
|
+
flex: 0 1 auto;
|
|
9912
9914
|
flex-direction: column;
|
|
9913
|
-
|
|
9914
|
-
max-inline-size: 8rem;
|
|
9915
|
+
max-inline-size: 8.875rem;
|
|
9915
9916
|
overflow-wrap: break-word;
|
|
9916
9917
|
}
|
|
9918
|
+
.cds--text-input__label-helper-wrapper:first-of-type {
|
|
9919
|
+
margin-inline-end: 0.5rem;
|
|
9920
|
+
}
|
|
9921
|
+
.cds--text-input__label-helper-wrapper:last-of-type {
|
|
9922
|
+
margin-inline-start: 0.5rem;
|
|
9923
|
+
}
|
|
9917
9924
|
|
|
9918
9925
|
.cds--text-input-wrapper .cds--form__helper-text--inline {
|
|
9919
9926
|
margin-block-start: 0.125rem;
|
|
9920
9927
|
}
|
|
9921
9928
|
|
|
9929
|
+
.cds--text-input-wrapper--inline .cds--form__helper-text--inline,
|
|
9930
|
+
.cds--text-input-wrapper--inline .cds--form-requirement {
|
|
9931
|
+
margin: 0;
|
|
9932
|
+
}
|
|
9933
|
+
|
|
9922
9934
|
.cds--text-input__field-outer-wrapper {
|
|
9923
9935
|
display: flex;
|
|
9924
9936
|
flex: 1 1 auto;
|
|
@@ -9965,9 +9977,9 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9965
9977
|
border-block-end-color: var(--cds-ai-border-strong, #4589ff);
|
|
9966
9978
|
}
|
|
9967
9979
|
|
|
9968
|
-
.cds--text-input__field-wrapper--decorator .cds--text-input:has(~ .cds--text-input__field-inner-wrapper--decorator > *),
|
|
9969
|
-
.cds--text-input__field-wrapper--slug .cds--text-input:has(~ .cds--ai-label),
|
|
9970
|
-
.cds--text-input__field-wrapper--slug .cds--text-input:has(~ .cds--slug) {
|
|
9980
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input:not(.cds--text-input--invalid):not(.cds--text-input--warning):has(~ .cds--text-input__field-inner-wrapper--decorator > *),
|
|
9981
|
+
.cds--text-input__field-wrapper--slug .cds--text-input:not(.cds--text-input--invalid):not(.cds--text-input--warning):has(~ .cds--ai-label),
|
|
9982
|
+
.cds--text-input__field-wrapper--slug .cds--text-input:not(.cds--text-input--invalid):not(.cds--text-input--warning):has(~ .cds--slug) {
|
|
9971
9983
|
padding-inline-end: 2.5rem;
|
|
9972
9984
|
}
|
|
9973
9985
|
|
|
@@ -9980,14 +9992,26 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
9980
9992
|
padding-inline-end: 4rem;
|
|
9981
9993
|
}
|
|
9982
9994
|
|
|
9983
|
-
.cds--text-input--invalid ~ .cds--text-
|
|
9984
|
-
.cds--text-input--warning ~ .cds--text-
|
|
9985
|
-
.cds--text-input--invalid ~ .cds--
|
|
9986
|
-
.cds--text-input--warning ~ .cds--
|
|
9987
|
-
.cds--text-input--invalid ~ .cds--slug,
|
|
9988
|
-
.cds--text-input--warning ~ .cds--slug {
|
|
9995
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input--invalid ~ .cds--text-input__invalid-icon,
|
|
9996
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input--warning ~ .cds--text-input__invalid-icon,
|
|
9997
|
+
.cds--text-input__field-wrapper--slug .cds--text-input--invalid ~ .cds--text-input__invalid-icon,
|
|
9998
|
+
.cds--text-input__field-wrapper--slug .cds--text-input--warning ~ .cds--text-input__invalid-icon {
|
|
9989
9999
|
inset-inline-end: 2.5rem;
|
|
9990
10000
|
}
|
|
10001
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input--invalid ~ .cds--text-input__field-inner-wrapper--decorator > *,
|
|
10002
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input--warning ~ .cds--text-input__field-inner-wrapper--decorator > *,
|
|
10003
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input--invalid ~ .cds--ai-label,
|
|
10004
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input--warning ~ .cds--ai-label,
|
|
10005
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input--invalid ~ .cds--slug,
|
|
10006
|
+
.cds--text-input__field-wrapper--decorator .cds--text-input--warning ~ .cds--slug,
|
|
10007
|
+
.cds--text-input__field-wrapper--slug .cds--text-input--invalid ~ .cds--text-input__field-inner-wrapper--decorator > *,
|
|
10008
|
+
.cds--text-input__field-wrapper--slug .cds--text-input--warning ~ .cds--text-input__field-inner-wrapper--decorator > *,
|
|
10009
|
+
.cds--text-input__field-wrapper--slug .cds--text-input--invalid ~ .cds--ai-label,
|
|
10010
|
+
.cds--text-input__field-wrapper--slug .cds--text-input--warning ~ .cds--ai-label,
|
|
10011
|
+
.cds--text-input__field-wrapper--slug .cds--text-input--invalid ~ .cds--slug,
|
|
10012
|
+
.cds--text-input__field-wrapper--slug .cds--text-input--warning ~ .cds--slug {
|
|
10013
|
+
inset-inline-end: 1rem;
|
|
10014
|
+
}
|
|
9991
10015
|
|
|
9992
10016
|
.cds--text-input__field-wrapper--decorator .cds--text-input__field-inner-wrapper--decorator:not(:has(.cds--ai-label)) > * {
|
|
9993
10017
|
block-size: 1rem;
|
|
@@ -13942,11 +13966,21 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
13942
13966
|
}
|
|
13943
13967
|
|
|
13944
13968
|
.cds--search {
|
|
13969
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
13945
13970
|
position: relative;
|
|
13946
13971
|
display: flex;
|
|
13947
13972
|
align-items: center;
|
|
13948
13973
|
inline-size: 100%;
|
|
13949
13974
|
}
|
|
13975
|
+
.cds--search .cds--search-close,
|
|
13976
|
+
.cds--search ~ .cds--search-button {
|
|
13977
|
+
block-size: var(--cds-layout-size-height-local);
|
|
13978
|
+
inline-size: var(--cds-layout-size-height-local);
|
|
13979
|
+
}
|
|
13980
|
+
.cds--search.cds--search--expandable, .cds--search.cds--search--expandable .cds--search-magnifier {
|
|
13981
|
+
block-size: var(--cds-layout-size-height-local);
|
|
13982
|
+
inline-size: var(--cds-layout-size-height-local);
|
|
13983
|
+
}
|
|
13950
13984
|
|
|
13951
13985
|
.cds--search .cds--label {
|
|
13952
13986
|
position: absolute;
|
|
@@ -13962,6 +13996,8 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
13962
13996
|
}
|
|
13963
13997
|
|
|
13964
13998
|
.cds--search-input {
|
|
13999
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
14000
|
+
--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));
|
|
13965
14001
|
box-sizing: border-box;
|
|
13966
14002
|
padding: 0;
|
|
13967
14003
|
border: 0;
|
|
@@ -13983,12 +14019,13 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
13983
14019
|
outline: 2px solid transparent;
|
|
13984
14020
|
outline-offset: -2px;
|
|
13985
14021
|
order: 1;
|
|
13986
|
-
padding: 0
|
|
14022
|
+
padding: 0 var(--cds-layout-size-height-local);
|
|
13987
14023
|
border: none;
|
|
13988
14024
|
-webkit-appearance: none;
|
|
13989
14025
|
-moz-appearance: none;
|
|
13990
14026
|
appearance: none;
|
|
13991
14027
|
background-color: var(--cds-field);
|
|
14028
|
+
block-size: var(--cds-layout-size-height-local);
|
|
13992
14029
|
border-block-end: 1px solid var(--cds-border-strong);
|
|
13993
14030
|
color: var(--cds-text-primary, #161616);
|
|
13994
14031
|
inline-size: 100%;
|
|
@@ -14042,33 +14079,8 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
14042
14079
|
background: var(--cds-field-02, #ffffff);
|
|
14043
14080
|
}
|
|
14044
14081
|
|
|
14045
|
-
.cds--search--sm .cds--search-input,
|
|
14046
|
-
.cds--search--sm.cds--search--expandable.cds--search--expanded .cds--search-input {
|
|
14047
|
-
padding: 0 2rem;
|
|
14048
|
-
block-size: 2rem;
|
|
14049
|
-
}
|
|
14050
|
-
|
|
14051
|
-
.cds--search--sm .cds--search-magnifier-icon {
|
|
14052
|
-
inset-inline-start: 0.5rem;
|
|
14053
|
-
}
|
|
14054
|
-
|
|
14055
|
-
.cds--search--md .cds--search-input,
|
|
14056
|
-
.cds--search--md.cds--search--expandable.cds--search--expanded .cds--search-input {
|
|
14057
|
-
padding: 0 2.5rem;
|
|
14058
|
-
block-size: 2.5rem;
|
|
14059
|
-
}
|
|
14060
|
-
|
|
14061
|
-
.cds--search--md .cds--search-magnifier-icon {
|
|
14062
|
-
inset-inline-start: 0.75rem;
|
|
14063
|
-
}
|
|
14064
|
-
|
|
14065
|
-
.cds--search--lg .cds--search-input,
|
|
14066
|
-
.cds--search--lg.cds--search--expandable.cds--search--expanded .cds--search-input {
|
|
14067
|
-
padding: 0 3rem;
|
|
14068
|
-
block-size: 3rem;
|
|
14069
|
-
}
|
|
14070
|
-
|
|
14071
14082
|
.cds--search-magnifier-icon {
|
|
14083
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
14072
14084
|
box-sizing: border-box;
|
|
14073
14085
|
padding: 0;
|
|
14074
14086
|
border: 0;
|
|
@@ -14089,7 +14101,7 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
14089
14101
|
fill: var(--cds-icon-secondary, #525252);
|
|
14090
14102
|
inline-size: 1rem;
|
|
14091
14103
|
inset-block-start: 50%;
|
|
14092
|
-
inset-inline-start: 1rem;
|
|
14104
|
+
inset-inline-start: calc((var(--cds-layout-size-height-local) - 1rem) / 2);
|
|
14093
14105
|
pointer-events: none;
|
|
14094
14106
|
transform: translateY(-50%);
|
|
14095
14107
|
}
|
|
@@ -14149,16 +14161,17 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
14149
14161
|
|
|
14150
14162
|
.cds--search-close,
|
|
14151
14163
|
.cds--search-button {
|
|
14164
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
14152
14165
|
display: flex;
|
|
14153
14166
|
align-items: center;
|
|
14154
14167
|
justify-content: center;
|
|
14155
14168
|
border-width: 0 0 1px;
|
|
14156
14169
|
border-style: solid;
|
|
14157
14170
|
border-color: transparent;
|
|
14158
|
-
block-size:
|
|
14171
|
+
block-size: var(--cds-layout-size-height-local);
|
|
14159
14172
|
cursor: pointer;
|
|
14160
14173
|
fill: var(--cds-icon-primary, #161616);
|
|
14161
|
-
inline-size:
|
|
14174
|
+
inline-size: var(--cds-layout-size-height-local);
|
|
14162
14175
|
opacity: 1;
|
|
14163
14176
|
visibility: inherit;
|
|
14164
14177
|
}
|
|
@@ -14226,50 +14239,12 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
14226
14239
|
fill: var(--cds-icon-on-color-disabled, #8d8d8d);
|
|
14227
14240
|
}
|
|
14228
14241
|
|
|
14229
|
-
.cds--search--sm .cds--search-close,
|
|
14230
|
-
.cds--search--sm ~ .cds--search-button, .cds--search--sm.cds--search--expandable, .cds--search--sm.cds--search--expandable .cds--search-magnifier {
|
|
14231
|
-
block-size: 2rem;
|
|
14232
|
-
inline-size: 2rem;
|
|
14233
|
-
}
|
|
14234
|
-
.cds--search--sm.cds--search--expandable .cds--search-input::-moz-placeholder {
|
|
14235
|
-
padding: 0 2rem;
|
|
14236
|
-
}
|
|
14237
|
-
.cds--search--sm.cds--search--expandable .cds--search-input::placeholder {
|
|
14238
|
-
padding: 0 2rem;
|
|
14239
|
-
}
|
|
14240
|
-
|
|
14241
|
-
.cds--search--md .cds--search-close,
|
|
14242
|
-
.cds--search--md ~ .cds--search-button, .cds--search--md.cds--search--expandable, .cds--search--md.cds--search--expandable .cds--search-magnifier {
|
|
14243
|
-
block-size: 2.5rem;
|
|
14244
|
-
inline-size: 2.5rem;
|
|
14245
|
-
}
|
|
14246
|
-
.cds--search--md.cds--search--expandable .cds--search-input::-moz-placeholder {
|
|
14247
|
-
padding: 0 2.5rem;
|
|
14248
|
-
}
|
|
14249
|
-
.cds--search--md.cds--search--expandable .cds--search-input::placeholder {
|
|
14250
|
-
padding: 0 2.5rem;
|
|
14251
|
-
}
|
|
14252
|
-
|
|
14253
|
-
.cds--search--lg .cds--search-close,
|
|
14254
|
-
.cds--search--lg ~ .cds--search-button, .cds--search--lg.cds--search--expandable, .cds--search--lg.cds--search--expandable .cds--search-magnifier {
|
|
14255
|
-
block-size: 3rem;
|
|
14256
|
-
inline-size: 3rem;
|
|
14257
|
-
}
|
|
14258
|
-
.cds--search--lg.cds--search--expandable .cds--search-input::-moz-placeholder {
|
|
14259
|
-
padding: 0 3rem;
|
|
14260
|
-
}
|
|
14261
|
-
.cds--search--lg.cds--search--expandable .cds--search-input::placeholder {
|
|
14262
|
-
padding: 0 3rem;
|
|
14263
|
-
}
|
|
14264
|
-
|
|
14265
14242
|
.cds--search-close--hidden {
|
|
14266
14243
|
opacity: 0;
|
|
14267
14244
|
visibility: hidden;
|
|
14268
14245
|
}
|
|
14269
14246
|
|
|
14270
|
-
.cds--
|
|
14271
|
-
.cds--search--md.cds--skeleton .cds--search-input,
|
|
14272
|
-
.cds--search--sm.cds--skeleton .cds--search-input {
|
|
14247
|
+
.cds--skeleton .cds--search-input {
|
|
14273
14248
|
position: relative;
|
|
14274
14249
|
padding: 0;
|
|
14275
14250
|
border: none;
|
|
@@ -14277,20 +14252,12 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
14277
14252
|
box-shadow: none;
|
|
14278
14253
|
pointer-events: none;
|
|
14279
14254
|
}
|
|
14280
|
-
.cds--
|
|
14281
|
-
.cds--search--md.cds--skeleton .cds--search-input:hover,
|
|
14282
|
-
.cds--search--md.cds--skeleton .cds--search-input:focus,
|
|
14283
|
-
.cds--search--md.cds--skeleton .cds--search-input:active,
|
|
14284
|
-
.cds--search--sm.cds--skeleton .cds--search-input:hover,
|
|
14285
|
-
.cds--search--sm.cds--skeleton .cds--search-input:focus,
|
|
14286
|
-
.cds--search--sm.cds--skeleton .cds--search-input:active {
|
|
14255
|
+
.cds--skeleton .cds--search-input:hover, .cds--skeleton .cds--search-input:focus, .cds--skeleton .cds--search-input:active {
|
|
14287
14256
|
border: none;
|
|
14288
14257
|
cursor: default;
|
|
14289
14258
|
outline: none;
|
|
14290
14259
|
}
|
|
14291
|
-
.cds--
|
|
14292
|
-
.cds--search--md.cds--skeleton .cds--search-input::before,
|
|
14293
|
-
.cds--search--sm.cds--skeleton .cds--search-input::before {
|
|
14260
|
+
.cds--skeleton .cds--search-input::before {
|
|
14294
14261
|
position: absolute;
|
|
14295
14262
|
animation: 3000ms ease-in-out cds--skeleton infinite;
|
|
14296
14263
|
background: var(--cds-skeleton-element, #c6c6c6);
|
|
@@ -14301,36 +14268,26 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
14301
14268
|
will-change: transform-origin, transform, opacity;
|
|
14302
14269
|
}
|
|
14303
14270
|
@media (prefers-reduced-motion: reduce) {
|
|
14304
|
-
.cds--
|
|
14305
|
-
.cds--search--md.cds--skeleton .cds--search-input::before,
|
|
14306
|
-
.cds--search--sm.cds--skeleton .cds--search-input::before {
|
|
14271
|
+
.cds--skeleton .cds--search-input::before {
|
|
14307
14272
|
animation: none;
|
|
14308
14273
|
}
|
|
14309
14274
|
}
|
|
14310
14275
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
14311
|
-
.cds--
|
|
14312
|
-
.cds--search--md.cds--skeleton .cds--search-input,
|
|
14313
|
-
.cds--search--sm.cds--skeleton .cds--search-input {
|
|
14276
|
+
.cds--skeleton .cds--search-input {
|
|
14314
14277
|
background: CanvasText;
|
|
14315
14278
|
}
|
|
14316
|
-
.cds--
|
|
14317
|
-
.cds--search--md.cds--skeleton .cds--search-input::before,
|
|
14318
|
-
.cds--search--sm.cds--skeleton .cds--search-input::before {
|
|
14279
|
+
.cds--skeleton .cds--search-input::before {
|
|
14319
14280
|
background: Canvas;
|
|
14320
14281
|
forced-color-adjust: none;
|
|
14321
14282
|
}
|
|
14322
14283
|
}
|
|
14323
|
-
.cds--
|
|
14324
|
-
.cds--search--md.cds--skeleton .cds--search-input,
|
|
14325
|
-
.cds--search--sm.cds--skeleton .cds--search-input {
|
|
14284
|
+
.cds--skeleton .cds--search-input {
|
|
14326
14285
|
inline-size: 100%;
|
|
14327
14286
|
}
|
|
14328
|
-
.cds--
|
|
14287
|
+
.cds--skeleton .cds--search-input::-moz-placeholder {
|
|
14329
14288
|
color: transparent;
|
|
14330
14289
|
}
|
|
14331
|
-
.cds--
|
|
14332
|
-
.cds--search--md.cds--skeleton .cds--search-input::placeholder,
|
|
14333
|
-
.cds--search--sm.cds--skeleton .cds--search-input::placeholder {
|
|
14290
|
+
.cds--skeleton .cds--search-input::placeholder {
|
|
14334
14291
|
color: transparent;
|
|
14335
14292
|
}
|
|
14336
14293
|
|
|
@@ -14364,6 +14321,7 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
14364
14321
|
}
|
|
14365
14322
|
|
|
14366
14323
|
.cds--search--expandable.cds--search--expanded .cds--search-input {
|
|
14324
|
+
padding: 0 var(--cds-layout-size-height-local);
|
|
14367
14325
|
inline-size: 100%;
|
|
14368
14326
|
transition: padding 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
14369
14327
|
}
|
|
@@ -19867,6 +19825,7 @@ button.cds--dropdown-text:focus {
|
|
|
19867
19825
|
box-sizing: inherit;
|
|
19868
19826
|
}
|
|
19869
19827
|
.cds--select {
|
|
19828
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
19870
19829
|
position: relative;
|
|
19871
19830
|
display: flex;
|
|
19872
19831
|
flex-direction: column;
|
|
@@ -19888,6 +19847,8 @@ button.cds--dropdown-text:focus {
|
|
|
19888
19847
|
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
19889
19848
|
outline: 2px solid transparent;
|
|
19890
19849
|
outline-offset: -2px;
|
|
19850
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
19851
|
+
--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));
|
|
19891
19852
|
display: block;
|
|
19892
19853
|
border: none;
|
|
19893
19854
|
border-radius: 0;
|
|
@@ -19895,7 +19856,7 @@ button.cds--dropdown-text:focus {
|
|
|
19895
19856
|
-moz-appearance: none;
|
|
19896
19857
|
appearance: none;
|
|
19897
19858
|
background-color: var(--cds-field);
|
|
19898
|
-
block-size:
|
|
19859
|
+
block-size: var(--cds-layout-size-height-local);
|
|
19899
19860
|
border-block-end: 1px solid var(--cds-border-strong);
|
|
19900
19861
|
color: var(--cds-text-primary, #161616);
|
|
19901
19862
|
cursor: pointer;
|
|
@@ -19945,16 +19906,6 @@ button.cds--dropdown-text:focus {
|
|
|
19945
19906
|
cursor: not-allowed;
|
|
19946
19907
|
}
|
|
19947
19908
|
|
|
19948
|
-
.cds--select-input--sm {
|
|
19949
|
-
block-size: 2rem;
|
|
19950
|
-
max-block-size: 2rem;
|
|
19951
|
-
}
|
|
19952
|
-
|
|
19953
|
-
.cds--select-input--lg {
|
|
19954
|
-
block-size: 3rem;
|
|
19955
|
-
max-block-size: 3rem;
|
|
19956
|
-
}
|
|
19957
|
-
|
|
19958
19909
|
.cds--select--disabled .cds--label,
|
|
19959
19910
|
.cds--select--disabled .cds--form__helper-text {
|
|
19960
19911
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
@@ -20208,6 +20159,12 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
20208
20159
|
inset-inline-end: -1px;
|
|
20209
20160
|
}
|
|
20210
20161
|
|
|
20162
|
+
.cds--select--decorator .cds--select-input__wrapper .cds--select-input ~ .cds--select__invalid-icon,
|
|
20163
|
+
.cds--select--slug .cds--select-input__wrapper[data-invalid] .cds--select-input ~ .cds--select__invalid-icon,
|
|
20164
|
+
.cds--select--slug .cds--select-input__wrapper .cds--select-input ~ .cds--select__invalid-icon {
|
|
20165
|
+
inset-inline-end: 5rem;
|
|
20166
|
+
}
|
|
20167
|
+
|
|
20211
20168
|
.cds--select--decorator .cds--select-input:has(~ .cds--select__inner-wrapper--decorator),
|
|
20212
20169
|
.cds--select--slug .cds--select-input:has(~ .cds--ai-label),
|
|
20213
20170
|
.cds--select--slug .cds--select-input:has(~ .cds--slug) {
|
|
@@ -20234,12 +20191,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
20234
20191
|
display: block;
|
|
20235
20192
|
}
|
|
20236
20193
|
|
|
20237
|
-
.cds--select--decorator .cds--select-input__wrapper .cds--select-input ~ .cds--select__invalid-icon,
|
|
20238
|
-
.cds--select--slug .cds--select-input__wrapper[data-invalid] .cds--select-input ~ .cds--select__invalid-icon,
|
|
20239
|
-
.cds--select--slug .cds--select-input__wrapper .cds--select-input ~ .cds--select__invalid-icon {
|
|
20240
|
-
inset-inline-end: 5rem;
|
|
20241
|
-
}
|
|
20242
|
-
|
|
20243
20194
|
.cds--select--fluid .cds--select {
|
|
20244
20195
|
position: relative;
|
|
20245
20196
|
background: var(--cds-field);
|
|
@@ -23302,6 +23253,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23302
23253
|
font-weight: var(--cds-body-compact-01-font-weight, 400);
|
|
23303
23254
|
line-height: var(--cds-body-compact-01-line-height, 1.28572);
|
|
23304
23255
|
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
23256
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
|
|
23305
23257
|
display: flex;
|
|
23306
23258
|
overflow: initial;
|
|
23307
23259
|
align-items: center;
|
|
@@ -23311,7 +23263,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23311
23263
|
container-name: pagination;
|
|
23312
23264
|
container-type: inline-size;
|
|
23313
23265
|
inline-size: calc(100% - 1px);
|
|
23314
|
-
min-block-size:
|
|
23266
|
+
min-block-size: var(--cds-layout-size-height-local);
|
|
23315
23267
|
}
|
|
23316
23268
|
@container pagination (min-width: 42rem) {
|
|
23317
23269
|
.cds--pagination .cds--pagination__control-buttons {
|
|
@@ -23331,14 +23283,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23331
23283
|
}
|
|
23332
23284
|
}
|
|
23333
23285
|
|
|
23334
|
-
.cds--pagination--sm {
|
|
23335
|
-
min-block-size: 2rem;
|
|
23336
|
-
}
|
|
23337
|
-
|
|
23338
|
-
.cds--pagination--lg {
|
|
23339
|
-
min-block-size: 3rem;
|
|
23340
|
-
}
|
|
23341
|
-
|
|
23342
23286
|
.cds--pagination .cds--select {
|
|
23343
23287
|
align-items: center;
|
|
23344
23288
|
block-size: 100%;
|
|
@@ -23356,7 +23300,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23356
23300
|
letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
|
|
23357
23301
|
block-size: 100%;
|
|
23358
23302
|
inline-size: auto;
|
|
23359
|
-
line-height:
|
|
23303
|
+
line-height: var(--cds-layout-size-height-local);
|
|
23360
23304
|
min-inline-size: auto;
|
|
23361
23305
|
}
|
|
23362
23306
|
@-moz-document url-prefix() {
|
|
@@ -23370,14 +23314,6 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
23370
23314
|
padding-inline: 1rem 2.25rem;
|
|
23371
23315
|
}
|
|
23372
23316
|
|
|
23373
|
-
.cds--pagination--sm .cds--select-input {
|
|
23374
|
-
line-height: 2rem;
|
|
23375
|
-
}
|
|
23376
|
-
|
|
23377
|
-
.cds--pagination--lg .cds--select-input {
|
|
23378
|
-
line-height: 3rem;
|
|
23379
|
-
}
|
|
23380
|
-
|
|
23381
23317
|
.cds--pagination .cds--select-input:hover {
|
|
23382
23318
|
background: var(--cds-layer-hover);
|
|
23383
23319
|
}
|
|
@@ -23488,12 +23424,12 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
23488
23424
|
border: none;
|
|
23489
23425
|
margin: 0;
|
|
23490
23426
|
background: none;
|
|
23491
|
-
block-size:
|
|
23427
|
+
block-size: var(--cds-layout-size-height-local);
|
|
23492
23428
|
border-inline-start: 1px solid var(--cds-border-subtle);
|
|
23493
23429
|
cursor: pointer;
|
|
23494
23430
|
fill: var(--cds-icon-primary, #161616);
|
|
23495
|
-
inline-size:
|
|
23496
|
-
min-block-size:
|
|
23431
|
+
inline-size: var(--cds-layout-size-height-local);
|
|
23432
|
+
min-block-size: 1.5rem;
|
|
23497
23433
|
transition: outline 110ms cubic-bezier(0.2, 0, 0.38, 0.9), background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
23498
23434
|
}
|
|
23499
23435
|
|
|
@@ -23507,18 +23443,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
23507
23443
|
transform: rotate(0.5turn);
|
|
23508
23444
|
}
|
|
23509
23445
|
|
|
23510
|
-
.cds--pagination--sm .cds--pagination__button,
|
|
23511
|
-
.cds--pagination--sm .cds--btn--ghost.cds--pagination__button {
|
|
23512
|
-
block-size: 2rem;
|
|
23513
|
-
inline-size: 2rem;
|
|
23514
|
-
}
|
|
23515
|
-
|
|
23516
|
-
.cds--pagination--lg .cds--pagination__button,
|
|
23517
|
-
.cds--pagination--lg .cds--btn--ghost.cds--pagination__button {
|
|
23518
|
-
block-size: 3rem;
|
|
23519
|
-
inline-size: 3rem;
|
|
23520
|
-
}
|
|
23521
|
-
|
|
23522
23446
|
.cds--pagination__button:focus,
|
|
23523
23447
|
.cds--btn--ghost:focus.cds--pagination__button {
|
|
23524
23448
|
outline: 2px solid var(--cds-focus, #0f62fe);
|