@carbon/styles 1.16.0-rc.0 → 1.17.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 +46 -12
- package/css/styles.min.css +1 -1
- package/package.json +5 -5
- package/scss/components/fluid-text-input/_fluid-text-input.scss +9 -0
- package/scss/components/notification/_tokens.scss +150 -42
- package/scss/components/progress-indicator/_progress-indicator.scss +5 -0
- package/scss/components/text-input/_text-input.scss +3 -8
- package/scss/components/ui-shell/header/_header.scss +16 -0
package/css/styles.css
CHANGED
|
@@ -2881,7 +2881,7 @@ em {
|
|
|
2881
2881
|
--cds-notification-background-success: #defbe6;
|
|
2882
2882
|
--cds-notification-background-info: #edf5ff;
|
|
2883
2883
|
--cds-notification-background-warning: #fdf6dd;
|
|
2884
|
-
--cds-notification-action-hover: #
|
|
2884
|
+
--cds-notification-action-hover: #edf5ff;
|
|
2885
2885
|
--cds-notification-action-tertiary-inverse: #ffffff;
|
|
2886
2886
|
--cds-notification-action-tertiary-inverse-active: #c6c6c6;
|
|
2887
2887
|
--cds-notification-action-tertiary-inverse-hover: #f4f4f4;
|
|
@@ -3050,7 +3050,7 @@ em {
|
|
|
3050
3050
|
--cds-notification-background-success: #defbe6;
|
|
3051
3051
|
--cds-notification-background-info: #edf5ff;
|
|
3052
3052
|
--cds-notification-background-warning: #fdf6dd;
|
|
3053
|
-
--cds-notification-action-hover: #
|
|
3053
|
+
--cds-notification-action-hover: #edf5ff;
|
|
3054
3054
|
--cds-notification-action-tertiary-inverse: #ffffff;
|
|
3055
3055
|
--cds-notification-action-tertiary-inverse-active: #c6c6c6;
|
|
3056
3056
|
--cds-notification-action-tertiary-inverse-hover: #f4f4f4;
|
|
@@ -6215,19 +6215,15 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6215
6215
|
width: 100%;
|
|
6216
6216
|
}
|
|
6217
6217
|
|
|
6218
|
-
.cds--text-input__invalid-icon
|
|
6219
|
-
.cds--text-input__readonly-icon {
|
|
6218
|
+
.cds--text-input__invalid-icon {
|
|
6220
6219
|
position: absolute;
|
|
6221
6220
|
top: 50%;
|
|
6222
6221
|
right: 1rem;
|
|
6222
|
+
fill: var(--cds-support-error, #da1e28);
|
|
6223
6223
|
-webkit-transform: translateY(-50%);
|
|
6224
6224
|
transform: translateY(-50%);
|
|
6225
6225
|
}
|
|
6226
6226
|
|
|
6227
|
-
.cds--text-input__invalid-icon {
|
|
6228
|
-
fill: var(--cds-support-error, #da1e28);
|
|
6229
|
-
}
|
|
6230
|
-
|
|
6231
6227
|
.cds--text-input__invalid-icon--warning {
|
|
6232
6228
|
fill: var(--cds-support-warning, #f1c21b);
|
|
6233
6229
|
}
|
|
@@ -6510,8 +6506,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
6510
6506
|
}
|
|
6511
6507
|
|
|
6512
6508
|
.cds--text-input--invalid,
|
|
6513
|
-
.cds--text-input--warning
|
|
6514
|
-
.cds--text-input-wrapper--readonly .cds--text-input {
|
|
6509
|
+
.cds--text-input--warning {
|
|
6515
6510
|
padding-right: 2.5rem;
|
|
6516
6511
|
}
|
|
6517
6512
|
|
|
@@ -13325,11 +13320,20 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
13325
13320
|
display: -webkit-box;
|
|
13326
13321
|
display: -ms-flexbox;
|
|
13327
13322
|
display: flex;
|
|
13323
|
+
width: calc(100% - 2rem);
|
|
13328
13324
|
height: 1rem;
|
|
13329
13325
|
-webkit-box-align: center;
|
|
13330
13326
|
-ms-flex-align: center;
|
|
13331
13327
|
align-items: center;
|
|
13332
13328
|
margin: 0;
|
|
13329
|
+
-ms-overflow-style: none;
|
|
13330
|
+
overflow-x: scroll;
|
|
13331
|
+
scrollbar-width: none;
|
|
13332
|
+
white-space: nowrap;
|
|
13333
|
+
}
|
|
13334
|
+
|
|
13335
|
+
.cds--text-input--fluid .cds--label::-webkit-scrollbar {
|
|
13336
|
+
display: none;
|
|
13333
13337
|
}
|
|
13334
13338
|
|
|
13335
13339
|
.cds--text-input--fluid .cds--form__helper-text {
|
|
@@ -14518,7 +14522,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
14518
14522
|
|
|
14519
14523
|
.cds--inline-notification--low-contrast .cds--inline-notification__action-button.cds--btn--ghost:active,
|
|
14520
14524
|
.cds--inline-notification--low-contrast .cds--inline-notification__action-button.cds--btn--ghost:hover {
|
|
14521
|
-
background-color: var(--cds-notification-action-hover, #
|
|
14525
|
+
background-color: var(--cds-notification-action-hover, #edf5ff);
|
|
14522
14526
|
}
|
|
14523
14527
|
|
|
14524
14528
|
.cds--inline-notification__action-button.cds--btn--ghost:focus {
|
|
@@ -15240,7 +15244,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
15240
15244
|
|
|
15241
15245
|
.cds--actionable-notification--low-contrast .cds--actionable-notification__action-button.cds--btn--ghost:active,
|
|
15242
15246
|
.cds--actionable-notification--low-contrast .cds--actionable-notification__action-button.cds--btn--ghost:hover {
|
|
15243
|
-
background-color: var(--cds-notification-action-hover, #
|
|
15247
|
+
background-color: var(--cds-notification-action-hover, #edf5ff);
|
|
15244
15248
|
}
|
|
15245
15249
|
|
|
15246
15250
|
.cds--actionable-notification__action-button.cds--btn--ghost:focus {
|
|
@@ -17888,6 +17892,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
17888
17892
|
}
|
|
17889
17893
|
}
|
|
17890
17894
|
|
|
17895
|
+
.cds--progress.cds--progress--vertical.cds--skeleton .cds--progress-label {
|
|
17896
|
+
margin-top: 0.0625rem;
|
|
17897
|
+
}
|
|
17898
|
+
|
|
17891
17899
|
.cds--progress--vertical {
|
|
17892
17900
|
display: -webkit-box;
|
|
17893
17901
|
display: -ms-flexbox;
|
|
@@ -21266,6 +21274,19 @@ a.cds--header__menu-item[aria-current=page]:focus::after,
|
|
|
21266
21274
|
border: 0;
|
|
21267
21275
|
}
|
|
21268
21276
|
|
|
21277
|
+
.cds--header__submenu .cds--header__menu a.cds--header__menu-item[aria-current=page]::after,
|
|
21278
|
+
.cds--header__submenu .cds--header__menu .cds--header__menu-item--current::after {
|
|
21279
|
+
bottom: 0;
|
|
21280
|
+
left: -2px;
|
|
21281
|
+
border-bottom: none;
|
|
21282
|
+
border-left: 3px solid var(--cds-border-interactive, #0f62fe);
|
|
21283
|
+
}
|
|
21284
|
+
.cds--header__submenu .cds--header__menu a.cds--header__menu-item[aria-current=page]:focus::after,
|
|
21285
|
+
.cds--header__submenu .cds--header__menu .cds--header__menu-item--current:focus::after {
|
|
21286
|
+
left: 0;
|
|
21287
|
+
border-left: 3px solid var(--cds-border-interactive, #0f62fe);
|
|
21288
|
+
}
|
|
21289
|
+
|
|
21269
21290
|
a.cds--header__menu-item[aria-current=page]:focus,
|
|
21270
21291
|
a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
21271
21292
|
border: 2px solid var(--cds-focus, #0f62fe);
|
|
@@ -22289,6 +22310,19 @@ a.cds--header__menu-item[aria-current=page]:focus::after,
|
|
|
22289
22310
|
border: 0;
|
|
22290
22311
|
}
|
|
22291
22312
|
|
|
22313
|
+
.cds--header__submenu .cds--header__menu a.cds--header__menu-item[aria-current=page]::after,
|
|
22314
|
+
.cds--header__submenu .cds--header__menu .cds--header__menu-item--current::after {
|
|
22315
|
+
bottom: 0;
|
|
22316
|
+
left: -2px;
|
|
22317
|
+
border-bottom: none;
|
|
22318
|
+
border-left: 3px solid var(--cds-border-interactive, #0f62fe);
|
|
22319
|
+
}
|
|
22320
|
+
.cds--header__submenu .cds--header__menu a.cds--header__menu-item[aria-current=page]:focus::after,
|
|
22321
|
+
.cds--header__submenu .cds--header__menu .cds--header__menu-item--current:focus::after {
|
|
22322
|
+
left: 0;
|
|
22323
|
+
border-left: 3px solid var(--cds-border-interactive, #0f62fe);
|
|
22324
|
+
}
|
|
22325
|
+
|
|
22292
22326
|
a.cds--header__menu-item[aria-current=page]:focus,
|
|
22293
22327
|
a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
22294
22328
|
border: 2px solid var(--cds-focus, #0f62fe);
|