@carbon/styles 1.17.0-rc.2 → 1.18.0-rc.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 +296 -21
- package/css/styles.min.css +1 -1
- package/package.json +9 -9
- package/scss/components/checkbox/_checkbox.scss +31 -0
- package/scss/components/code-snippet/_code-snippet.scss +4 -3
- package/scss/components/contained-list/_contained-list.scss +31 -2
- package/scss/components/data-table/_data-table.scss +0 -20
- package/scss/components/date-picker/_date-picker.scss +10 -0
- package/scss/components/fluid-date-picker/_fluid-date-picker.scss +61 -0
- package/scss/components/form/_form.scss +11 -0
- package/scss/components/multiselect/_multiselect.scss +38 -0
- package/scss/components/number-input/_number-input.scss +29 -5
- package/scss/components/overflow-menu/_overflow-menu.scss +1 -1
- package/scss/components/pagination/_pagination.scss +11 -3
- package/scss/components/radio-button/_radio-button.scss +18 -0
- package/scss/components/select/_select.scss +10 -0
- package/scss/components/slider/_slider.scss +14 -0
- package/scss/components/tabs/_tabs.scss +4 -0
- package/scss/components/time-picker/_time-picker.scss +16 -0
- package/scss/components/toggle/_toggle.scss +33 -0
package/css/styles.css
CHANGED
|
@@ -4826,6 +4826,17 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4826
4826
|
}
|
|
4827
4827
|
}
|
|
4828
4828
|
|
|
4829
|
+
input:-webkit-autofill,
|
|
4830
|
+
input:-webkit-autofill:hover,
|
|
4831
|
+
input:-webkit-autofill:focus,
|
|
4832
|
+
textarea:-webkit-autofill,
|
|
4833
|
+
textarea:-webkit-autofill:hover,
|
|
4834
|
+
textarea:-webkit-autofill:focus {
|
|
4835
|
+
-webkit-box-shadow: 0 0 0 1000px var(--cds-field) inset;
|
|
4836
|
+
box-shadow: 0 0 0 1000px var(--cds-field) inset;
|
|
4837
|
+
-webkit-text-fill-color: var(--cds-text-primary, #161616);
|
|
4838
|
+
}
|
|
4839
|
+
|
|
4829
4840
|
.cds--fieldset html {
|
|
4830
4841
|
font-size: 100%;
|
|
4831
4842
|
}
|
|
@@ -5282,6 +5293,31 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5282
5293
|
background-color: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
5283
5294
|
}
|
|
5284
5295
|
|
|
5296
|
+
.cds--checkbox-wrapper--readonly .cds--checkbox-label {
|
|
5297
|
+
cursor: default;
|
|
5298
|
+
}
|
|
5299
|
+
|
|
5300
|
+
.cds--checkbox-wrapper--readonly .cds--checkbox-label-text {
|
|
5301
|
+
cursor: text;
|
|
5302
|
+
-webkit-user-select: text;
|
|
5303
|
+
-moz-user-select: text;
|
|
5304
|
+
-ms-user-select: text;
|
|
5305
|
+
user-select: text;
|
|
5306
|
+
}
|
|
5307
|
+
|
|
5308
|
+
.cds--checkbox-wrapper--readonly .cds--checkbox + .cds--checkbox-label::before {
|
|
5309
|
+
border-color: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
5310
|
+
}
|
|
5311
|
+
|
|
5312
|
+
.cds--checkbox-wrapper--readonly .cds--checkbox:checked + .cds--checkbox-label::before {
|
|
5313
|
+
border: 1px solid var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
5314
|
+
background: transparent;
|
|
5315
|
+
}
|
|
5316
|
+
|
|
5317
|
+
.cds--checkbox-wrapper--readonly .cds--checkbox:checked + .cds--checkbox-label::after {
|
|
5318
|
+
border-color: var(--cds-text-primary, #161616);
|
|
5319
|
+
}
|
|
5320
|
+
|
|
5285
5321
|
.cds--checkbox-skeleton .cds--checkbox-label {
|
|
5286
5322
|
cursor: default;
|
|
5287
5323
|
}
|
|
@@ -5740,14 +5776,14 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
5740
5776
|
overflow-x: auto;
|
|
5741
5777
|
}
|
|
5742
5778
|
|
|
5743
|
-
.cds--snippet--multi .cds--snippet-container pre::after {
|
|
5779
|
+
.cds--snippet--multi.cds--snippet--has-right-overflow .cds--snippet-container pre::after {
|
|
5744
5780
|
position: absolute;
|
|
5745
5781
|
top: 0;
|
|
5746
5782
|
right: 0;
|
|
5747
5783
|
width: 1rem;
|
|
5748
5784
|
height: 100%;
|
|
5749
|
-
background-image: -webkit-gradient(linear, left top, right top, from(
|
|
5750
|
-
background-image: linear-gradient(to right,
|
|
5785
|
+
background-image: -webkit-gradient(linear, left top, right top, from(transparent), to(var(--cds-layer)));
|
|
5786
|
+
background-image: linear-gradient(to right, transparent, var(--cds-layer));
|
|
5751
5787
|
content: "";
|
|
5752
5788
|
}
|
|
5753
5789
|
|
|
@@ -8016,6 +8052,46 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8016
8052
|
width: 100%;
|
|
8017
8053
|
}
|
|
8018
8054
|
|
|
8055
|
+
.cds--contained-list--on-page.cds--contained-list--sm .cds--contained-list__header {
|
|
8056
|
+
height: 2rem;
|
|
8057
|
+
}
|
|
8058
|
+
|
|
8059
|
+
.cds--contained-list--sm .cds--contained-list-item__content,
|
|
8060
|
+
.cds--contained-list--sm .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
8061
|
+
min-height: 2rem;
|
|
8062
|
+
padding: calc(0.5rem - 0.125rem) 1rem;
|
|
8063
|
+
}
|
|
8064
|
+
|
|
8065
|
+
.cds--contained-list--on-page.cds--contained-list--md .cds--contained-list__header {
|
|
8066
|
+
height: 2.5rem;
|
|
8067
|
+
}
|
|
8068
|
+
|
|
8069
|
+
.cds--contained-list--md .cds--contained-list-item__content,
|
|
8070
|
+
.cds--contained-list--md .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
8071
|
+
min-height: 2.5rem;
|
|
8072
|
+
padding: calc(0.75rem - 0.125rem) 1rem;
|
|
8073
|
+
}
|
|
8074
|
+
|
|
8075
|
+
.cds--contained-list--on-page.cds--contained-list--lg .cds--contained-list__header {
|
|
8076
|
+
height: 3rem;
|
|
8077
|
+
}
|
|
8078
|
+
|
|
8079
|
+
.cds--contained-list--lg .cds--contained-list-item__content,
|
|
8080
|
+
.cds--contained-list--lg .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
8081
|
+
min-height: 3rem;
|
|
8082
|
+
padding: calc(1rem - 0.125rem) 1rem;
|
|
8083
|
+
}
|
|
8084
|
+
|
|
8085
|
+
.cds--contained-list--on-page.cds--contained-list--xl .cds--contained-list__header {
|
|
8086
|
+
height: 4rem;
|
|
8087
|
+
}
|
|
8088
|
+
|
|
8089
|
+
.cds--contained-list--xl .cds--contained-list-item__content,
|
|
8090
|
+
.cds--contained-list--xl .cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
8091
|
+
min-height: 4rem;
|
|
8092
|
+
padding: calc(1.5rem - 0.125rem) 1rem;
|
|
8093
|
+
}
|
|
8094
|
+
|
|
8019
8095
|
.cds--contained-list--on-page + .cds--contained-list--on-page {
|
|
8020
8096
|
-webkit-margin-before: 1rem;
|
|
8021
8097
|
margin-block-start: 1rem;
|
|
@@ -8026,7 +8102,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8026
8102
|
font-weight: var(--cds-heading-compact-01-font-weight, 600);
|
|
8027
8103
|
line-height: var(--cds-heading-compact-01-line-height, 1.28572);
|
|
8028
8104
|
letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
|
|
8029
|
-
height: 3rem;
|
|
8030
8105
|
border-bottom: 1px solid var(--cds-border-subtle);
|
|
8031
8106
|
background-color: var(--cds-background, #ffffff);
|
|
8032
8107
|
color: var(--cds-text-primary, #161616);
|
|
@@ -8097,7 +8172,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8097
8172
|
font-weight: var(--cds-body-01-font-weight, 400);
|
|
8098
8173
|
line-height: var(--cds-body-01-line-height, 1.42857);
|
|
8099
8174
|
letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
|
|
8100
|
-
padding: calc(1rem - 0.125rem) 1rem;
|
|
8101
8175
|
color: var(--cds-text-primary, #161616);
|
|
8102
8176
|
}
|
|
8103
8177
|
|
|
@@ -8662,15 +8736,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8662
8736
|
transition: background-color 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
8663
8737
|
}
|
|
8664
8738
|
|
|
8665
|
-
.cds--data-table .cds--table-column-checkbox .cds--checkbox:focus + .cds--checkbox-label::before {
|
|
8666
|
-
outline-offset: 0.375rem;
|
|
8667
|
-
}
|
|
8668
|
-
|
|
8669
|
-
.cds--data-table--compact .cds--table-column-checkbox .cds--checkbox:focus + .cds--checkbox-label::before,
|
|
8670
|
-
.cds--data-table--xs .cds--table-column-checkbox .cds--checkbox:focus + .cds--checkbox-label::before {
|
|
8671
|
-
outline-offset: 0.125rem;
|
|
8672
|
-
}
|
|
8673
|
-
|
|
8674
8739
|
.cds--data-table thead th.cds--table-column-checkbox,
|
|
8675
8740
|
.cds--data-table tbody td.cds--table-column-checkbox,
|
|
8676
8741
|
.cds--data-table thead th.cds--table-expand,
|
|
@@ -11421,6 +11486,15 @@ th .cds--table-sort__flex {
|
|
|
11421
11486
|
}
|
|
11422
11487
|
}
|
|
11423
11488
|
|
|
11489
|
+
.cds--date-picker__input[readonly] {
|
|
11490
|
+
background: transparent;
|
|
11491
|
+
cursor: text;
|
|
11492
|
+
}
|
|
11493
|
+
|
|
11494
|
+
.cds--date-picker__input[readonly] + .cds--date-picker__icon {
|
|
11495
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
11496
|
+
}
|
|
11497
|
+
|
|
11424
11498
|
.cds--dropdown__wrapper--inline {
|
|
11425
11499
|
display: inline-grid;
|
|
11426
11500
|
-webkit-box-align: center;
|
|
@@ -12942,6 +13016,70 @@ button.cds--dropdown-text:focus {
|
|
|
12942
13016
|
top: 5rem;
|
|
12943
13017
|
}
|
|
12944
13018
|
|
|
13019
|
+
.cds--date-picker--fluid__skeleton {
|
|
13020
|
+
height: 4rem;
|
|
13021
|
+
border-bottom: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
13022
|
+
background: var(--cds-skeleton-background, #e8e8e8);
|
|
13023
|
+
}
|
|
13024
|
+
|
|
13025
|
+
.cds--date-picker--fluid__skeleton--container {
|
|
13026
|
+
position: relative;
|
|
13027
|
+
width: 100%;
|
|
13028
|
+
height: 4rem;
|
|
13029
|
+
padding: 0.8125rem 2.5rem 0.8125rem 1rem;
|
|
13030
|
+
}
|
|
13031
|
+
|
|
13032
|
+
.cds--date-picker--fluid__skeleton .cds--skeleton {
|
|
13033
|
+
height: 1rem;
|
|
13034
|
+
}
|
|
13035
|
+
|
|
13036
|
+
.cds--date-picker--fluid__skeleton .cds--label {
|
|
13037
|
+
margin-bottom: 0.25rem;
|
|
13038
|
+
}
|
|
13039
|
+
|
|
13040
|
+
.cds--date-picker--fluid__skeleton .cds--text-input {
|
|
13041
|
+
width: 80%;
|
|
13042
|
+
height: 1.125rem;
|
|
13043
|
+
}
|
|
13044
|
+
|
|
13045
|
+
.cds--date-picker--fluid__skeleton--container .cds--date-picker__icon {
|
|
13046
|
+
top: auto;
|
|
13047
|
+
bottom: 0.125rem;
|
|
13048
|
+
}
|
|
13049
|
+
|
|
13050
|
+
.cds--date-picker--fluid__skeleton--range {
|
|
13051
|
+
display: -webkit-box;
|
|
13052
|
+
display: -ms-flexbox;
|
|
13053
|
+
display: flex;
|
|
13054
|
+
-webkit-box-orient: horizontal;
|
|
13055
|
+
-webkit-box-direction: normal;
|
|
13056
|
+
-ms-flex-direction: row;
|
|
13057
|
+
flex-direction: row;
|
|
13058
|
+
}
|
|
13059
|
+
|
|
13060
|
+
.cds--date-picker--fluid__skeleton--range .cds--date-picker--fluid__skeleton--container {
|
|
13061
|
+
display: -webkit-box;
|
|
13062
|
+
display: -ms-flexbox;
|
|
13063
|
+
display: flex;
|
|
13064
|
+
width: 50%;
|
|
13065
|
+
-webkit-box-orient: vertical;
|
|
13066
|
+
-webkit-box-direction: normal;
|
|
13067
|
+
-ms-flex-direction: column;
|
|
13068
|
+
flex-direction: column;
|
|
13069
|
+
}
|
|
13070
|
+
|
|
13071
|
+
.cds--date-picker--fluid__skeleton--range .cds--date-picker--fluid__skeleton--container:first-of-type {
|
|
13072
|
+
border-right: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
13073
|
+
}
|
|
13074
|
+
|
|
13075
|
+
.cds--date-picker--fluid__skeleton--range .cds--text-input {
|
|
13076
|
+
width: 100%;
|
|
13077
|
+
}
|
|
13078
|
+
|
|
13079
|
+
.cds--date-picker--fluid__skeleton--range .cds--date-picker--fluid__skeleton--container .cds--date-picker__icon {
|
|
13080
|
+
bottom: 0.3125rem;
|
|
13081
|
+
}
|
|
13082
|
+
|
|
12945
13083
|
.cds--list-box__wrapper--fluid .cds--multi-select--filterable--input-focused {
|
|
12946
13084
|
outline: none;
|
|
12947
13085
|
outline-offset: 0;
|
|
@@ -13200,6 +13338,15 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13200
13338
|
cursor: not-allowed;
|
|
13201
13339
|
}
|
|
13202
13340
|
|
|
13341
|
+
.cds--select--readonly .cds--select-input {
|
|
13342
|
+
background-color: transparent;
|
|
13343
|
+
cursor: default;
|
|
13344
|
+
}
|
|
13345
|
+
|
|
13346
|
+
.cds--select--readonly .cds--select__arrow {
|
|
13347
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
13348
|
+
}
|
|
13349
|
+
|
|
13203
13350
|
.cds--select.cds--skeleton {
|
|
13204
13351
|
position: relative;
|
|
13205
13352
|
padding: 0;
|
|
@@ -14450,6 +14597,36 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
14450
14597
|
visibility: hidden;
|
|
14451
14598
|
}
|
|
14452
14599
|
|
|
14600
|
+
.cds--multi-select.cds--multi-select--readonly,
|
|
14601
|
+
.cds--multi-select.cds--multi-select--readonly:hover {
|
|
14602
|
+
background-color: transparent;
|
|
14603
|
+
}
|
|
14604
|
+
|
|
14605
|
+
.cds--multi-select.cds--multi-select--readonly .cds--list-box__menu-icon svg {
|
|
14606
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
14607
|
+
}
|
|
14608
|
+
|
|
14609
|
+
.cds--multi-select.cds--multi-select--readonly .cds--tag--filter,
|
|
14610
|
+
.cds--multi-select.cds--multi-select--readonly .cds--tag__close-icon:hover {
|
|
14611
|
+
background-color: transparent;
|
|
14612
|
+
color: var(--cds-text-primary, #161616);
|
|
14613
|
+
cursor: default;
|
|
14614
|
+
}
|
|
14615
|
+
|
|
14616
|
+
.cds--multi-select.cds--multi-select--readonly .cds--tag--filter {
|
|
14617
|
+
-webkit-box-shadow: 0 0 0 1px var(--cds-background-inverse, #393939);
|
|
14618
|
+
box-shadow: 0 0 0 1px var(--cds-background-inverse, #393939);
|
|
14619
|
+
}
|
|
14620
|
+
|
|
14621
|
+
.cds--multi-select.cds--multi-select--readonly .cds--tag--filter svg {
|
|
14622
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
14623
|
+
}
|
|
14624
|
+
|
|
14625
|
+
.cds--multi-select.cds--multi-select--readonly .cds--list-box__field,
|
|
14626
|
+
.cds--multi-select.cds--multi-select--readonly .cds--list-box__menu-icon {
|
|
14627
|
+
cursor: default;
|
|
14628
|
+
}
|
|
14629
|
+
|
|
14453
14630
|
.cds--inline-notification {
|
|
14454
14631
|
position: relative;
|
|
14455
14632
|
display: -webkit-box;
|
|
@@ -16055,13 +16232,29 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
16055
16232
|
background: transparent;
|
|
16056
16233
|
}
|
|
16057
16234
|
|
|
16058
|
-
.cds--number--readonly .cds--
|
|
16059
|
-
|
|
16235
|
+
.cds--number--readonly .cds--number__control-btn {
|
|
16236
|
+
color: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
16237
|
+
pointer-events: none;
|
|
16238
|
+
}
|
|
16239
|
+
.cds--number--readonly .cds--number__control-btn:hover {
|
|
16240
|
+
background-color: transparent;
|
|
16241
|
+
cursor: pointer;
|
|
16242
|
+
}
|
|
16243
|
+
.cds--number--readonly .cds--number__control-btn:hover::before, .cds--number--readonly .cds--number__control-btn:hover::after {
|
|
16244
|
+
background-color: transparent;
|
|
16060
16245
|
}
|
|
16061
16246
|
|
|
16062
|
-
.cds--
|
|
16063
|
-
|
|
16064
|
-
|
|
16247
|
+
.cds--number--readonly input[type=number]:focus ~ .cds--number__controls .cds--number__control-btn:hover {
|
|
16248
|
+
outline: none;
|
|
16249
|
+
}
|
|
16250
|
+
|
|
16251
|
+
.cds--number--readonly .cds--number__control-btn::before,
|
|
16252
|
+
.cds--number--readonly .cds--number__control-btn::after {
|
|
16253
|
+
background: transparent;
|
|
16254
|
+
}
|
|
16255
|
+
|
|
16256
|
+
.cds--number--readonly .cds--number__controls:hover .cds--number__rule-divider:not(:first-of-type) {
|
|
16257
|
+
background-color: var(--cds-border-subtle);
|
|
16065
16258
|
}
|
|
16066
16259
|
|
|
16067
16260
|
.cds--number.cds--skeleton {
|
|
@@ -16206,7 +16399,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
16206
16399
|
}
|
|
16207
16400
|
.cds--overflow-menu:hover,
|
|
16208
16401
|
.cds--overflow-menu__trigger:hover {
|
|
16209
|
-
background-color: var(--cds-
|
|
16402
|
+
background-color: var(--cds-layer-hover);
|
|
16210
16403
|
}
|
|
16211
16404
|
|
|
16212
16405
|
.cds--overflow-menu--sm {
|
|
@@ -16676,7 +16869,7 @@ a.cds--overflow-menu-options__btn::before {
|
|
|
16676
16869
|
border-right: 1px solid var(--cds-border-subtle);
|
|
16677
16870
|
}
|
|
16678
16871
|
|
|
16679
|
-
.cds--
|
|
16872
|
+
.cds--pagination__right {
|
|
16680
16873
|
border-left: 1px solid var(--cds-border-subtle);
|
|
16681
16874
|
}
|
|
16682
16875
|
|
|
@@ -16710,6 +16903,15 @@ a.cds--overflow-menu-options__btn::before {
|
|
|
16710
16903
|
margin-left: 0.0625rem;
|
|
16711
16904
|
}
|
|
16712
16905
|
|
|
16906
|
+
.cds--pagination__right .cds--pagination__text.cds--pagination__page-text {
|
|
16907
|
+
margin-right: 0.0625rem;
|
|
16908
|
+
margin-left: 1rem;
|
|
16909
|
+
}
|
|
16910
|
+
|
|
16911
|
+
.cds--pagination__right .cds--pagination__text:empty {
|
|
16912
|
+
margin: 0;
|
|
16913
|
+
}
|
|
16914
|
+
|
|
16713
16915
|
.cds--pagination__left {
|
|
16714
16916
|
padding: 0 1rem 0 0;
|
|
16715
16917
|
}
|
|
@@ -18311,6 +18513,22 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
18311
18513
|
background-color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
18312
18514
|
}
|
|
18313
18515
|
|
|
18516
|
+
.cds--radio-button-group--readonly .cds--radio-button + .cds--radio-button__label .cds--radio-button__appearance {
|
|
18517
|
+
border-color: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
18518
|
+
}
|
|
18519
|
+
|
|
18520
|
+
.cds--radio-button-group--readonly .cds--radio-button__label {
|
|
18521
|
+
cursor: default;
|
|
18522
|
+
}
|
|
18523
|
+
|
|
18524
|
+
.cds--radio-button-group--readonly .cds--radio-button__label-text {
|
|
18525
|
+
cursor: text;
|
|
18526
|
+
-webkit-user-select: text;
|
|
18527
|
+
-moz-user-select: text;
|
|
18528
|
+
-ms-user-select: text;
|
|
18529
|
+
user-select: text;
|
|
18530
|
+
}
|
|
18531
|
+
|
|
18314
18532
|
.cds--radio-button:focus + .cds--radio-button__label .cds--radio-button__appearance {
|
|
18315
18533
|
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
18316
18534
|
outline-offset: 1.5px;
|
|
@@ -19228,6 +19446,19 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
19228
19446
|
outline: none;
|
|
19229
19447
|
}
|
|
19230
19448
|
|
|
19449
|
+
.cds--slider--readonly {
|
|
19450
|
+
cursor: default;
|
|
19451
|
+
}
|
|
19452
|
+
|
|
19453
|
+
.cds--slider--readonly .cds--slider__thumb {
|
|
19454
|
+
width: 0;
|
|
19455
|
+
height: 0;
|
|
19456
|
+
}
|
|
19457
|
+
|
|
19458
|
+
.cds--slider--readonly ~ .cds--slider-text-input {
|
|
19459
|
+
background-color: transparent;
|
|
19460
|
+
}
|
|
19461
|
+
|
|
19231
19462
|
.cds--slider-container.cds--skeleton .cds--slider__range-label {
|
|
19232
19463
|
position: relative;
|
|
19233
19464
|
padding: 0;
|
|
@@ -19885,6 +20116,9 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
19885
20116
|
border-bottom: 0;
|
|
19886
20117
|
line-height: calc(3rem - (0.5rem * 2));
|
|
19887
20118
|
}
|
|
20119
|
+
.cds--tabs.cds--tabs__icon--default .cds--tab--list, .cds--tabs.cds--tabs__icon--lg .cds--tab--list {
|
|
20120
|
+
overflow-x: visible;
|
|
20121
|
+
}
|
|
19888
20122
|
.cds--tabs .cds--tabs__nav-item--icon, .cds--tabs.cds--tabs--contained .cds--tabs__nav-item--icon {
|
|
19889
20123
|
display: -webkit-box;
|
|
19890
20124
|
display: -ms-flexbox;
|
|
@@ -20745,6 +20979,19 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20745
20979
|
max-height: 3rem;
|
|
20746
20980
|
}
|
|
20747
20981
|
|
|
20982
|
+
.cds--time-picker--readonly .cds--time-picker__input-field {
|
|
20983
|
+
background-color: transparent;
|
|
20984
|
+
}
|
|
20985
|
+
|
|
20986
|
+
.cds--time-picker--readonly .cds--select-input {
|
|
20987
|
+
background-color: transparent;
|
|
20988
|
+
cursor: default;
|
|
20989
|
+
}
|
|
20990
|
+
|
|
20991
|
+
.cds--time-picker--readonly .cds--select-input + .cds--select__arrow {
|
|
20992
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
20993
|
+
}
|
|
20994
|
+
|
|
20748
20995
|
.cds--toggletip-label {
|
|
20749
20996
|
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
20750
20997
|
font-weight: var(--cds-label-01-font-weight, 400);
|
|
@@ -20989,6 +21236,34 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20989
21236
|
fill: var(--cds-button-disabled, #c6c6c6);
|
|
20990
21237
|
}
|
|
20991
21238
|
|
|
21239
|
+
.cds--toggle--readonly .cds--toggle__appearance {
|
|
21240
|
+
cursor: default;
|
|
21241
|
+
}
|
|
21242
|
+
|
|
21243
|
+
.cds--toggle--readonly .cds--toggle__switch {
|
|
21244
|
+
border: 1px solid var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
21245
|
+
background-color: transparent;
|
|
21246
|
+
}
|
|
21247
|
+
.cds--toggle--readonly .cds--toggle__switch::before {
|
|
21248
|
+
top: 0.125rem;
|
|
21249
|
+
left: 0.125rem;
|
|
21250
|
+
background-color: var(--cds-text-primary, #161616);
|
|
21251
|
+
}
|
|
21252
|
+
|
|
21253
|
+
.cds--toggle--readonly .cds--toggle__check {
|
|
21254
|
+
top: 0.3125rem;
|
|
21255
|
+
right: 0.25rem;
|
|
21256
|
+
fill: var(--cds-background, #ffffff);
|
|
21257
|
+
}
|
|
21258
|
+
|
|
21259
|
+
.cds--toggle--readonly .cds--toggle__text {
|
|
21260
|
+
cursor: text;
|
|
21261
|
+
-webkit-user-select: text;
|
|
21262
|
+
-moz-user-select: text;
|
|
21263
|
+
-ms-user-select: text;
|
|
21264
|
+
user-select: text;
|
|
21265
|
+
}
|
|
21266
|
+
|
|
20992
21267
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
20993
21268
|
.cds--toggle__switch,
|
|
20994
21269
|
.cds--toggle__switch::before {
|