@carbon/styles 1.14.0-rc.0 → 1.15.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 +506 -83
- package/css/styles.min.css +1 -1
- package/package.json +8 -8
- package/scss/components/_index.scss +4 -1
- package/scss/components/accordion/_accordion.scss +3 -0
- package/scss/components/contained-list/_contained-list.scss +174 -0
- package/scss/components/contained-list/_index.scss +11 -0
- package/scss/components/data-table/_data-table.scss +1 -0
- package/scss/components/data-table/action/_data-table-action.scss +4 -1
- package/scss/components/fluid-dropdown/_fluid-dropdown.scss +22 -0
- package/scss/components/fluid-dropdown/_index.scss +11 -0
- package/scss/components/fluid-list-box/_fluid-list-box.scss +217 -0
- package/scss/components/fluid-list-box/_index.scss +11 -0
- package/scss/components/fluid-text-input/_fluid-text-input.scss +21 -0
- package/scss/components/list-box/_list-box.scss +1 -0
- package/scss/components/menu/_menu.scss +2 -0
- package/scss/components/modal/_modal.scss +11 -3
- package/scss/components/progress-indicator/_progress-indicator.scss +11 -15
- package/scss/components/text-input/_text-input.scss +10 -0
- package/scss/components/toggle/_toggle.scss +2 -1
- package/scss/components/ui-shell/header/_header.scss +9 -2
package/css/styles.css
CHANGED
|
@@ -3462,6 +3462,7 @@ em {
|
|
|
3462
3462
|
}
|
|
3463
3463
|
|
|
3464
3464
|
.cds--accordion__item {
|
|
3465
|
+
display: list-item;
|
|
3465
3466
|
overflow: visible;
|
|
3466
3467
|
border-top: 1px solid var(--cds-border-subtle);
|
|
3467
3468
|
-webkit-transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
@@ -3549,6 +3550,9 @@ em {
|
|
|
3549
3550
|
|
|
3550
3551
|
.cds--accordion--lg .cds--accordion__heading {
|
|
3551
3552
|
min-height: 3rem;
|
|
3553
|
+
-webkit-box-align: center;
|
|
3554
|
+
-ms-flex-align: center;
|
|
3555
|
+
align-items: center;
|
|
3552
3556
|
}
|
|
3553
3557
|
|
|
3554
3558
|
.cds--accordion--sm .cds--accordion__heading {
|
|
@@ -3601,6 +3605,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
3601
3605
|
letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
|
|
3602
3606
|
z-index: 1;
|
|
3603
3607
|
width: 100%;
|
|
3608
|
+
padding-right: 1rem;
|
|
3604
3609
|
margin: 0 0 0 1rem;
|
|
3605
3610
|
text-align: left;
|
|
3606
3611
|
}
|
|
@@ -6783,6 +6788,20 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6783
6788
|
}
|
|
6784
6789
|
}
|
|
6785
6790
|
|
|
6791
|
+
.cds--text-input__label-wrapper {
|
|
6792
|
+
display: -webkit-box;
|
|
6793
|
+
display: -ms-flexbox;
|
|
6794
|
+
display: flex;
|
|
6795
|
+
width: 100%;
|
|
6796
|
+
-webkit-box-pack: justify;
|
|
6797
|
+
-ms-flex-pack: justify;
|
|
6798
|
+
justify-content: space-between;
|
|
6799
|
+
}
|
|
6800
|
+
.cds--text-input__label-wrapper .cds--text-input__label-counter {
|
|
6801
|
+
-ms-flex-item-align: end;
|
|
6802
|
+
align-self: end;
|
|
6803
|
+
}
|
|
6804
|
+
|
|
6786
6805
|
.cds--tag {
|
|
6787
6806
|
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
6788
6807
|
font-weight: var(--cds-label-01-font-weight, 400);
|
|
@@ -7921,6 +7940,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7921
7940
|
.cds--list-box input[type=text] {
|
|
7922
7941
|
min-width: 0;
|
|
7923
7942
|
background-color: inherit;
|
|
7943
|
+
text-overflow: ellipsis;
|
|
7924
7944
|
}
|
|
7925
7945
|
|
|
7926
7946
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
@@ -7972,6 +7992,192 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7972
7992
|
padding: 0;
|
|
7973
7993
|
}
|
|
7974
7994
|
|
|
7995
|
+
.cds--contained-list__header {
|
|
7996
|
+
position: -webkit-sticky;
|
|
7997
|
+
position: sticky;
|
|
7998
|
+
z-index: 1;
|
|
7999
|
+
top: 0;
|
|
8000
|
+
display: -webkit-box;
|
|
8001
|
+
display: -ms-flexbox;
|
|
8002
|
+
display: flex;
|
|
8003
|
+
-webkit-box-align: center;
|
|
8004
|
+
-ms-flex-align: center;
|
|
8005
|
+
align-items: center;
|
|
8006
|
+
padding-inline: 1rem;
|
|
8007
|
+
}
|
|
8008
|
+
|
|
8009
|
+
.cds--contained-list__label {
|
|
8010
|
+
width: 100%;
|
|
8011
|
+
}
|
|
8012
|
+
|
|
8013
|
+
.cds--contained-list--on-page + .cds--contained-list--on-page {
|
|
8014
|
+
-webkit-margin-before: 1rem;
|
|
8015
|
+
margin-block-start: 1rem;
|
|
8016
|
+
}
|
|
8017
|
+
|
|
8018
|
+
.cds--contained-list--on-page .cds--contained-list__header {
|
|
8019
|
+
font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
|
|
8020
|
+
font-weight: var(--cds-heading-compact-01-font-weight, 600);
|
|
8021
|
+
line-height: var(--cds-heading-compact-01-line-height, 1.28572);
|
|
8022
|
+
letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
|
|
8023
|
+
height: 3rem;
|
|
8024
|
+
border-bottom: 1px solid var(--cds-border-subtle);
|
|
8025
|
+
background-color: var(--cds-background, #ffffff);
|
|
8026
|
+
color: var(--cds-text-primary, #161616);
|
|
8027
|
+
}
|
|
8028
|
+
|
|
8029
|
+
.cds--layer-two .cds--contained-list--on-page .cds--contained-list__header {
|
|
8030
|
+
background-color: var(--cds-layer-01, #f4f4f4);
|
|
8031
|
+
}
|
|
8032
|
+
|
|
8033
|
+
.cds--layer-three .cds--contained-list--on-page .cds--contained-list__header {
|
|
8034
|
+
background-color: var(--cds-layer-02, #ffffff);
|
|
8035
|
+
}
|
|
8036
|
+
|
|
8037
|
+
.cds--contained-list--disclosed .cds--contained-list__header {
|
|
8038
|
+
font-size: var(--cds-label-01-font-size, 0.75rem);
|
|
8039
|
+
font-weight: var(--cds-label-01-font-weight, 400);
|
|
8040
|
+
line-height: var(--cds-label-01-line-height, 1.33333);
|
|
8041
|
+
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
8042
|
+
height: 2rem;
|
|
8043
|
+
background-color: var(--cds-layer);
|
|
8044
|
+
color: var(--cds-text-secondary, #525252);
|
|
8045
|
+
}
|
|
8046
|
+
|
|
8047
|
+
.cds--contained-list-item {
|
|
8048
|
+
position: relative;
|
|
8049
|
+
}
|
|
8050
|
+
|
|
8051
|
+
.cds--contained-list-item:not(:first-of-type) {
|
|
8052
|
+
margin-top: -1px;
|
|
8053
|
+
}
|
|
8054
|
+
|
|
8055
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
8056
|
+
-webkit-box-sizing: border-box;
|
|
8057
|
+
box-sizing: border-box;
|
|
8058
|
+
padding: 0;
|
|
8059
|
+
border: 0;
|
|
8060
|
+
margin: 0;
|
|
8061
|
+
font-family: inherit;
|
|
8062
|
+
font-size: 100%;
|
|
8063
|
+
vertical-align: baseline;
|
|
8064
|
+
display: inline-block;
|
|
8065
|
+
padding: 0;
|
|
8066
|
+
border: 0;
|
|
8067
|
+
-webkit-appearance: none;
|
|
8068
|
+
-moz-appearance: none;
|
|
8069
|
+
appearance: none;
|
|
8070
|
+
background: none;
|
|
8071
|
+
cursor: pointer;
|
|
8072
|
+
text-align: start;
|
|
8073
|
+
width: 100%;
|
|
8074
|
+
text-align: start;
|
|
8075
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
8076
|
+
transition: background-color 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
8077
|
+
}
|
|
8078
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content *,
|
|
8079
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content *::before,
|
|
8080
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content *::after {
|
|
8081
|
+
-webkit-box-sizing: inherit;
|
|
8082
|
+
box-sizing: inherit;
|
|
8083
|
+
}
|
|
8084
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content::-moz-focus-inner {
|
|
8085
|
+
border: 0;
|
|
8086
|
+
}
|
|
8087
|
+
|
|
8088
|
+
.cds--contained-list-item__content,
|
|
8089
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content {
|
|
8090
|
+
font-size: var(--cds-body-01-font-size, 0.875rem);
|
|
8091
|
+
font-weight: var(--cds-body-01-font-weight, 400);
|
|
8092
|
+
line-height: var(--cds-body-01-line-height, 1.42857);
|
|
8093
|
+
letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
|
|
8094
|
+
padding: calc(1rem - 0.125rem) 1rem;
|
|
8095
|
+
color: var(--cds-text-primary, #161616);
|
|
8096
|
+
}
|
|
8097
|
+
|
|
8098
|
+
.cds--contained-list-item:not(:last-of-type)::before {
|
|
8099
|
+
position: absolute;
|
|
8100
|
+
right: 1rem;
|
|
8101
|
+
bottom: 0;
|
|
8102
|
+
left: 1rem;
|
|
8103
|
+
height: 1px;
|
|
8104
|
+
background-color: var(--cds-border-subtle);
|
|
8105
|
+
content: "";
|
|
8106
|
+
}
|
|
8107
|
+
|
|
8108
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content:not(:disabled):hover {
|
|
8109
|
+
background-color: var(--cds-layer-hover);
|
|
8110
|
+
}
|
|
8111
|
+
|
|
8112
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content:not(:disabled):active {
|
|
8113
|
+
background-color: var(--cds-layer-active);
|
|
8114
|
+
}
|
|
8115
|
+
|
|
8116
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content:disabled {
|
|
8117
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
8118
|
+
cursor: not-allowed;
|
|
8119
|
+
}
|
|
8120
|
+
|
|
8121
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content:focus {
|
|
8122
|
+
outline: none;
|
|
8123
|
+
}
|
|
8124
|
+
|
|
8125
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content:focus::after {
|
|
8126
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
8127
|
+
outline-offset: -2px;
|
|
8128
|
+
position: absolute;
|
|
8129
|
+
top: 0;
|
|
8130
|
+
right: 0;
|
|
8131
|
+
bottom: 0;
|
|
8132
|
+
left: 0;
|
|
8133
|
+
content: "";
|
|
8134
|
+
}
|
|
8135
|
+
@media screen and (prefers-contrast) {
|
|
8136
|
+
.cds--contained-list-item--clickable .cds--contained-list-item__content:focus::after {
|
|
8137
|
+
outline-style: dotted;
|
|
8138
|
+
}
|
|
8139
|
+
}
|
|
8140
|
+
|
|
8141
|
+
.cds--contained-list-item--with-action .cds--contained-list-item__content {
|
|
8142
|
+
-webkit-padding-end: 4rem;
|
|
8143
|
+
padding-inline-end: 4rem;
|
|
8144
|
+
}
|
|
8145
|
+
|
|
8146
|
+
.cds--contained-list__action,
|
|
8147
|
+
.cds--contained-list-item__action {
|
|
8148
|
+
position: absolute;
|
|
8149
|
+
top: 0;
|
|
8150
|
+
right: 0;
|
|
8151
|
+
left: 0;
|
|
8152
|
+
display: -webkit-box;
|
|
8153
|
+
display: -ms-flexbox;
|
|
8154
|
+
display: flex;
|
|
8155
|
+
-webkit-box-pack: end;
|
|
8156
|
+
-ms-flex-pack: end;
|
|
8157
|
+
justify-content: flex-end;
|
|
8158
|
+
pointer-events: none;
|
|
8159
|
+
}
|
|
8160
|
+
|
|
8161
|
+
.cds--contained-list__action > *,
|
|
8162
|
+
.cds--contained-list-item__action > * {
|
|
8163
|
+
pointer-events: all;
|
|
8164
|
+
}
|
|
8165
|
+
|
|
8166
|
+
.cds--contained-list-item--with-icon .cds--contained-list-item__content {
|
|
8167
|
+
display: grid;
|
|
8168
|
+
-webkit-column-gap: 0.75rem;
|
|
8169
|
+
-moz-column-gap: 0.75rem;
|
|
8170
|
+
column-gap: 0.75rem;
|
|
8171
|
+
grid-template-columns: 1rem 1fr;
|
|
8172
|
+
}
|
|
8173
|
+
|
|
8174
|
+
.cds--contained-list-item__icon {
|
|
8175
|
+
display: -webkit-inline-box;
|
|
8176
|
+
display: -ms-inline-flexbox;
|
|
8177
|
+
display: inline-flex;
|
|
8178
|
+
padding-top: 0.125rem;
|
|
8179
|
+
}
|
|
8180
|
+
|
|
7975
8181
|
.cds--content-switcher {
|
|
7976
8182
|
display: -webkit-box;
|
|
7977
8183
|
display: -ms-flexbox;
|
|
@@ -8199,6 +8405,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8199
8405
|
}
|
|
8200
8406
|
|
|
8201
8407
|
.cds--data-table-content {
|
|
8408
|
+
display: block;
|
|
8202
8409
|
overflow-x: auto;
|
|
8203
8410
|
}
|
|
8204
8411
|
|
|
@@ -9321,7 +9528,10 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
9321
9528
|
}
|
|
9322
9529
|
|
|
9323
9530
|
.cds--action-list .cds--btn:disabled {
|
|
9324
|
-
color:
|
|
9531
|
+
border-color: transparent;
|
|
9532
|
+
background-color: transparent;
|
|
9533
|
+
color: var(--cds-text-on-color, #ffffff);
|
|
9534
|
+
opacity: 0.5;
|
|
9325
9535
|
}
|
|
9326
9536
|
|
|
9327
9537
|
.cds--action-list .cds--btn .cds--btn__icon {
|
|
@@ -12300,7 +12510,7 @@ button.cds--dropdown-text:focus {
|
|
|
12300
12510
|
}
|
|
12301
12511
|
|
|
12302
12512
|
/* stylelint-enable */
|
|
12303
|
-
.cds--
|
|
12513
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper {
|
|
12304
12514
|
position: relative;
|
|
12305
12515
|
height: 100%;
|
|
12306
12516
|
background: var(--cds-field);
|
|
@@ -12308,7 +12518,12 @@ button.cds--dropdown-text:focus {
|
|
|
12308
12518
|
transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9), outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
12309
12519
|
}
|
|
12310
12520
|
|
|
12311
|
-
.cds--
|
|
12521
|
+
.cds--list-box__wrapper--fluid .cds--list-box {
|
|
12522
|
+
min-height: 4rem;
|
|
12523
|
+
padding: 0;
|
|
12524
|
+
}
|
|
12525
|
+
|
|
12526
|
+
.cds--list-box__wrapper--fluid .cds--label {
|
|
12312
12527
|
position: absolute;
|
|
12313
12528
|
z-index: 1;
|
|
12314
12529
|
top: 0.8125rem;
|
|
@@ -12323,101 +12538,147 @@ button.cds--dropdown-text:focus {
|
|
|
12323
12538
|
margin: 0;
|
|
12324
12539
|
}
|
|
12325
12540
|
|
|
12326
|
-
.cds--
|
|
12327
|
-
|
|
12541
|
+
.cds--list-box__wrapper--fluid .cds--list-box__field {
|
|
12542
|
+
padding-top: 2.0625rem;
|
|
12543
|
+
padding-bottom: 0.8125rem;
|
|
12544
|
+
padding-left: 1rem;
|
|
12328
12545
|
}
|
|
12329
12546
|
|
|
12330
|
-
.cds--
|
|
12331
|
-
|
|
12332
|
-
|
|
12547
|
+
.cds--list-box__wrapper--fluid .cds--list-box__menu-icon {
|
|
12548
|
+
width: 1rem;
|
|
12549
|
+
height: 1rem;
|
|
12333
12550
|
}
|
|
12334
12551
|
|
|
12335
|
-
.cds--
|
|
12336
|
-
|
|
12337
|
-
display: none;
|
|
12552
|
+
.cds--list-box__wrapper--fluid:not(.cds--list-box__wrapper--fluid--condensed) .cds--list-box__menu-item {
|
|
12553
|
+
height: 4rem;
|
|
12338
12554
|
}
|
|
12339
12555
|
|
|
12340
|
-
.cds--
|
|
12341
|
-
|
|
12342
|
-
display: block;
|
|
12556
|
+
.cds--list-box__wrapper--fluid:not(.cds--list-box__wrapper--fluid--condensed) .cds--list-box__menu-item__selected-icon {
|
|
12557
|
+
top: 1.25rem;
|
|
12343
12558
|
}
|
|
12344
12559
|
|
|
12345
|
-
.cds--
|
|
12346
|
-
|
|
12560
|
+
.cds--list-box__wrapper--fluid .cds--label--disabled .cds--toggletip-label {
|
|
12561
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
12347
12562
|
}
|
|
12348
12563
|
|
|
12349
|
-
.cds--
|
|
12350
|
-
|
|
12351
|
-
|
|
12564
|
+
.cds--list-box__wrapper--fluid .cds--label--disabled .cds--toggletip-button {
|
|
12565
|
+
cursor: not-allowed;
|
|
12566
|
+
pointer-events: none;
|
|
12352
12567
|
}
|
|
12353
12568
|
|
|
12354
|
-
.cds--
|
|
12355
|
-
|
|
12356
|
-
border-bottom: none;
|
|
12569
|
+
.cds--list-box__wrapper--fluid .cds--label--disabled .cds--toggletip-button svg {
|
|
12570
|
+
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
12357
12571
|
}
|
|
12358
12572
|
|
|
12359
|
-
.cds--
|
|
12360
|
-
|
|
12361
|
-
|
|
12362
|
-
|
|
12363
|
-
border-color: var(--cds-border-subtle);
|
|
12364
|
-
border-bottom: none;
|
|
12365
|
-
margin: 0 1rem;
|
|
12573
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--focus {
|
|
12574
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
12575
|
+
outline-offset: -2px;
|
|
12576
|
+
outline-offset: 0;
|
|
12366
12577
|
}
|
|
12367
|
-
|
|
12368
|
-
.cds--
|
|
12369
|
-
|
|
12578
|
+
@media screen and (prefers-contrast) {
|
|
12579
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--focus {
|
|
12580
|
+
outline-style: dotted;
|
|
12581
|
+
}
|
|
12370
12582
|
}
|
|
12371
12583
|
|
|
12372
|
-
.cds--
|
|
12373
|
-
.cds--text-input--fluid .cds--text-input__field-wrapper--warning > .cds--text-input--warning {
|
|
12584
|
+
.cds--list-box__wrapper--fluid .cds--list-box__field:focus {
|
|
12374
12585
|
outline: none;
|
|
12586
|
+
outline-offset: 0;
|
|
12375
12587
|
}
|
|
12376
12588
|
|
|
12377
|
-
.cds--
|
|
12378
|
-
border-bottom: 1px solid var(--cds-border-strong);
|
|
12379
|
-
}
|
|
12380
|
-
|
|
12381
|
-
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid]:not(:focus) {
|
|
12589
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid:not(.cds--list-box__wrapper--fluid--focus) {
|
|
12382
12590
|
outline: 2px solid var(--cds-support-error, #da1e28);
|
|
12383
12591
|
outline-offset: -2px;
|
|
12592
|
+
outline-offset: 0;
|
|
12384
12593
|
}
|
|
12385
12594
|
@media screen and (prefers-contrast) {
|
|
12386
|
-
.cds--
|
|
12595
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid:not(.cds--list-box__wrapper--fluid--focus) {
|
|
12387
12596
|
outline-style: dotted;
|
|
12388
12597
|
}
|
|
12389
12598
|
}
|
|
12390
12599
|
|
|
12391
|
-
.cds--
|
|
12392
|
-
|
|
12393
|
-
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
12394
|
-
outline-offset: -2px;
|
|
12395
|
-
}
|
|
12396
|
-
@media screen and (prefers-contrast) {
|
|
12397
|
-
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid]:focus-within,
|
|
12398
|
-
.cds--text-input--fluid .cds--text-input__field-wrapper--warning:focus-within {
|
|
12399
|
-
outline-style: dotted;
|
|
12400
|
-
}
|
|
12600
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--focus .cds--list-box:not(.cds--list-box--invalid) {
|
|
12601
|
+
border-bottom: 1px solid transparent;
|
|
12401
12602
|
}
|
|
12402
12603
|
|
|
12403
|
-
.cds--
|
|
12404
|
-
.cds--
|
|
12604
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid .cds--list-box,
|
|
12605
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid .cds--list-box__field:focus {
|
|
12405
12606
|
outline: none;
|
|
12607
|
+
outline-offset: 0;
|
|
12406
12608
|
}
|
|
12407
12609
|
|
|
12408
|
-
.cds--
|
|
12409
|
-
|
|
12610
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid:focus-within {
|
|
12611
|
+
outline-offset: 0;
|
|
12410
12612
|
}
|
|
12411
12613
|
|
|
12412
|
-
.cds--
|
|
12614
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid .cds--list-box,
|
|
12615
|
+
.cds--list-box__wrapper--fluid .cds--list-box--warning {
|
|
12616
|
+
border-bottom: 1px solid transparent;
|
|
12617
|
+
}
|
|
12618
|
+
|
|
12619
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid .cds--form-requirement,
|
|
12620
|
+
.cds--list-box__wrapper--fluid .cds--list-box--warning ~ .cds--form-requirement {
|
|
12621
|
+
padding: 0.5rem 4rem 0.5rem 1rem;
|
|
12622
|
+
margin-top: 0;
|
|
12623
|
+
}
|
|
12624
|
+
|
|
12625
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid .cds--list-box__invalid-icon,
|
|
12626
|
+
.cds--list-box__wrapper--fluid .cds--list-box--warning .cds--list-box__invalid-icon {
|
|
12627
|
+
top: 5.0625rem;
|
|
12413
12628
|
right: 1rem;
|
|
12629
|
+
pointer-events: none;
|
|
12414
12630
|
}
|
|
12415
12631
|
|
|
12416
|
-
.cds--
|
|
12417
|
-
|
|
12418
|
-
|
|
12419
|
-
|
|
12420
|
-
|
|
12632
|
+
.cds--list-box__wrapper--fluid .cds--list-box__divider {
|
|
12633
|
+
display: none;
|
|
12634
|
+
-webkit-transition: border-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
12635
|
+
transition: border-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
12636
|
+
}
|
|
12637
|
+
|
|
12638
|
+
.cds--list-box__wrapper--fluid .cds--list-box--invalid ~ .cds--list-box__divider,
|
|
12639
|
+
.cds--list-box__wrapper--fluid .cds--list-box--warning ~ .cds--list-box__divider {
|
|
12640
|
+
display: block;
|
|
12641
|
+
border: none;
|
|
12642
|
+
border-bottom: 1px solid var(--cds-border-subtle);
|
|
12643
|
+
margin: 0 1rem;
|
|
12644
|
+
}
|
|
12645
|
+
|
|
12646
|
+
.cds--list-box__wrapper--fluid .cds--list-box--invalid:hover ~ .cds--list-box__divider,
|
|
12647
|
+
.cds--list-box__wrapper--fluid .cds--list-box--warning:hover ~ .cds--list-box__divider {
|
|
12648
|
+
border-color: transparent;
|
|
12649
|
+
}
|
|
12650
|
+
|
|
12651
|
+
.cds--list-box__wrapper--fluid .cds--list-box--up .cds--list-box__menu {
|
|
12652
|
+
bottom: 4rem;
|
|
12653
|
+
}
|
|
12654
|
+
|
|
12655
|
+
.cds--list-box__wrapper--fluid .cds--skeleton {
|
|
12656
|
+
border-bottom: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
12657
|
+
background: var(--cds-skeleton-background, #e8e8e8);
|
|
12658
|
+
}
|
|
12659
|
+
|
|
12660
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field {
|
|
12661
|
+
position: absolute;
|
|
12662
|
+
bottom: 0.8125rem;
|
|
12663
|
+
left: 1rem;
|
|
12664
|
+
width: 50%;
|
|
12665
|
+
height: 1rem;
|
|
12666
|
+
padding: 0;
|
|
12667
|
+
}
|
|
12668
|
+
|
|
12669
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label {
|
|
12670
|
+
position: absolute;
|
|
12671
|
+
top: 0.8125rem;
|
|
12672
|
+
left: 1rem;
|
|
12673
|
+
width: 25%;
|
|
12674
|
+
height: 1rem;
|
|
12675
|
+
}
|
|
12676
|
+
|
|
12677
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field,
|
|
12678
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label {
|
|
12679
|
+
-webkit-animation: 3000ms ease-in-out skeleton infinite;
|
|
12680
|
+
animation: 3000ms ease-in-out skeleton infinite;
|
|
12681
|
+
background: var(--cds-skeleton-element, #c6c6c6);
|
|
12421
12682
|
}
|
|
12422
12683
|
|
|
12423
12684
|
.cds--text-area--fluid .cds--text-area__wrapper {
|
|
@@ -12560,6 +12821,146 @@ button.cds--dropdown-text:focus {
|
|
|
12560
12821
|
height: 4rem;
|
|
12561
12822
|
}
|
|
12562
12823
|
|
|
12824
|
+
.cds--text-input--fluid.cds--text-input-wrapper {
|
|
12825
|
+
position: relative;
|
|
12826
|
+
height: 100%;
|
|
12827
|
+
background: var(--cds-field);
|
|
12828
|
+
-webkit-transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9), outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
12829
|
+
transition: background-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9), outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
12830
|
+
}
|
|
12831
|
+
|
|
12832
|
+
.cds--text-input--fluid .cds--label {
|
|
12833
|
+
position: absolute;
|
|
12834
|
+
z-index: 1;
|
|
12835
|
+
top: 0.8125rem;
|
|
12836
|
+
left: 1rem;
|
|
12837
|
+
display: -webkit-box;
|
|
12838
|
+
display: -ms-flexbox;
|
|
12839
|
+
display: flex;
|
|
12840
|
+
height: 1rem;
|
|
12841
|
+
-webkit-box-align: center;
|
|
12842
|
+
-ms-flex-align: center;
|
|
12843
|
+
align-items: center;
|
|
12844
|
+
margin: 0;
|
|
12845
|
+
}
|
|
12846
|
+
|
|
12847
|
+
.cds--text-input--fluid .cds--form__helper-text {
|
|
12848
|
+
display: none;
|
|
12849
|
+
}
|
|
12850
|
+
|
|
12851
|
+
.cds--text-input--fluid .cds--text-input {
|
|
12852
|
+
min-height: 4rem;
|
|
12853
|
+
padding: 2rem 1rem 0.8125rem;
|
|
12854
|
+
}
|
|
12855
|
+
|
|
12856
|
+
.cds--text-input__divider,
|
|
12857
|
+
.cds--text-input--fluid .cds--text-input__divider {
|
|
12858
|
+
display: none;
|
|
12859
|
+
}
|
|
12860
|
+
|
|
12861
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid],
|
|
12862
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper--warning {
|
|
12863
|
+
display: block;
|
|
12864
|
+
}
|
|
12865
|
+
|
|
12866
|
+
.cds--text-input--fluid input[data-invalid] {
|
|
12867
|
+
outline: none;
|
|
12868
|
+
}
|
|
12869
|
+
|
|
12870
|
+
.cds--text-input--fluid .cds--form-requirement {
|
|
12871
|
+
padding: 0.5rem 2.5rem 0.5rem 1rem;
|
|
12872
|
+
margin: 0;
|
|
12873
|
+
}
|
|
12874
|
+
|
|
12875
|
+
.cds--text-input--fluid .cds--text-input--invalid,
|
|
12876
|
+
.cds--text-input--fluid .cds--text-input--warning {
|
|
12877
|
+
border-bottom: none;
|
|
12878
|
+
}
|
|
12879
|
+
|
|
12880
|
+
.cds--text-input--fluid .cds--text-input--invalid + .cds--text-input__divider,
|
|
12881
|
+
.cds--text-input--fluid .cds--text-input--warning + .cds--text-input__divider {
|
|
12882
|
+
display: block;
|
|
12883
|
+
border-style: solid;
|
|
12884
|
+
border-color: var(--cds-border-subtle);
|
|
12885
|
+
border-bottom: none;
|
|
12886
|
+
margin: 0 1rem;
|
|
12887
|
+
}
|
|
12888
|
+
|
|
12889
|
+
.cds--text-input--fluid .cds--text-input__invalid-icon {
|
|
12890
|
+
top: 5rem;
|
|
12891
|
+
}
|
|
12892
|
+
|
|
12893
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid] > .cds--text-input--invalid,
|
|
12894
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper--warning > .cds--text-input--warning {
|
|
12895
|
+
outline: none;
|
|
12896
|
+
}
|
|
12897
|
+
|
|
12898
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper--warning {
|
|
12899
|
+
border-bottom: 1px solid var(--cds-border-strong);
|
|
12900
|
+
}
|
|
12901
|
+
|
|
12902
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid]:not(:focus) {
|
|
12903
|
+
outline: 2px solid var(--cds-support-error, #da1e28);
|
|
12904
|
+
outline-offset: -2px;
|
|
12905
|
+
}
|
|
12906
|
+
@media screen and (prefers-contrast) {
|
|
12907
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid]:not(:focus) {
|
|
12908
|
+
outline-style: dotted;
|
|
12909
|
+
}
|
|
12910
|
+
}
|
|
12911
|
+
|
|
12912
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid]:focus-within,
|
|
12913
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper--warning:focus-within {
|
|
12914
|
+
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
12915
|
+
outline-offset: -2px;
|
|
12916
|
+
}
|
|
12917
|
+
@media screen and (prefers-contrast) {
|
|
12918
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid]:focus-within,
|
|
12919
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper--warning:focus-within {
|
|
12920
|
+
outline-style: dotted;
|
|
12921
|
+
}
|
|
12922
|
+
}
|
|
12923
|
+
|
|
12924
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid] > .cds--text-input--invalid:focus,
|
|
12925
|
+
.cds--text-input--fluid .cds--text-input__field-wrapper--warning > .cds--text-input--warning:focus {
|
|
12926
|
+
outline: none;
|
|
12927
|
+
}
|
|
12928
|
+
|
|
12929
|
+
.cds--text-input--fluid .cds--text-input.cds--password-input {
|
|
12930
|
+
padding-right: 2.5rem;
|
|
12931
|
+
}
|
|
12932
|
+
|
|
12933
|
+
.cds--text-input--fluid.cds--password-input-wrapper .cds--text-input__invalid-icon {
|
|
12934
|
+
right: 1rem;
|
|
12935
|
+
}
|
|
12936
|
+
|
|
12937
|
+
.cds--text-input--fluid .cds--btn.cds--text-input--password__visibility__toggle.cds--tooltip__trigger {
|
|
12938
|
+
top: 1.625rem;
|
|
12939
|
+
right: 0.5rem;
|
|
12940
|
+
width: 2rem;
|
|
12941
|
+
height: 2rem;
|
|
12942
|
+
}
|
|
12943
|
+
|
|
12944
|
+
.cds--text-input--fluid__skeleton {
|
|
12945
|
+
position: relative;
|
|
12946
|
+
height: 100%;
|
|
12947
|
+
padding: 1rem;
|
|
12948
|
+
border-bottom: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
12949
|
+
background: var(--cds-skeleton-background, #e8e8e8);
|
|
12950
|
+
}
|
|
12951
|
+
|
|
12952
|
+
.cds--text-input--fluid__skeleton .cds--skeleton {
|
|
12953
|
+
height: 0.5rem;
|
|
12954
|
+
}
|
|
12955
|
+
|
|
12956
|
+
.cds--text-input--fluid__skeleton .cds--label {
|
|
12957
|
+
margin-bottom: 0.75rem;
|
|
12958
|
+
}
|
|
12959
|
+
|
|
12960
|
+
.cds--text-input--fluid__skeleton .cds--text-input {
|
|
12961
|
+
width: 80%;
|
|
12962
|
+
}
|
|
12963
|
+
|
|
12563
12964
|
@-webkit-keyframes stroke {
|
|
12564
12965
|
100% {
|
|
12565
12966
|
stroke-dashoffset: 0;
|
|
@@ -12782,6 +13183,7 @@ button.cds--dropdown-text:focus {
|
|
|
12782
13183
|
|
|
12783
13184
|
.cds--menu-option {
|
|
12784
13185
|
position: relative;
|
|
13186
|
+
display: list-item;
|
|
12785
13187
|
height: 2rem;
|
|
12786
13188
|
background-color: var(--cds-layer);
|
|
12787
13189
|
color: var(--cds-text-primary, #161616);
|
|
@@ -12879,6 +13281,7 @@ button.cds--dropdown-text:focus {
|
|
|
12879
13281
|
}
|
|
12880
13282
|
|
|
12881
13283
|
.cds--menu-divider {
|
|
13284
|
+
display: list-item;
|
|
12882
13285
|
width: 100%;
|
|
12883
13286
|
height: 1px;
|
|
12884
13287
|
margin: 0.25rem 0;
|
|
@@ -12938,9 +13341,14 @@ button.cds--dropdown-text:focus {
|
|
|
12938
13341
|
.cds--modal .cds--dropdown-list,
|
|
12939
13342
|
.cds--modal .cds--number input[type=number],
|
|
12940
13343
|
.cds--modal .cds--date-picker__input,
|
|
12941
|
-
.cds--modal .cds--multi-select
|
|
13344
|
+
.cds--modal .cds--multi-select,
|
|
13345
|
+
.cds--modal .cds--number__control-btn::before,
|
|
13346
|
+
.cds--modal .cds--number__control-btn::after {
|
|
12942
13347
|
background-color: var(--cds-field-02, #ffffff);
|
|
12943
13348
|
}
|
|
13349
|
+
.cds--modal .cds--number__rule-divider {
|
|
13350
|
+
background-color: var(--cds-border-subtle-02, #e0e0e0);
|
|
13351
|
+
}
|
|
12944
13352
|
|
|
12945
13353
|
.cds--modal.is-visible .cds--modal-container {
|
|
12946
13354
|
-webkit-transform: translate3d(0, 0, 0);
|
|
@@ -13238,8 +13646,8 @@ button.cds--dropdown-text:focus {
|
|
|
13238
13646
|
overflow: hidden;
|
|
13239
13647
|
}
|
|
13240
13648
|
|
|
13241
|
-
.cds--body--with-modal-open .cds--tooltip,
|
|
13242
|
-
.cds--body--with-modal-open .cds--overflow-menu-options {
|
|
13649
|
+
.cds--body--with-modal-open .cds--modal .cds--tooltip,
|
|
13650
|
+
.cds--body--with-modal-open .cds--modal .cds--overflow-menu-options {
|
|
13243
13651
|
z-index: 9000;
|
|
13244
13652
|
}
|
|
13245
13653
|
|
|
@@ -17078,21 +17486,21 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17078
17486
|
cursor: pointer;
|
|
17079
17487
|
}
|
|
17080
17488
|
|
|
17081
|
-
.cds--progress-label:focus {
|
|
17082
|
-
-webkit-box-shadow: 0 0.1875rem 0 0 var(--cds-link-primary, #0f62fe);
|
|
17083
|
-
box-shadow: 0 0.1875rem 0 0 var(--cds-link-primary, #0f62fe);
|
|
17084
|
-
color: var(--cds-link-primary, #0f62fe);
|
|
17085
|
-
outline: none;
|
|
17086
|
-
}
|
|
17087
|
-
|
|
17088
17489
|
.cds--progress--space-equal .cds--progress-label {
|
|
17089
17490
|
max-width: 100%;
|
|
17090
17491
|
margin-right: 0.75rem;
|
|
17091
17492
|
}
|
|
17092
17493
|
|
|
17494
|
+
.cds--progress-step-button:not(.cds--progress-step-button--unclickable):focus {
|
|
17495
|
+
outline: none;
|
|
17496
|
+
}
|
|
17497
|
+
.cds--progress-step-button:not(.cds--progress-step-button--unclickable):focus-visible .cds--progress-label {
|
|
17498
|
+
color: var(--cds-focus, #0f62fe);
|
|
17499
|
+
outline: 0.0625rem solid var(--cds-focus, #0f62fe);
|
|
17500
|
+
}
|
|
17093
17501
|
.cds--progress-step-button:not(.cds--progress-step-button--unclickable) .cds--progress-label:active {
|
|
17094
|
-
-webkit-box-shadow: 0 0.
|
|
17095
|
-
box-shadow: 0 0.
|
|
17502
|
+
-webkit-box-shadow: 0 0.0625rem 0 0 var(--cds-text-primary, #161616);
|
|
17503
|
+
box-shadow: 0 0.0625rem 0 0 var(--cds-text-primary, #161616);
|
|
17096
17504
|
color: var(--cds-text-primary, #161616);
|
|
17097
17505
|
}
|
|
17098
17506
|
|
|
@@ -17233,12 +17641,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17233
17641
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
17234
17642
|
cursor: not-allowed;
|
|
17235
17643
|
}
|
|
17236
|
-
.cds--progress-step--disabled .cds--progress-label:focus,
|
|
17237
|
-
.cds--progress-step--disabled .cds--progress-label:active {
|
|
17238
|
-
-webkit-box-shadow: none;
|
|
17239
|
-
box-shadow: none;
|
|
17240
|
-
outline: none;
|
|
17241
|
-
}
|
|
17242
17644
|
.cds--progress-step--disabled .cds--progress-line {
|
|
17243
17645
|
cursor: not-allowed;
|
|
17244
17646
|
}
|
|
@@ -20016,6 +20418,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20016
20418
|
}
|
|
20017
20419
|
|
|
20018
20420
|
.cds--toggle {
|
|
20421
|
+
display: inline-block;
|
|
20019
20422
|
-webkit-user-select: none;
|
|
20020
20423
|
-moz-user-select: none;
|
|
20021
20424
|
-ms-user-select: none;
|
|
@@ -20049,7 +20452,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20049
20452
|
}
|
|
20050
20453
|
|
|
20051
20454
|
.cds--toggle__appearance {
|
|
20052
|
-
display: grid;
|
|
20455
|
+
display: inline-grid;
|
|
20053
20456
|
-webkit-box-align: center;
|
|
20054
20457
|
-ms-flex-align: center;
|
|
20055
20458
|
align-items: center;
|
|
@@ -20425,6 +20828,11 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20425
20828
|
.cds--header__action::-moz-focus-inner {
|
|
20426
20829
|
border: 0;
|
|
20427
20830
|
}
|
|
20831
|
+
@media (max-width: 41.98rem) {
|
|
20832
|
+
.cds--header__action {
|
|
20833
|
+
min-width: 3rem;
|
|
20834
|
+
}
|
|
20835
|
+
}
|
|
20428
20836
|
|
|
20429
20837
|
.cds--header__action > svg.cds--navigation-menu-panel-collapse-icon,
|
|
20430
20838
|
.cds--header__action--active > svg.cds--navigation-menu-panel-expand-icon {
|
|
@@ -20530,6 +20938,11 @@ a.cds--header__name {
|
|
|
20530
20938
|
-ms-user-select: none;
|
|
20531
20939
|
user-select: none;
|
|
20532
20940
|
}
|
|
20941
|
+
@media (max-width: 41.98rem) {
|
|
20942
|
+
a.cds--header__name {
|
|
20943
|
+
padding: 0 1rem;
|
|
20944
|
+
}
|
|
20945
|
+
}
|
|
20533
20946
|
|
|
20534
20947
|
a.cds--header__name:focus {
|
|
20535
20948
|
border-color: var(--cds-focus, #0f62fe);
|
|
@@ -20684,7 +21097,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
20684
21097
|
}
|
|
20685
21098
|
|
|
20686
21099
|
.cds--header__menu-title[aria-expanded=true] {
|
|
20687
|
-
z-index:
|
|
21100
|
+
z-index: 8002;
|
|
20688
21101
|
background-color: var(--cds-layer);
|
|
20689
21102
|
color: var(--cds-text-secondary, #525252);
|
|
20690
21103
|
}
|
|
@@ -20703,7 +21116,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
20703
21116
|
|
|
20704
21117
|
.cds--header__menu-title[aria-expanded=true] + .cds--header__menu {
|
|
20705
21118
|
position: absolute;
|
|
20706
|
-
z-index:
|
|
21119
|
+
z-index: 8001;
|
|
20707
21120
|
bottom: 0;
|
|
20708
21121
|
left: 0;
|
|
20709
21122
|
display: -webkit-box;
|
|
@@ -21457,6 +21870,11 @@ a.cds--side-nav__link--current::before {
|
|
|
21457
21870
|
.cds--header__action::-moz-focus-inner {
|
|
21458
21871
|
border: 0;
|
|
21459
21872
|
}
|
|
21873
|
+
@media (max-width: 41.98rem) {
|
|
21874
|
+
.cds--header__action {
|
|
21875
|
+
min-width: 3rem;
|
|
21876
|
+
}
|
|
21877
|
+
}
|
|
21460
21878
|
|
|
21461
21879
|
.cds--header__action > svg.cds--navigation-menu-panel-collapse-icon,
|
|
21462
21880
|
.cds--header__action--active > svg.cds--navigation-menu-panel-expand-icon {
|
|
@@ -21562,6 +21980,11 @@ a.cds--header__name {
|
|
|
21562
21980
|
-ms-user-select: none;
|
|
21563
21981
|
user-select: none;
|
|
21564
21982
|
}
|
|
21983
|
+
@media (max-width: 41.98rem) {
|
|
21984
|
+
a.cds--header__name {
|
|
21985
|
+
padding: 0 1rem;
|
|
21986
|
+
}
|
|
21987
|
+
}
|
|
21565
21988
|
|
|
21566
21989
|
a.cds--header__name:focus {
|
|
21567
21990
|
border-color: var(--cds-focus, #0f62fe);
|
|
@@ -21716,7 +22139,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
21716
22139
|
}
|
|
21717
22140
|
|
|
21718
22141
|
.cds--header__menu-title[aria-expanded=true] {
|
|
21719
|
-
z-index:
|
|
22142
|
+
z-index: 8002;
|
|
21720
22143
|
background-color: var(--cds-layer);
|
|
21721
22144
|
color: var(--cds-text-secondary, #525252);
|
|
21722
22145
|
}
|
|
@@ -21735,7 +22158,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
21735
22158
|
|
|
21736
22159
|
.cds--header__menu-title[aria-expanded=true] + .cds--header__menu {
|
|
21737
22160
|
position: absolute;
|
|
21738
|
-
z-index:
|
|
22161
|
+
z-index: 8001;
|
|
21739
22162
|
bottom: 0;
|
|
21740
22163
|
left: 0;
|
|
21741
22164
|
display: -webkit-box;
|