@carbon/styles 1.14.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 +492 -83
- package/css/styles.min.css +1 -1
- package/package.json +2 -2
- 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/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
|
}
|
|
@@ -7935,6 +7940,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7935
7940
|
.cds--list-box input[type=text] {
|
|
7936
7941
|
min-width: 0;
|
|
7937
7942
|
background-color: inherit;
|
|
7943
|
+
text-overflow: ellipsis;
|
|
7938
7944
|
}
|
|
7939
7945
|
|
|
7940
7946
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
@@ -7986,6 +7992,192 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
7986
7992
|
padding: 0;
|
|
7987
7993
|
}
|
|
7988
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
|
+
|
|
7989
8181
|
.cds--content-switcher {
|
|
7990
8182
|
display: -webkit-box;
|
|
7991
8183
|
display: -ms-flexbox;
|
|
@@ -8213,6 +8405,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8213
8405
|
}
|
|
8214
8406
|
|
|
8215
8407
|
.cds--data-table-content {
|
|
8408
|
+
display: block;
|
|
8216
8409
|
overflow-x: auto;
|
|
8217
8410
|
}
|
|
8218
8411
|
|
|
@@ -9335,7 +9528,10 @@ tr.cds--data-table--selected:last-of-type td {
|
|
|
9335
9528
|
}
|
|
9336
9529
|
|
|
9337
9530
|
.cds--action-list .cds--btn:disabled {
|
|
9338
|
-
color:
|
|
9531
|
+
border-color: transparent;
|
|
9532
|
+
background-color: transparent;
|
|
9533
|
+
color: var(--cds-text-on-color, #ffffff);
|
|
9534
|
+
opacity: 0.5;
|
|
9339
9535
|
}
|
|
9340
9536
|
|
|
9341
9537
|
.cds--action-list .cds--btn .cds--btn__icon {
|
|
@@ -12314,7 +12510,7 @@ button.cds--dropdown-text:focus {
|
|
|
12314
12510
|
}
|
|
12315
12511
|
|
|
12316
12512
|
/* stylelint-enable */
|
|
12317
|
-
.cds--
|
|
12513
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper {
|
|
12318
12514
|
position: relative;
|
|
12319
12515
|
height: 100%;
|
|
12320
12516
|
background: var(--cds-field);
|
|
@@ -12322,7 +12518,12 @@ button.cds--dropdown-text:focus {
|
|
|
12322
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);
|
|
12323
12519
|
}
|
|
12324
12520
|
|
|
12325
|
-
.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 {
|
|
12326
12527
|
position: absolute;
|
|
12327
12528
|
z-index: 1;
|
|
12328
12529
|
top: 0.8125rem;
|
|
@@ -12337,101 +12538,147 @@ button.cds--dropdown-text:focus {
|
|
|
12337
12538
|
margin: 0;
|
|
12338
12539
|
}
|
|
12339
12540
|
|
|
12340
|
-
.cds--
|
|
12341
|
-
|
|
12541
|
+
.cds--list-box__wrapper--fluid .cds--list-box__field {
|
|
12542
|
+
padding-top: 2.0625rem;
|
|
12543
|
+
padding-bottom: 0.8125rem;
|
|
12544
|
+
padding-left: 1rem;
|
|
12342
12545
|
}
|
|
12343
12546
|
|
|
12344
|
-
.cds--
|
|
12345
|
-
|
|
12346
|
-
|
|
12547
|
+
.cds--list-box__wrapper--fluid .cds--list-box__menu-icon {
|
|
12548
|
+
width: 1rem;
|
|
12549
|
+
height: 1rem;
|
|
12347
12550
|
}
|
|
12348
12551
|
|
|
12349
|
-
.cds--
|
|
12350
|
-
|
|
12351
|
-
display: none;
|
|
12552
|
+
.cds--list-box__wrapper--fluid:not(.cds--list-box__wrapper--fluid--condensed) .cds--list-box__menu-item {
|
|
12553
|
+
height: 4rem;
|
|
12352
12554
|
}
|
|
12353
12555
|
|
|
12354
|
-
.cds--
|
|
12355
|
-
|
|
12356
|
-
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;
|
|
12357
12558
|
}
|
|
12358
12559
|
|
|
12359
|
-
.cds--
|
|
12360
|
-
|
|
12560
|
+
.cds--list-box__wrapper--fluid .cds--label--disabled .cds--toggletip-label {
|
|
12561
|
+
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
12361
12562
|
}
|
|
12362
12563
|
|
|
12363
|
-
.cds--
|
|
12364
|
-
|
|
12365
|
-
|
|
12564
|
+
.cds--list-box__wrapper--fluid .cds--label--disabled .cds--toggletip-button {
|
|
12565
|
+
cursor: not-allowed;
|
|
12566
|
+
pointer-events: none;
|
|
12366
12567
|
}
|
|
12367
12568
|
|
|
12368
|
-
.cds--
|
|
12369
|
-
|
|
12370
|
-
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));
|
|
12371
12571
|
}
|
|
12372
12572
|
|
|
12373
|
-
.cds--
|
|
12374
|
-
|
|
12375
|
-
|
|
12376
|
-
|
|
12377
|
-
border-color: var(--cds-border-subtle);
|
|
12378
|
-
border-bottom: none;
|
|
12379
|
-
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;
|
|
12380
12577
|
}
|
|
12381
|
-
|
|
12382
|
-
.cds--
|
|
12383
|
-
|
|
12578
|
+
@media screen and (prefers-contrast) {
|
|
12579
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--focus {
|
|
12580
|
+
outline-style: dotted;
|
|
12581
|
+
}
|
|
12384
12582
|
}
|
|
12385
12583
|
|
|
12386
|
-
.cds--
|
|
12387
|
-
.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 {
|
|
12388
12585
|
outline: none;
|
|
12586
|
+
outline-offset: 0;
|
|
12389
12587
|
}
|
|
12390
12588
|
|
|
12391
|
-
.cds--
|
|
12392
|
-
border-bottom: 1px solid var(--cds-border-strong);
|
|
12393
|
-
}
|
|
12394
|
-
|
|
12395
|
-
.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) {
|
|
12396
12590
|
outline: 2px solid var(--cds-support-error, #da1e28);
|
|
12397
12591
|
outline-offset: -2px;
|
|
12592
|
+
outline-offset: 0;
|
|
12398
12593
|
}
|
|
12399
12594
|
@media screen and (prefers-contrast) {
|
|
12400
|
-
.cds--
|
|
12595
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid:not(.cds--list-box__wrapper--fluid--focus) {
|
|
12401
12596
|
outline-style: dotted;
|
|
12402
12597
|
}
|
|
12403
12598
|
}
|
|
12404
12599
|
|
|
12405
|
-
.cds--
|
|
12406
|
-
|
|
12407
|
-
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
12408
|
-
outline-offset: -2px;
|
|
12409
|
-
}
|
|
12410
|
-
@media screen and (prefers-contrast) {
|
|
12411
|
-
.cds--text-input--fluid .cds--text-input__field-wrapper[data-invalid]:focus-within,
|
|
12412
|
-
.cds--text-input--fluid .cds--text-input__field-wrapper--warning:focus-within {
|
|
12413
|
-
outline-style: dotted;
|
|
12414
|
-
}
|
|
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;
|
|
12415
12602
|
}
|
|
12416
12603
|
|
|
12417
|
-
.cds--
|
|
12418
|
-
.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 {
|
|
12419
12606
|
outline: none;
|
|
12607
|
+
outline-offset: 0;
|
|
12420
12608
|
}
|
|
12421
12609
|
|
|
12422
|
-
.cds--
|
|
12423
|
-
|
|
12610
|
+
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--fluid--invalid:focus-within {
|
|
12611
|
+
outline-offset: 0;
|
|
12424
12612
|
}
|
|
12425
12613
|
|
|
12426
|
-
.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;
|
|
12427
12628
|
right: 1rem;
|
|
12629
|
+
pointer-events: none;
|
|
12428
12630
|
}
|
|
12429
12631
|
|
|
12430
|
-
.cds--
|
|
12431
|
-
|
|
12432
|
-
|
|
12433
|
-
|
|
12434
|
-
|
|
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);
|
|
12435
12682
|
}
|
|
12436
12683
|
|
|
12437
12684
|
.cds--text-area--fluid .cds--text-area__wrapper {
|
|
@@ -12574,6 +12821,146 @@ button.cds--dropdown-text:focus {
|
|
|
12574
12821
|
height: 4rem;
|
|
12575
12822
|
}
|
|
12576
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
|
+
|
|
12577
12964
|
@-webkit-keyframes stroke {
|
|
12578
12965
|
100% {
|
|
12579
12966
|
stroke-dashoffset: 0;
|
|
@@ -12796,6 +13183,7 @@ button.cds--dropdown-text:focus {
|
|
|
12796
13183
|
|
|
12797
13184
|
.cds--menu-option {
|
|
12798
13185
|
position: relative;
|
|
13186
|
+
display: list-item;
|
|
12799
13187
|
height: 2rem;
|
|
12800
13188
|
background-color: var(--cds-layer);
|
|
12801
13189
|
color: var(--cds-text-primary, #161616);
|
|
@@ -12893,6 +13281,7 @@ button.cds--dropdown-text:focus {
|
|
|
12893
13281
|
}
|
|
12894
13282
|
|
|
12895
13283
|
.cds--menu-divider {
|
|
13284
|
+
display: list-item;
|
|
12896
13285
|
width: 100%;
|
|
12897
13286
|
height: 1px;
|
|
12898
13287
|
margin: 0.25rem 0;
|
|
@@ -12952,9 +13341,14 @@ button.cds--dropdown-text:focus {
|
|
|
12952
13341
|
.cds--modal .cds--dropdown-list,
|
|
12953
13342
|
.cds--modal .cds--number input[type=number],
|
|
12954
13343
|
.cds--modal .cds--date-picker__input,
|
|
12955
|
-
.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 {
|
|
12956
13347
|
background-color: var(--cds-field-02, #ffffff);
|
|
12957
13348
|
}
|
|
13349
|
+
.cds--modal .cds--number__rule-divider {
|
|
13350
|
+
background-color: var(--cds-border-subtle-02, #e0e0e0);
|
|
13351
|
+
}
|
|
12958
13352
|
|
|
12959
13353
|
.cds--modal.is-visible .cds--modal-container {
|
|
12960
13354
|
-webkit-transform: translate3d(0, 0, 0);
|
|
@@ -13252,8 +13646,8 @@ button.cds--dropdown-text:focus {
|
|
|
13252
13646
|
overflow: hidden;
|
|
13253
13647
|
}
|
|
13254
13648
|
|
|
13255
|
-
.cds--body--with-modal-open .cds--tooltip,
|
|
13256
|
-
.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 {
|
|
13257
13651
|
z-index: 9000;
|
|
13258
13652
|
}
|
|
13259
13653
|
|
|
@@ -17092,21 +17486,21 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17092
17486
|
cursor: pointer;
|
|
17093
17487
|
}
|
|
17094
17488
|
|
|
17095
|
-
.cds--progress-label:focus {
|
|
17096
|
-
-webkit-box-shadow: 0 0.1875rem 0 0 var(--cds-link-primary, #0f62fe);
|
|
17097
|
-
box-shadow: 0 0.1875rem 0 0 var(--cds-link-primary, #0f62fe);
|
|
17098
|
-
color: var(--cds-link-primary, #0f62fe);
|
|
17099
|
-
outline: none;
|
|
17100
|
-
}
|
|
17101
|
-
|
|
17102
17489
|
.cds--progress--space-equal .cds--progress-label {
|
|
17103
17490
|
max-width: 100%;
|
|
17104
17491
|
margin-right: 0.75rem;
|
|
17105
17492
|
}
|
|
17106
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
|
+
}
|
|
17107
17501
|
.cds--progress-step-button:not(.cds--progress-step-button--unclickable) .cds--progress-label:active {
|
|
17108
|
-
-webkit-box-shadow: 0 0.
|
|
17109
|
-
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);
|
|
17110
17504
|
color: var(--cds-text-primary, #161616);
|
|
17111
17505
|
}
|
|
17112
17506
|
|
|
@@ -17247,12 +17641,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17247
17641
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
17248
17642
|
cursor: not-allowed;
|
|
17249
17643
|
}
|
|
17250
|
-
.cds--progress-step--disabled .cds--progress-label:focus,
|
|
17251
|
-
.cds--progress-step--disabled .cds--progress-label:active {
|
|
17252
|
-
-webkit-box-shadow: none;
|
|
17253
|
-
box-shadow: none;
|
|
17254
|
-
outline: none;
|
|
17255
|
-
}
|
|
17256
17644
|
.cds--progress-step--disabled .cds--progress-line {
|
|
17257
17645
|
cursor: not-allowed;
|
|
17258
17646
|
}
|
|
@@ -20030,6 +20418,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20030
20418
|
}
|
|
20031
20419
|
|
|
20032
20420
|
.cds--toggle {
|
|
20421
|
+
display: inline-block;
|
|
20033
20422
|
-webkit-user-select: none;
|
|
20034
20423
|
-moz-user-select: none;
|
|
20035
20424
|
-ms-user-select: none;
|
|
@@ -20063,7 +20452,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20063
20452
|
}
|
|
20064
20453
|
|
|
20065
20454
|
.cds--toggle__appearance {
|
|
20066
|
-
display: grid;
|
|
20455
|
+
display: inline-grid;
|
|
20067
20456
|
-webkit-box-align: center;
|
|
20068
20457
|
-ms-flex-align: center;
|
|
20069
20458
|
align-items: center;
|
|
@@ -20439,6 +20828,11 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
20439
20828
|
.cds--header__action::-moz-focus-inner {
|
|
20440
20829
|
border: 0;
|
|
20441
20830
|
}
|
|
20831
|
+
@media (max-width: 41.98rem) {
|
|
20832
|
+
.cds--header__action {
|
|
20833
|
+
min-width: 3rem;
|
|
20834
|
+
}
|
|
20835
|
+
}
|
|
20442
20836
|
|
|
20443
20837
|
.cds--header__action > svg.cds--navigation-menu-panel-collapse-icon,
|
|
20444
20838
|
.cds--header__action--active > svg.cds--navigation-menu-panel-expand-icon {
|
|
@@ -20544,6 +20938,11 @@ a.cds--header__name {
|
|
|
20544
20938
|
-ms-user-select: none;
|
|
20545
20939
|
user-select: none;
|
|
20546
20940
|
}
|
|
20941
|
+
@media (max-width: 41.98rem) {
|
|
20942
|
+
a.cds--header__name {
|
|
20943
|
+
padding: 0 1rem;
|
|
20944
|
+
}
|
|
20945
|
+
}
|
|
20547
20946
|
|
|
20548
20947
|
a.cds--header__name:focus {
|
|
20549
20948
|
border-color: var(--cds-focus, #0f62fe);
|
|
@@ -20698,7 +21097,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
20698
21097
|
}
|
|
20699
21098
|
|
|
20700
21099
|
.cds--header__menu-title[aria-expanded=true] {
|
|
20701
|
-
z-index:
|
|
21100
|
+
z-index: 8002;
|
|
20702
21101
|
background-color: var(--cds-layer);
|
|
20703
21102
|
color: var(--cds-text-secondary, #525252);
|
|
20704
21103
|
}
|
|
@@ -20717,7 +21116,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
20717
21116
|
|
|
20718
21117
|
.cds--header__menu-title[aria-expanded=true] + .cds--header__menu {
|
|
20719
21118
|
position: absolute;
|
|
20720
|
-
z-index:
|
|
21119
|
+
z-index: 8001;
|
|
20721
21120
|
bottom: 0;
|
|
20722
21121
|
left: 0;
|
|
20723
21122
|
display: -webkit-box;
|
|
@@ -21471,6 +21870,11 @@ a.cds--side-nav__link--current::before {
|
|
|
21471
21870
|
.cds--header__action::-moz-focus-inner {
|
|
21472
21871
|
border: 0;
|
|
21473
21872
|
}
|
|
21873
|
+
@media (max-width: 41.98rem) {
|
|
21874
|
+
.cds--header__action {
|
|
21875
|
+
min-width: 3rem;
|
|
21876
|
+
}
|
|
21877
|
+
}
|
|
21474
21878
|
|
|
21475
21879
|
.cds--header__action > svg.cds--navigation-menu-panel-collapse-icon,
|
|
21476
21880
|
.cds--header__action--active > svg.cds--navigation-menu-panel-expand-icon {
|
|
@@ -21576,6 +21980,11 @@ a.cds--header__name {
|
|
|
21576
21980
|
-ms-user-select: none;
|
|
21577
21981
|
user-select: none;
|
|
21578
21982
|
}
|
|
21983
|
+
@media (max-width: 41.98rem) {
|
|
21984
|
+
a.cds--header__name {
|
|
21985
|
+
padding: 0 1rem;
|
|
21986
|
+
}
|
|
21987
|
+
}
|
|
21579
21988
|
|
|
21580
21989
|
a.cds--header__name:focus {
|
|
21581
21990
|
border-color: var(--cds-focus, #0f62fe);
|
|
@@ -21730,7 +22139,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
21730
22139
|
}
|
|
21731
22140
|
|
|
21732
22141
|
.cds--header__menu-title[aria-expanded=true] {
|
|
21733
|
-
z-index:
|
|
22142
|
+
z-index: 8002;
|
|
21734
22143
|
background-color: var(--cds-layer);
|
|
21735
22144
|
color: var(--cds-text-secondary, #525252);
|
|
21736
22145
|
}
|
|
@@ -21749,7 +22158,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
21749
22158
|
|
|
21750
22159
|
.cds--header__menu-title[aria-expanded=true] + .cds--header__menu {
|
|
21751
22160
|
position: absolute;
|
|
21752
|
-
z-index:
|
|
22161
|
+
z-index: 8001;
|
|
21753
22162
|
bottom: 0;
|
|
21754
22163
|
left: 0;
|
|
21755
22164
|
display: -webkit-box;
|