@carbon/ibm-products 1.35.2 → 1.37.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/README.md +3 -3
- package/css/index-full-carbon.css +288 -265
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +3 -3
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +65 -68
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +3 -3
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +90 -70
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +2 -2
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +257 -237
- package/css/index.css.map +1 -1
- package/css/index.min.css +2 -2
- package/css/index.min.css.map +1 -1
- package/es/components/ActionSet/ActionSet.js +6 -3
- package/es/components/AddSelect/add-select-utils.js +2 -2
- package/es/components/DataSpreadsheet/DataSpreadsheet.js +2 -1
- package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +8 -1
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +88 -0
- package/es/components/Datagrid/useNestedRowExpander.js +8 -3
- package/es/components/FilterSummary/FilterSummary.js +54 -0
- package/es/components/FilterSummary/index.js +7 -0
- package/es/components/OptionsTile/OptionsTile.js +25 -10
- package/es/components/PageHeader/PageHeaderTitle.js +2 -4
- package/es/global/js/hooks/index.js +2 -1
- package/es/global/js/hooks/useControllableState.js +74 -0
- package/lib/components/ActionSet/ActionSet.js +6 -3
- package/lib/components/AddSelect/add-select-utils.js +2 -2
- package/lib/components/DataSpreadsheet/DataSpreadsheet.js +2 -1
- package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +8 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +101 -0
- package/lib/components/Datagrid/useNestedRowExpander.js +7 -2
- package/lib/components/FilterSummary/FilterSummary.js +63 -0
- package/lib/components/FilterSummary/index.js +13 -0
- package/lib/components/OptionsTile/OptionsTile.js +25 -10
- package/lib/components/PageHeader/PageHeaderTitle.js +2 -4
- package/lib/global/js/hooks/index.js +8 -1
- package/lib/global/js/hooks/useControllableState.js +80 -0
- package/package.json +15 -15
- package/scss/components/ActionSet/_action-set.scss +9 -4
- package/scss/components/Datagrid/styles/_useNestedRows.scss +17 -0
- package/scss/components/FilterSummary/_filter-summary.scss +17 -0
- package/scss/components/FilterSummary/_index.scss +10 -0
- package/scss/components/FilterSummary/_storybook-styles.scss +14 -0
- package/scss/components/PageHeader/_page-header.scss +0 -4
- package/scss/components/_index.scss +1 -0
@@ -192,7 +192,7 @@ h1 {
|
|
192
192
|
|
193
193
|
h2 {
|
194
194
|
font-size: var(--cds-productive-heading-05-font-size, 2rem);
|
195
|
-
font-weight: var(--cds-productive-heading-05-font-weight,
|
195
|
+
font-weight: var(--cds-productive-heading-05-font-weight, 400);
|
196
196
|
line-height: var(--cds-productive-heading-05-line-height, 1.25);
|
197
197
|
letter-spacing: var(--cds-productive-heading-05-letter-spacing, 0);
|
198
198
|
}
|
@@ -997,7 +997,7 @@ em {
|
|
997
997
|
|
998
998
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
999
999
|
.bx--snippet--single,
|
1000
|
-
.bx--snippet--multi {
|
1000
|
+
.bx--snippet--multi {
|
1001
1001
|
outline: 1px solid transparent;
|
1002
1002
|
}
|
1003
1003
|
}
|
@@ -1229,8 +1229,8 @@ em {
|
|
1229
1229
|
}
|
1230
1230
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
1231
1231
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger::before, .bx--btn.bx--btn--icon-only.bx--tooltip__trigger::after,
|
1232
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1233
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1232
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1233
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1234
1234
|
display: inline-block;
|
1235
1235
|
}
|
1236
1236
|
}
|
@@ -1282,29 +1282,29 @@ em {
|
|
1282
1282
|
}
|
1283
1283
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
1284
1284
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger::after,
|
1285
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1286
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1285
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1286
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1287
1287
|
width: auto;
|
1288
1288
|
}
|
1289
1289
|
}
|
1290
1290
|
@supports (-ms-accelerator: true) {
|
1291
1291
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger::after,
|
1292
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1293
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1292
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1293
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1294
1294
|
width: auto;
|
1295
1295
|
}
|
1296
1296
|
}
|
1297
1297
|
@supports (-ms-ime-align: auto) {
|
1298
1298
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger::after,
|
1299
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1300
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1299
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1300
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1301
1301
|
width: auto;
|
1302
1302
|
}
|
1303
1303
|
}
|
1304
1304
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
1305
1305
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger::after,
|
1306
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1307
|
-
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1306
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .bx--assistive-text,
|
1307
|
+
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger + .bx--assistive-text {
|
1308
1308
|
border: 1px solid transparent;
|
1309
1309
|
}
|
1310
1310
|
}
|
@@ -1419,8 +1419,8 @@ em {
|
|
1419
1419
|
}
|
1420
1420
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
1421
1421
|
.bx--tooltip__trigger.bx--btn--icon-only--top::before, .bx--tooltip__trigger.bx--btn--icon-only--top::after,
|
1422
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1423
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1422
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1423
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1424
1424
|
display: inline-block;
|
1425
1425
|
}
|
1426
1426
|
}
|
@@ -1472,29 +1472,29 @@ em {
|
|
1472
1472
|
}
|
1473
1473
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
1474
1474
|
.bx--tooltip__trigger.bx--btn--icon-only--top::after,
|
1475
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1476
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1475
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1476
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1477
1477
|
width: auto;
|
1478
1478
|
}
|
1479
1479
|
}
|
1480
1480
|
@supports (-ms-accelerator: true) {
|
1481
1481
|
.bx--tooltip__trigger.bx--btn--icon-only--top::after,
|
1482
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1483
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1482
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1483
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1484
1484
|
width: auto;
|
1485
1485
|
}
|
1486
1486
|
}
|
1487
1487
|
@supports (-ms-ime-align: auto) {
|
1488
1488
|
.bx--tooltip__trigger.bx--btn--icon-only--top::after,
|
1489
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1490
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1489
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1490
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1491
1491
|
width: auto;
|
1492
1492
|
}
|
1493
1493
|
}
|
1494
1494
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
1495
1495
|
.bx--tooltip__trigger.bx--btn--icon-only--top::after,
|
1496
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1497
|
-
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1496
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top .bx--assistive-text,
|
1497
|
+
.bx--tooltip__trigger.bx--btn--icon-only--top + .bx--assistive-text {
|
1498
1498
|
border: 1px solid transparent;
|
1499
1499
|
}
|
1500
1500
|
}
|
@@ -1690,8 +1690,8 @@ em {
|
|
1690
1690
|
}
|
1691
1691
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
1692
1692
|
.bx--tooltip__trigger.bx--btn--icon-only--right::before, .bx--tooltip__trigger.bx--btn--icon-only--right::after,
|
1693
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1694
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1693
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1694
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1695
1695
|
display: inline-block;
|
1696
1696
|
}
|
1697
1697
|
}
|
@@ -1743,29 +1743,29 @@ em {
|
|
1743
1743
|
}
|
1744
1744
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
1745
1745
|
.bx--tooltip__trigger.bx--btn--icon-only--right::after,
|
1746
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1747
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1746
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1747
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1748
1748
|
width: auto;
|
1749
1749
|
}
|
1750
1750
|
}
|
1751
1751
|
@supports (-ms-accelerator: true) {
|
1752
1752
|
.bx--tooltip__trigger.bx--btn--icon-only--right::after,
|
1753
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1754
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1753
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1754
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1755
1755
|
width: auto;
|
1756
1756
|
}
|
1757
1757
|
}
|
1758
1758
|
@supports (-ms-ime-align: auto) {
|
1759
1759
|
.bx--tooltip__trigger.bx--btn--icon-only--right::after,
|
1760
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1761
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1760
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1761
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1762
1762
|
width: auto;
|
1763
1763
|
}
|
1764
1764
|
}
|
1765
1765
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
1766
1766
|
.bx--tooltip__trigger.bx--btn--icon-only--right::after,
|
1767
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1768
|
-
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1767
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right .bx--assistive-text,
|
1768
|
+
.bx--tooltip__trigger.bx--btn--icon-only--right + .bx--assistive-text {
|
1769
1769
|
border: 1px solid transparent;
|
1770
1770
|
}
|
1771
1771
|
}
|
@@ -1956,8 +1956,8 @@ em {
|
|
1956
1956
|
}
|
1957
1957
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
1958
1958
|
.bx--tooltip__trigger.bx--btn--icon-only--bottom::before, .bx--tooltip__trigger.bx--btn--icon-only--bottom::after,
|
1959
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
1960
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
1959
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
1960
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
1961
1961
|
display: inline-block;
|
1962
1962
|
}
|
1963
1963
|
}
|
@@ -2009,29 +2009,29 @@ em {
|
|
2009
2009
|
}
|
2010
2010
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
2011
2011
|
.bx--tooltip__trigger.bx--btn--icon-only--bottom::after,
|
2012
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
2013
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
2012
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
2013
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
2014
2014
|
width: auto;
|
2015
2015
|
}
|
2016
2016
|
}
|
2017
2017
|
@supports (-ms-accelerator: true) {
|
2018
2018
|
.bx--tooltip__trigger.bx--btn--icon-only--bottom::after,
|
2019
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
2020
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
2019
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
2020
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
2021
2021
|
width: auto;
|
2022
2022
|
}
|
2023
2023
|
}
|
2024
2024
|
@supports (-ms-ime-align: auto) {
|
2025
2025
|
.bx--tooltip__trigger.bx--btn--icon-only--bottom::after,
|
2026
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
2027
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
2026
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
2027
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
2028
2028
|
width: auto;
|
2029
2029
|
}
|
2030
2030
|
}
|
2031
2031
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
2032
2032
|
.bx--tooltip__trigger.bx--btn--icon-only--bottom::after,
|
2033
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
2034
|
-
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
2033
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom .bx--assistive-text,
|
2034
|
+
.bx--tooltip__trigger.bx--btn--icon-only--bottom + .bx--assistive-text {
|
2035
2035
|
border: 1px solid transparent;
|
2036
2036
|
}
|
2037
2037
|
}
|
@@ -2225,8 +2225,8 @@ em {
|
|
2225
2225
|
}
|
2226
2226
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
2227
2227
|
.bx--tooltip__trigger.bx--btn--icon-only--left::before, .bx--tooltip__trigger.bx--btn--icon-only--left::after,
|
2228
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2229
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2228
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2229
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2230
2230
|
display: inline-block;
|
2231
2231
|
}
|
2232
2232
|
}
|
@@ -2278,29 +2278,29 @@ em {
|
|
2278
2278
|
}
|
2279
2279
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
2280
2280
|
.bx--tooltip__trigger.bx--btn--icon-only--left::after,
|
2281
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2282
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2281
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2282
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2283
2283
|
width: auto;
|
2284
2284
|
}
|
2285
2285
|
}
|
2286
2286
|
@supports (-ms-accelerator: true) {
|
2287
2287
|
.bx--tooltip__trigger.bx--btn--icon-only--left::after,
|
2288
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2289
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2288
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2289
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2290
2290
|
width: auto;
|
2291
2291
|
}
|
2292
2292
|
}
|
2293
2293
|
@supports (-ms-ime-align: auto) {
|
2294
2294
|
.bx--tooltip__trigger.bx--btn--icon-only--left::after,
|
2295
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2296
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2295
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2296
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2297
2297
|
width: auto;
|
2298
2298
|
}
|
2299
2299
|
}
|
2300
2300
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
2301
2301
|
.bx--tooltip__trigger.bx--btn--icon-only--left::after,
|
2302
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2303
|
-
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2302
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left .bx--assistive-text,
|
2303
|
+
.bx--tooltip__trigger.bx--btn--icon-only--left + .bx--assistive-text {
|
2304
2304
|
border: 1px solid transparent;
|
2305
2305
|
}
|
2306
2306
|
}
|
@@ -2737,7 +2737,7 @@ em {
|
|
2737
2737
|
|
2738
2738
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
2739
2739
|
.bx--btn--ghost.bx--btn--icon-only .bx--btn__icon path:not([data-icon-path]):not([fill=none]),
|
2740
|
-
.bx--btn--ghost.bx--btn--icon-only .bx--btn__icon {
|
2740
|
+
.bx--btn--ghost.bx--btn--icon-only .bx--btn__icon {
|
2741
2741
|
fill: ButtonText;
|
2742
2742
|
}
|
2743
2743
|
}
|
@@ -3137,7 +3137,7 @@ em {
|
|
3137
3137
|
max-height: 72%;
|
3138
3138
|
}
|
3139
3139
|
.bx--modal-container--sm .bx--modal-content p,
|
3140
|
-
.bx--modal-container--sm .bx--modal-content__regular-content {
|
3140
|
+
.bx--modal-container--sm .bx--modal-content__regular-content {
|
3141
3141
|
padding-right: 20%;
|
3142
3142
|
}
|
3143
3143
|
}
|
@@ -3391,12 +3391,12 @@ input[data-invalid]:not(:focus),
|
|
3391
3391
|
}
|
3392
3392
|
@media screen and (prefers-contrast) {
|
3393
3393
|
input[data-invalid]:not(:focus),
|
3394
|
-
.bx--number[data-invalid] input[type=number]:not(:focus),
|
3395
|
-
.bx--text-input__field-wrapper[data-invalid] > .bx--text-input--invalid:not(:focus),
|
3396
|
-
.bx--text-area__wrapper[data-invalid] > .bx--text-area--invalid:not(:focus),
|
3397
|
-
.bx--select-input__wrapper[data-invalid] .bx--select-input:not(:focus),
|
3398
|
-
.bx--list-box[data-invalid]:not(:focus),
|
3399
|
-
.bx--combo-box[data-invalid] .bx--text-input:not(:focus) {
|
3394
|
+
.bx--number[data-invalid] input[type=number]:not(:focus),
|
3395
|
+
.bx--text-input__field-wrapper[data-invalid] > .bx--text-input--invalid:not(:focus),
|
3396
|
+
.bx--text-area__wrapper[data-invalid] > .bx--text-area--invalid:not(:focus),
|
3397
|
+
.bx--select-input__wrapper[data-invalid] .bx--select-input:not(:focus),
|
3398
|
+
.bx--list-box[data-invalid]:not(:focus),
|
3399
|
+
.bx--combo-box[data-invalid] .bx--text-input:not(:focus) {
|
3400
3400
|
outline-style: dotted;
|
3401
3401
|
}
|
3402
3402
|
}
|
@@ -3642,8 +3642,8 @@ fieldset[disabled] .bx--form__helper-text {
|
|
3642
3642
|
}
|
3643
3643
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
3644
3644
|
.bx--text-input--password__visibility::before, .bx--text-input--password__visibility::after,
|
3645
|
-
.bx--text-input--password__visibility .bx--assistive-text,
|
3646
|
-
.bx--text-input--password__visibility + .bx--assistive-text {
|
3645
|
+
.bx--text-input--password__visibility .bx--assistive-text,
|
3646
|
+
.bx--text-input--password__visibility + .bx--assistive-text {
|
3647
3647
|
display: inline-block;
|
3648
3648
|
}
|
3649
3649
|
}
|
@@ -3695,29 +3695,29 @@ fieldset[disabled] .bx--form__helper-text {
|
|
3695
3695
|
}
|
3696
3696
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
3697
3697
|
.bx--text-input--password__visibility::after,
|
3698
|
-
.bx--text-input--password__visibility .bx--assistive-text,
|
3699
|
-
.bx--text-input--password__visibility + .bx--assistive-text {
|
3698
|
+
.bx--text-input--password__visibility .bx--assistive-text,
|
3699
|
+
.bx--text-input--password__visibility + .bx--assistive-text {
|
3700
3700
|
width: auto;
|
3701
3701
|
}
|
3702
3702
|
}
|
3703
3703
|
@supports (-ms-accelerator: true) {
|
3704
3704
|
.bx--text-input--password__visibility::after,
|
3705
|
-
.bx--text-input--password__visibility .bx--assistive-text,
|
3706
|
-
.bx--text-input--password__visibility + .bx--assistive-text {
|
3705
|
+
.bx--text-input--password__visibility .bx--assistive-text,
|
3706
|
+
.bx--text-input--password__visibility + .bx--assistive-text {
|
3707
3707
|
width: auto;
|
3708
3708
|
}
|
3709
3709
|
}
|
3710
3710
|
@supports (-ms-ime-align: auto) {
|
3711
3711
|
.bx--text-input--password__visibility::after,
|
3712
|
-
.bx--text-input--password__visibility .bx--assistive-text,
|
3713
|
-
.bx--text-input--password__visibility + .bx--assistive-text {
|
3712
|
+
.bx--text-input--password__visibility .bx--assistive-text,
|
3713
|
+
.bx--text-input--password__visibility + .bx--assistive-text {
|
3714
3714
|
width: auto;
|
3715
3715
|
}
|
3716
3716
|
}
|
3717
3717
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
3718
3718
|
.bx--text-input--password__visibility::after,
|
3719
|
-
.bx--text-input--password__visibility .bx--assistive-text,
|
3720
|
-
.bx--text-input--password__visibility + .bx--assistive-text {
|
3719
|
+
.bx--text-input--password__visibility .bx--assistive-text,
|
3720
|
+
.bx--text-input--password__visibility + .bx--assistive-text {
|
3721
3721
|
border: 1px solid transparent;
|
3722
3722
|
}
|
3723
3723
|
}
|
@@ -4061,8 +4061,8 @@ fieldset[disabled] .bx--form__helper-text {
|
|
4061
4061
|
|
4062
4062
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
4063
4063
|
.bx--text-input--password__visibility,
|
4064
|
-
.bx--btn.bx--btn--icon-only.bx--text-input--password__visibility__toggle.bx--tooltip__trigger svg,
|
4065
|
-
.bx--btn.bx--btn--icon-only.bx--text-input--password__visibility__toggle.bx--tooltip__trigger:hover svg {
|
4064
|
+
.bx--btn.bx--btn--icon-only.bx--text-input--password__visibility__toggle.bx--tooltip__trigger svg,
|
4065
|
+
.bx--btn.bx--btn--icon-only.bx--text-input--password__visibility__toggle.bx--tooltip__trigger:hover svg {
|
4066
4066
|
fill: ButtonText;
|
4067
4067
|
}
|
4068
4068
|
}
|
@@ -4389,7 +4389,7 @@ fieldset[disabled] .bx--form__helper-text {
|
|
4389
4389
|
}
|
4390
4390
|
@media screen and (prefers-contrast) {
|
4391
4391
|
.bx--tabs-trigger:focus,
|
4392
|
-
.bx--tabs-trigger:active {
|
4392
|
+
.bx--tabs-trigger:active {
|
4393
4393
|
outline-style: dotted;
|
4394
4394
|
}
|
4395
4395
|
}
|
@@ -4561,7 +4561,7 @@ fieldset[disabled] .bx--form__helper-text {
|
|
4561
4561
|
|
4562
4562
|
@media (min-width: 42rem) {
|
4563
4563
|
.bx--tabs--container .bx--tabs__nav-item.bx--tabs__nav-item--disabled,
|
4564
|
-
.bx--tabs--container .bx--tabs__nav-item.bx--tabs__nav-item--disabled:hover {
|
4564
|
+
.bx--tabs--container .bx--tabs__nav-item.bx--tabs__nav-item--disabled:hover {
|
4565
4565
|
background-color: var(--cds-disabled-02, #c6c6c6);
|
4566
4566
|
}
|
4567
4567
|
}
|
@@ -4583,8 +4583,8 @@ fieldset[disabled] .bx--form__helper-text {
|
|
4583
4583
|
display: flex;
|
4584
4584
|
}
|
4585
4585
|
.bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link,
|
4586
|
-
.bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:focus,
|
4587
|
-
.bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:active {
|
4586
|
+
.bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:focus,
|
4587
|
+
.bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:active {
|
4588
4588
|
font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
|
4589
4589
|
font-weight: var(--cds-productive-heading-01-font-weight, 600);
|
4590
4590
|
line-height: var(--cds-productive-heading-01-line-height, 1.28572);
|
@@ -4596,20 +4596,20 @@ fieldset[disabled] .bx--form__helper-text {
|
|
4596
4596
|
|
4597
4597
|
@media (min-width: 42rem) {
|
4598
4598
|
.bx--tabs--container .bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled),
|
4599
|
-
.bx--tabs--container .bx--tabs__nav-item--selected:hover:not(.bx--tabs__nav-item--disabled) {
|
4599
|
+
.bx--tabs--container .bx--tabs__nav-item--selected:hover:not(.bx--tabs__nav-item--disabled) {
|
4600
4600
|
background-color: var(--cds-ui-01, #f4f4f4);
|
4601
4601
|
}
|
4602
4602
|
.bx--tabs--container .bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link,
|
4603
|
-
.bx--tabs--container .bx--tabs__nav-item--selected:hover:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link {
|
4603
|
+
.bx--tabs--container .bx--tabs__nav-item--selected:hover:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link {
|
4604
4604
|
padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem);
|
4605
4605
|
border-bottom: none;
|
4606
4606
|
box-shadow: inset 0 2px 0 0 var(--cds-interactive-04, #0f62fe);
|
4607
4607
|
line-height: calc(3rem - (var(--cds-spacing-03, 0.5rem) * 2));
|
4608
4608
|
}
|
4609
4609
|
.bx--tabs--container .bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:focus,
|
4610
|
-
.bx--tabs--container .bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:active,
|
4611
|
-
.bx--tabs--container .bx--tabs__nav-item--selected:hover:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:focus,
|
4612
|
-
.bx--tabs--container .bx--tabs__nav-item--selected:hover:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:active {
|
4610
|
+
.bx--tabs--container .bx--tabs__nav-item--selected:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:active,
|
4611
|
+
.bx--tabs--container .bx--tabs__nav-item--selected:hover:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:focus,
|
4612
|
+
.bx--tabs--container .bx--tabs__nav-item--selected:hover:not(.bx--tabs__nav-item--disabled) .bx--tabs__nav-link:active {
|
4613
4613
|
box-shadow: none;
|
4614
4614
|
}
|
4615
4615
|
}
|
@@ -5353,14 +5353,17 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
|
|
5353
5353
|
font-weight: var(--cds-body-short-01-font-weight, 400);
|
5354
5354
|
line-height: var(--cds-body-short-01-line-height, 1.28572);
|
5355
5355
|
letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
|
5356
|
-
height: var(--cds-spacing-10, 4rem);
|
5357
5356
|
align-items: center;
|
5357
|
+
margin: 0;
|
5358
|
+
}
|
5359
|
+
.c4p--action-set .c4p--action-set__action-button.c4p--action-set__action-button--expressive {
|
5360
|
+
height: var(--cds-spacing-10, 4rem);
|
5358
5361
|
padding-top: var(--cds-spacing-05, 1rem);
|
5359
5362
|
padding-bottom: var(--cds-spacing-07, 2rem);
|
5360
|
-
margin: 0;
|
5361
5363
|
}
|
5362
5364
|
|
5363
|
-
.c4p--action-set.bx--btn-set .c4p--action-set__action-button.bx--btn.bx--btn--expressive
|
5365
|
+
.c4p--action-set.bx--btn-set .c4p--action-set__action-button.bx--btn.bx--btn--expressive,
|
5366
|
+
.c4p--action-set.bx--btn-set .c4p--action-set__action-button.bx--btn {
|
5364
5367
|
max-width: none;
|
5365
5368
|
}
|
5366
5369
|
|
@@ -5770,13 +5773,13 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
|
|
5770
5773
|
|
5771
5774
|
@media (min-width: 42rem) {
|
5772
5775
|
.bx--col,
|
5773
|
-
.bx--col-md {
|
5776
|
+
.bx--col-md {
|
5774
5777
|
max-width: 100%;
|
5775
5778
|
flex-basis: 0;
|
5776
5779
|
flex-grow: 1;
|
5777
5780
|
}
|
5778
5781
|
.bx--col--auto,
|
5779
|
-
.bx--col-md--auto {
|
5782
|
+
.bx--col-md--auto {
|
5780
5783
|
width: auto;
|
5781
5784
|
max-width: 100%;
|
5782
5785
|
flex: 1 0 0%;
|
@@ -6108,13 +6111,13 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
|
|
6108
6111
|
|
6109
6112
|
@media (min-width: 66rem) {
|
6110
6113
|
.bx--col,
|
6111
|
-
.bx--col-lg {
|
6114
|
+
.bx--col-lg {
|
6112
6115
|
max-width: 100%;
|
6113
6116
|
flex-basis: 0;
|
6114
6117
|
flex-grow: 1;
|
6115
6118
|
}
|
6116
6119
|
.bx--col--auto,
|
6117
|
-
.bx--col-lg--auto {
|
6120
|
+
.bx--col-lg--auto {
|
6118
6121
|
width: auto;
|
6119
6122
|
max-width: 100%;
|
6120
6123
|
flex: 1 0 0%;
|
@@ -6510,13 +6513,13 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
|
|
6510
6513
|
|
6511
6514
|
@media (min-width: 82rem) {
|
6512
6515
|
.bx--col,
|
6513
|
-
.bx--col-xlg {
|
6516
|
+
.bx--col-xlg {
|
6514
6517
|
max-width: 100%;
|
6515
6518
|
flex-basis: 0;
|
6516
6519
|
flex-grow: 1;
|
6517
6520
|
}
|
6518
6521
|
.bx--col--auto,
|
6519
|
-
.bx--col-xlg--auto {
|
6522
|
+
.bx--col-xlg--auto {
|
6520
6523
|
width: auto;
|
6521
6524
|
max-width: 100%;
|
6522
6525
|
flex: 1 0 0%;
|
@@ -6912,13 +6915,13 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
|
|
6912
6915
|
|
6913
6916
|
@media (min-width: 99rem) {
|
6914
6917
|
.bx--col,
|
6915
|
-
.bx--col-max {
|
6918
|
+
.bx--col-max {
|
6916
6919
|
max-width: 100%;
|
6917
6920
|
flex-basis: 0;
|
6918
6921
|
flex-grow: 1;
|
6919
6922
|
}
|
6920
6923
|
.bx--col--auto,
|
6921
|
-
.bx--col-max--auto {
|
6924
|
+
.bx--col-max--auto {
|
6922
6925
|
width: auto;
|
6923
6926
|
max-width: 100%;
|
6924
6927
|
flex: 1 0 0%;
|
@@ -7171,7 +7174,7 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
|
|
7171
7174
|
}
|
7172
7175
|
@media (prefers-reduced-motion: no-preference) {
|
7173
7176
|
.c4p--cascade__element,
|
7174
|
-
.c4p--cascade__col {
|
7177
|
+
.c4p--cascade__col {
|
7175
7178
|
animation: 240ms cubic-bezier(0.2, 0, 0.38, 0.9) 0s 1 fade;
|
7176
7179
|
animation-fill-mode: forwards;
|
7177
7180
|
opacity: 0;
|
@@ -7279,7 +7282,7 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
|
|
7279
7282
|
}
|
7280
7283
|
@media screen and (prefers-contrast) {
|
7281
7284
|
.bx--overflow-menu:focus,
|
7282
|
-
.bx--overflow-menu__trigger:focus {
|
7285
|
+
.bx--overflow-menu__trigger:focus {
|
7283
7286
|
outline-style: dotted;
|
7284
7287
|
}
|
7285
7288
|
}
|
@@ -7605,7 +7608,7 @@ a.bx--overflow-menu-options__btn::before {
|
|
7605
7608
|
/* stylelint-disable */
|
7606
7609
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
7607
7610
|
.bx--overflow-menu:focus,
|
7608
|
-
.bx--overflow-menu-options__btn:focus {
|
7611
|
+
.bx--overflow-menu-options__btn:focus {
|
7609
7612
|
color: Highlight;
|
7610
7613
|
outline: 1px solid Highlight;
|
7611
7614
|
}
|
@@ -8063,8 +8066,8 @@ a.bx--overflow-menu-options__btn::before {
|
|
8063
8066
|
}
|
8064
8067
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
8065
8068
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::before, .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::after,
|
8066
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8067
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8069
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8070
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8068
8071
|
display: inline-block;
|
8069
8072
|
}
|
8070
8073
|
}
|
@@ -8116,29 +8119,29 @@ a.bx--overflow-menu-options__btn::before {
|
|
8116
8119
|
}
|
8117
8120
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
8118
8121
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::after,
|
8119
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8120
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8122
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8123
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8121
8124
|
width: auto;
|
8122
8125
|
}
|
8123
8126
|
}
|
8124
8127
|
@supports (-ms-accelerator: true) {
|
8125
8128
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::after,
|
8126
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8127
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8129
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8130
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8128
8131
|
width: auto;
|
8129
8132
|
}
|
8130
8133
|
}
|
8131
8134
|
@supports (-ms-ime-align: auto) {
|
8132
8135
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::after,
|
8133
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8134
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8136
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8137
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8135
8138
|
width: auto;
|
8136
8139
|
}
|
8137
8140
|
}
|
8138
8141
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
8139
8142
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::after,
|
8140
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8141
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8143
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top .bx--assistive-text,
|
8144
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top + .bx--assistive-text {
|
8142
8145
|
border: 1px solid transparent;
|
8143
8146
|
}
|
8144
8147
|
}
|
@@ -8322,8 +8325,8 @@ a.bx--overflow-menu-options__btn::before {
|
|
8322
8325
|
}
|
8323
8326
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
8324
8327
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::before, .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::after,
|
8325
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8326
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8328
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8329
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8327
8330
|
display: inline-block;
|
8328
8331
|
}
|
8329
8332
|
}
|
@@ -8375,29 +8378,29 @@ a.bx--overflow-menu-options__btn::before {
|
|
8375
8378
|
}
|
8376
8379
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
8377
8380
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::after,
|
8378
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8379
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8381
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8382
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8380
8383
|
width: auto;
|
8381
8384
|
}
|
8382
8385
|
}
|
8383
8386
|
@supports (-ms-accelerator: true) {
|
8384
8387
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::after,
|
8385
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8386
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8388
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8389
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8387
8390
|
width: auto;
|
8388
8391
|
}
|
8389
8392
|
}
|
8390
8393
|
@supports (-ms-ime-align: auto) {
|
8391
8394
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::after,
|
8392
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8393
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8395
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8396
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8394
8397
|
width: auto;
|
8395
8398
|
}
|
8396
8399
|
}
|
8397
8400
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
8398
8401
|
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::after,
|
8399
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8400
|
-
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8402
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom .bx--assistive-text,
|
8403
|
+
.bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom + .bx--assistive-text {
|
8401
8404
|
border: 1px solid transparent;
|
8402
8405
|
}
|
8403
8406
|
}
|
@@ -8615,8 +8618,8 @@ a.bx--overflow-menu-options__btn::before {
|
|
8615
8618
|
}
|
8616
8619
|
@media screen and (prefers-reduced-motion: reduce) {
|
8617
8620
|
.bx--tooltip--icon__top::before, .bx--tooltip--icon__top::after,
|
8618
|
-
.bx--tooltip--icon__bottom::before,
|
8619
|
-
.bx--tooltip--icon__bottom::after {
|
8621
|
+
.bx--tooltip--icon__bottom::before,
|
8622
|
+
.bx--tooltip--icon__bottom::after {
|
8620
8623
|
transition: none;
|
8621
8624
|
}
|
8622
8625
|
}
|
@@ -8673,7 +8676,7 @@ a.bx--overflow-menu-options__btn::before {
|
|
8673
8676
|
}
|
8674
8677
|
@media screen and (prefers-contrast) {
|
8675
8678
|
.bx--tooltip--icon__top:focus svg,
|
8676
|
-
.bx--tooltip--icon__bottom:focus svg {
|
8679
|
+
.bx--tooltip--icon__bottom:focus svg {
|
8677
8680
|
outline-style: dotted;
|
8678
8681
|
}
|
8679
8682
|
}
|
@@ -8793,8 +8796,8 @@ a.bx--overflow-menu-options__btn::before {
|
|
8793
8796
|
}
|
8794
8797
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
8795
8798
|
.bx--tooltip__trigger.bx--tooltip--top::before, .bx--tooltip__trigger.bx--tooltip--top::after,
|
8796
|
-
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8797
|
-
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8799
|
+
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8800
|
+
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8798
8801
|
display: inline-block;
|
8799
8802
|
}
|
8800
8803
|
}
|
@@ -8846,29 +8849,29 @@ a.bx--overflow-menu-options__btn::before {
|
|
8846
8849
|
}
|
8847
8850
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
8848
8851
|
.bx--tooltip__trigger.bx--tooltip--top::after,
|
8849
|
-
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8850
|
-
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8852
|
+
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8853
|
+
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8851
8854
|
width: auto;
|
8852
8855
|
}
|
8853
8856
|
}
|
8854
8857
|
@supports (-ms-accelerator: true) {
|
8855
8858
|
.bx--tooltip__trigger.bx--tooltip--top::after,
|
8856
|
-
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8857
|
-
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8859
|
+
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8860
|
+
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8858
8861
|
width: auto;
|
8859
8862
|
}
|
8860
8863
|
}
|
8861
8864
|
@supports (-ms-ime-align: auto) {
|
8862
8865
|
.bx--tooltip__trigger.bx--tooltip--top::after,
|
8863
|
-
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8864
|
-
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8866
|
+
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8867
|
+
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8865
8868
|
width: auto;
|
8866
8869
|
}
|
8867
8870
|
}
|
8868
8871
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
8869
8872
|
.bx--tooltip__trigger.bx--tooltip--top::after,
|
8870
|
-
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8871
|
-
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8873
|
+
.bx--tooltip__trigger.bx--tooltip--top .bx--assistive-text,
|
8874
|
+
.bx--tooltip__trigger.bx--tooltip--top + .bx--assistive-text {
|
8872
8875
|
border: 1px solid transparent;
|
8873
8876
|
}
|
8874
8877
|
}
|
@@ -9064,8 +9067,8 @@ a.bx--overflow-menu-options__btn::before {
|
|
9064
9067
|
}
|
9065
9068
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
9066
9069
|
.bx--tooltip__trigger.bx--tooltip--right::before, .bx--tooltip__trigger.bx--tooltip--right::after,
|
9067
|
-
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9068
|
-
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9070
|
+
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9071
|
+
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9069
9072
|
display: inline-block;
|
9070
9073
|
}
|
9071
9074
|
}
|
@@ -9117,29 +9120,29 @@ a.bx--overflow-menu-options__btn::before {
|
|
9117
9120
|
}
|
9118
9121
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
9119
9122
|
.bx--tooltip__trigger.bx--tooltip--right::after,
|
9120
|
-
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9121
|
-
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9123
|
+
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9124
|
+
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9122
9125
|
width: auto;
|
9123
9126
|
}
|
9124
9127
|
}
|
9125
9128
|
@supports (-ms-accelerator: true) {
|
9126
9129
|
.bx--tooltip__trigger.bx--tooltip--right::after,
|
9127
|
-
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9128
|
-
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9130
|
+
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9131
|
+
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9129
9132
|
width: auto;
|
9130
9133
|
}
|
9131
9134
|
}
|
9132
9135
|
@supports (-ms-ime-align: auto) {
|
9133
9136
|
.bx--tooltip__trigger.bx--tooltip--right::after,
|
9134
|
-
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9135
|
-
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9137
|
+
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9138
|
+
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9136
9139
|
width: auto;
|
9137
9140
|
}
|
9138
9141
|
}
|
9139
9142
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
9140
9143
|
.bx--tooltip__trigger.bx--tooltip--right::after,
|
9141
|
-
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9142
|
-
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9144
|
+
.bx--tooltip__trigger.bx--tooltip--right .bx--assistive-text,
|
9145
|
+
.bx--tooltip__trigger.bx--tooltip--right + .bx--assistive-text {
|
9143
9146
|
border: 1px solid transparent;
|
9144
9147
|
}
|
9145
9148
|
}
|
@@ -9330,8 +9333,8 @@ a.bx--overflow-menu-options__btn::before {
|
|
9330
9333
|
}
|
9331
9334
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
9332
9335
|
.bx--tooltip__trigger.bx--tooltip--bottom::before, .bx--tooltip__trigger.bx--tooltip--bottom::after,
|
9333
|
-
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9334
|
-
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9336
|
+
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9337
|
+
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9335
9338
|
display: inline-block;
|
9336
9339
|
}
|
9337
9340
|
}
|
@@ -9383,29 +9386,29 @@ a.bx--overflow-menu-options__btn::before {
|
|
9383
9386
|
}
|
9384
9387
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
9385
9388
|
.bx--tooltip__trigger.bx--tooltip--bottom::after,
|
9386
|
-
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9387
|
-
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9389
|
+
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9390
|
+
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9388
9391
|
width: auto;
|
9389
9392
|
}
|
9390
9393
|
}
|
9391
9394
|
@supports (-ms-accelerator: true) {
|
9392
9395
|
.bx--tooltip__trigger.bx--tooltip--bottom::after,
|
9393
|
-
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9394
|
-
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9396
|
+
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9397
|
+
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9395
9398
|
width: auto;
|
9396
9399
|
}
|
9397
9400
|
}
|
9398
9401
|
@supports (-ms-ime-align: auto) {
|
9399
9402
|
.bx--tooltip__trigger.bx--tooltip--bottom::after,
|
9400
|
-
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9401
|
-
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9403
|
+
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9404
|
+
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9402
9405
|
width: auto;
|
9403
9406
|
}
|
9404
9407
|
}
|
9405
9408
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
9406
9409
|
.bx--tooltip__trigger.bx--tooltip--bottom::after,
|
9407
|
-
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9408
|
-
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9410
|
+
.bx--tooltip__trigger.bx--tooltip--bottom .bx--assistive-text,
|
9411
|
+
.bx--tooltip__trigger.bx--tooltip--bottom + .bx--assistive-text {
|
9409
9412
|
border: 1px solid transparent;
|
9410
9413
|
}
|
9411
9414
|
}
|
@@ -9599,8 +9602,8 @@ a.bx--overflow-menu-options__btn::before {
|
|
9599
9602
|
}
|
9600
9603
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
9601
9604
|
.bx--tooltip__trigger.bx--tooltip--left::before, .bx--tooltip__trigger.bx--tooltip--left::after,
|
9602
|
-
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9603
|
-
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9605
|
+
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9606
|
+
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9604
9607
|
display: inline-block;
|
9605
9608
|
}
|
9606
9609
|
}
|
@@ -9652,29 +9655,29 @@ a.bx--overflow-menu-options__btn::before {
|
|
9652
9655
|
}
|
9653
9656
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
9654
9657
|
.bx--tooltip__trigger.bx--tooltip--left::after,
|
9655
|
-
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9656
|
-
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9658
|
+
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9659
|
+
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9657
9660
|
width: auto;
|
9658
9661
|
}
|
9659
9662
|
}
|
9660
9663
|
@supports (-ms-accelerator: true) {
|
9661
9664
|
.bx--tooltip__trigger.bx--tooltip--left::after,
|
9662
|
-
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9663
|
-
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9665
|
+
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9666
|
+
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9664
9667
|
width: auto;
|
9665
9668
|
}
|
9666
9669
|
}
|
9667
9670
|
@supports (-ms-ime-align: auto) {
|
9668
9671
|
.bx--tooltip__trigger.bx--tooltip--left::after,
|
9669
|
-
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9670
|
-
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9672
|
+
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9673
|
+
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9671
9674
|
width: auto;
|
9672
9675
|
}
|
9673
9676
|
}
|
9674
9677
|
@media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
|
9675
9678
|
.bx--tooltip__trigger.bx--tooltip--left::after,
|
9676
|
-
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9677
|
-
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9679
|
+
.bx--tooltip__trigger.bx--tooltip--left .bx--assistive-text,
|
9680
|
+
.bx--tooltip__trigger.bx--tooltip--left + .bx--assistive-text {
|
9678
9681
|
border: 1px solid transparent;
|
9679
9682
|
}
|
9680
9683
|
}
|
@@ -9834,8 +9837,8 @@ a.bx--overflow-menu-options__btn::before {
|
|
9834
9837
|
/* stylelint-disable */
|
9835
9838
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
9836
9839
|
.bx--tooltip__trigger svg,
|
9837
|
-
.bx--tooltip__trigger:hover svg,
|
9838
|
-
.bx--tooltip__trigger:focus svg {
|
9840
|
+
.bx--tooltip__trigger:hover svg,
|
9841
|
+
.bx--tooltip__trigger:focus svg {
|
9839
9842
|
fill: ButtonText;
|
9840
9843
|
}
|
9841
9844
|
}
|
@@ -10724,7 +10727,7 @@ a.bx--overflow-menu-options__btn::before {
|
|
10724
10727
|
|
10725
10728
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
10726
10729
|
.bx--toggle__switch::after,
|
10727
|
-
.bx--toggle-input:checked + .bx--toggle-input__label > .bx--toggle__switch::after {
|
10730
|
+
.bx--toggle-input:checked + .bx--toggle-input__label > .bx--toggle__switch::after {
|
10728
10731
|
outline: 1px solid transparent;
|
10729
10732
|
background-color: ButtonText;
|
10730
10733
|
}
|
@@ -10789,9 +10792,9 @@ a.bx--overflow-menu-options__btn::before {
|
|
10789
10792
|
|
10790
10793
|
@media (prefers-reduced-motion) {
|
10791
10794
|
.c4p--create-influencer__side-nav-opening,
|
10792
|
-
.c4p--create-influencer__progress-indicator-opening,
|
10793
|
-
.c4p--create-influencer__side-nav-closing,
|
10794
|
-
.c4p--create-influencer__progress-indicator-closing {
|
10795
|
+
.c4p--create-influencer__progress-indicator-opening,
|
10796
|
+
.c4p--create-influencer__side-nav-closing,
|
10797
|
+
.c4p--create-influencer__progress-indicator-closing {
|
10795
10798
|
animation: none;
|
10796
10799
|
opacity: 1;
|
10797
10800
|
}
|
@@ -12097,7 +12100,7 @@ a.bx--side-nav__link:focus,
|
|
12097
12100
|
}
|
12098
12101
|
@media screen and (prefers-contrast) {
|
12099
12102
|
a.bx--side-nav__link:focus,
|
12100
|
-
.bx--side-nav a.bx--header__menu-item:focus {
|
12103
|
+
.bx--side-nav a.bx--header__menu-item:focus {
|
12101
12104
|
outline-style: dotted;
|
12102
12105
|
}
|
12103
12106
|
}
|
@@ -12230,9 +12233,9 @@ a.bx--side-nav__link--current::before {
|
|
12230
12233
|
|
12231
12234
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
12232
12235
|
.bx--side-nav__icon > svg,
|
12233
|
-
.bx--side-nav a.bx--header__menu-item:hover .bx--header__menu-arrow,
|
12234
|
-
.bx--side-nav a.bx--header__menu-item:focus .bx--header__menu-arrow,
|
12235
|
-
.bx--side-nav .bx--header__menu-arrow {
|
12236
|
+
.bx--side-nav a.bx--header__menu-item:hover .bx--header__menu-arrow,
|
12237
|
+
.bx--side-nav a.bx--header__menu-item:focus .bx--header__menu-arrow,
|
12238
|
+
.bx--side-nav .bx--header__menu-arrow {
|
12236
12239
|
fill: ButtonText;
|
12237
12240
|
}
|
12238
12241
|
}
|
@@ -13215,6 +13218,14 @@ a.bx--side-nav__link--current::before {
|
|
13215
13218
|
letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
|
13216
13219
|
}
|
13217
13220
|
|
13221
|
+
.c4p--filter-summary {
|
13222
|
+
display: flex;
|
13223
|
+
width: 100%;
|
13224
|
+
align-items: center;
|
13225
|
+
padding: var(--cds-spacing-03, 0.5rem);
|
13226
|
+
background: var(--cds-ui-01, #f4f4f4);
|
13227
|
+
}
|
13228
|
+
|
13218
13229
|
.c4p--http-errors .c4p--http-errors__content {
|
13219
13230
|
position: fixed;
|
13220
13231
|
z-index: 2;
|
@@ -13243,7 +13254,7 @@ a.bx--side-nav__link--current::before {
|
|
13243
13254
|
|
13244
13255
|
.c4p--http-errors .c4p--http-errors__title {
|
13245
13256
|
font-size: var(--cds-productive-heading-05-font-size, 2rem);
|
13246
|
-
font-weight: var(--cds-productive-heading-05-font-weight,
|
13257
|
+
font-weight: var(--cds-productive-heading-05-font-weight, 400);
|
13247
13258
|
line-height: var(--cds-productive-heading-05-line-height, 1.25);
|
13248
13259
|
letter-spacing: var(--cds-productive-heading-05-letter-spacing, 0);
|
13249
13260
|
margin-bottom: var(--cds-spacing-04, 0.75rem);
|
@@ -13767,7 +13778,7 @@ a.bx--side-nav__link--current::before {
|
|
13767
13778
|
}
|
13768
13779
|
@media (prefers-reduced-motion: reduce) {
|
13769
13780
|
.modified-tabs__tab-new-img,
|
13770
|
-
.modified-tabs__tab-close {
|
13781
|
+
.modified-tabs__tab-close {
|
13771
13782
|
transition: none;
|
13772
13783
|
}
|
13773
13784
|
}
|
@@ -14659,7 +14670,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
14659
14670
|
--cds-productive-heading-04-line-height: 1.28572;
|
14660
14671
|
--cds-productive-heading-04-letter-spacing: 0;
|
14661
14672
|
--cds-productive-heading-05-font-size: 2rem;
|
14662
|
-
--cds-productive-heading-05-font-weight:
|
14673
|
+
--cds-productive-heading-05-font-weight: 400;
|
14663
14674
|
--cds-productive-heading-05-line-height: 1.25;
|
14664
14675
|
--cds-productive-heading-05-letter-spacing: 0;
|
14665
14676
|
--cds-productive-heading-06-font-size: 2.625rem;
|
@@ -14687,7 +14698,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
14687
14698
|
--cds-expressive-heading-04-line-height: 1.28572;
|
14688
14699
|
--cds-expressive-heading-04-letter-spacing: 0;
|
14689
14700
|
--cds-expressive-heading-05-font-size: 2rem;
|
14690
|
-
--cds-expressive-heading-05-font-weight:
|
14701
|
+
--cds-expressive-heading-05-font-weight: 400;
|
14691
14702
|
--cds-expressive-heading-05-line-height: 1.25;
|
14692
14703
|
--cds-expressive-heading-05-letter-spacing: 0;
|
14693
14704
|
--cds-expressive-heading-06-font-size: 2rem;
|
@@ -14765,7 +14776,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
14765
14776
|
--cds-heading-04-line-height: 1.28572;
|
14766
14777
|
--cds-heading-04-letter-spacing: 0;
|
14767
14778
|
--cds-heading-05-font-size: 2rem;
|
14768
|
-
--cds-heading-05-font-weight:
|
14779
|
+
--cds-heading-05-font-weight: 400;
|
14769
14780
|
--cds-heading-05-line-height: 1.25;
|
14770
14781
|
--cds-heading-05-letter-spacing: 0;
|
14771
14782
|
--cds-heading-06-font-size: 2.625rem;
|
@@ -14785,7 +14796,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
14785
14796
|
--cds-fluid-heading-04-line-height: 1.28572;
|
14786
14797
|
--cds-fluid-heading-04-letter-spacing: 0;
|
14787
14798
|
--cds-fluid-heading-05-font-size: 2rem;
|
14788
|
-
--cds-fluid-heading-05-font-weight:
|
14799
|
+
--cds-fluid-heading-05-font-weight: 400;
|
14789
14800
|
--cds-fluid-heading-05-line-height: 1.25;
|
14790
14801
|
--cds-fluid-heading-05-letter-spacing: 0;
|
14791
14802
|
--cds-fluid-heading-06-font-size: 2rem;
|
@@ -15006,7 +15017,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
15006
15017
|
}
|
15007
15018
|
@media (prefers-reduced-motion: reduce) {
|
15008
15019
|
.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-more-button .bx--btn__icon,
|
15009
|
-
.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button .bx--btn__icon {
|
15020
|
+
.c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button .bx--btn__icon {
|
15010
15021
|
transition: none;
|
15011
15022
|
}
|
15012
15023
|
}
|
@@ -15631,7 +15642,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
15631
15642
|
|
15632
15643
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
15633
15644
|
.bx--tag__close-icon svg,
|
15634
|
-
.bx--tag__custom-icon svg {
|
15645
|
+
.bx--tag__custom-icon svg {
|
15635
15646
|
fill: ButtonText;
|
15636
15647
|
}
|
15637
15648
|
}
|
@@ -15715,7 +15726,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
15715
15726
|
display: none;
|
15716
15727
|
}
|
15717
15728
|
.c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__breadcrumb-back,
|
15718
|
-
.c4p--breadcrumb-with-overflow .bx--breadcrumb-item:last-child {
|
15729
|
+
.c4p--breadcrumb-with-overflow .bx--breadcrumb-item:last-child {
|
15719
15730
|
display: inline-flex;
|
15720
15731
|
vertical-align: middle;
|
15721
15732
|
}
|
@@ -15956,7 +15967,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
15956
15967
|
}
|
15957
15968
|
@media screen and (prefers-contrast) {
|
15958
15969
|
.bx--search-close:focus,
|
15959
|
-
.bx--search-button:focus {
|
15970
|
+
.bx--search-button:focus {
|
15960
15971
|
outline-style: dotted;
|
15961
15972
|
}
|
15962
15973
|
}
|
@@ -15968,7 +15979,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
15968
15979
|
}
|
15969
15980
|
@media screen and (prefers-contrast) {
|
15970
15981
|
.bx--search-close:active,
|
15971
|
-
.bx--search-button:active {
|
15982
|
+
.bx--search-button:active {
|
15972
15983
|
outline-style: dotted;
|
15973
15984
|
}
|
15974
15985
|
}
|
@@ -16076,8 +16087,8 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
16076
16087
|
}
|
16077
16088
|
@media (prefers-reduced-motion: reduce) {
|
16078
16089
|
.bx--search--xl.bx--skeleton .bx--search-input::before,
|
16079
|
-
.bx--search--lg.bx--skeleton .bx--search-input::before,
|
16080
|
-
.bx--search--sm.bx--skeleton .bx--search-input::before {
|
16090
|
+
.bx--search--lg.bx--skeleton .bx--search-input::before,
|
16091
|
+
.bx--search--sm.bx--skeleton .bx--search-input::before {
|
16081
16092
|
animation: none;
|
16082
16093
|
}
|
16083
16094
|
}
|
@@ -16141,7 +16152,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
16141
16152
|
|
16142
16153
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
16143
16154
|
.bx--search-close svg,
|
16144
|
-
.bx--search-magnifier-icon {
|
16155
|
+
.bx--search-magnifier-icon {
|
16145
16156
|
fill: ButtonText;
|
16146
16157
|
}
|
16147
16158
|
}
|
@@ -16622,12 +16633,6 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
16622
16633
|
transform: translateY(-2px);
|
16623
16634
|
vertical-align: middle;
|
16624
16635
|
}
|
16625
|
-
.c4p--page-header .c4p--page-header__title-wrapper {
|
16626
|
-
font-size: var(--cds-productive-heading-04-font-size, 1.75rem);
|
16627
|
-
font-weight: var(--cds-productive-heading-04-font-weight, 400);
|
16628
|
-
line-height: var(--cds-productive-heading-04-line-height, 1.28572);
|
16629
|
-
letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
|
16630
|
-
}
|
16631
16636
|
.c4p--page-header .c4p--page-header__page-actions {
|
16632
16637
|
flex: 0 0 100%;
|
16633
16638
|
margin-top: var(--cds-spacing-05, 1rem);
|
@@ -17018,7 +17023,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17018
17023
|
}
|
17019
17024
|
@media (prefers-reduced-motion) {
|
17020
17025
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-fatal .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17021
|
-
.c4p--status-icon--light.c4p--status-icon--light-fatal .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17026
|
+
.c4p--status-icon--light.c4p--status-icon--light-fatal .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17022
17027
|
animation: none;
|
17023
17028
|
}
|
17024
17029
|
}
|
@@ -17029,7 +17034,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17029
17034
|
}
|
17030
17035
|
@media (prefers-reduced-motion) {
|
17031
17036
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-fatal .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17032
|
-
.c4p--status-icon--light.c4p--status-icon--dark-fatal .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17037
|
+
.c4p--status-icon--light.c4p--status-icon--dark-fatal .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17033
17038
|
animation: none;
|
17034
17039
|
}
|
17035
17040
|
}
|
@@ -17040,7 +17045,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17040
17045
|
}
|
17041
17046
|
@media (prefers-reduced-motion) {
|
17042
17047
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-critical .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17043
|
-
.c4p--status-icon--light.c4p--status-icon--light-critical .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17048
|
+
.c4p--status-icon--light.c4p--status-icon--light-critical .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17044
17049
|
animation: none;
|
17045
17050
|
}
|
17046
17051
|
}
|
@@ -17051,7 +17056,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17051
17056
|
}
|
17052
17057
|
@media (prefers-reduced-motion) {
|
17053
17058
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-critical .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17054
|
-
.c4p--status-icon--light.c4p--status-icon--dark-critical .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17059
|
+
.c4p--status-icon--light.c4p--status-icon--dark-critical .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17055
17060
|
animation: none;
|
17056
17061
|
}
|
17057
17062
|
}
|
@@ -17062,7 +17067,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17062
17067
|
}
|
17063
17068
|
@media (prefers-reduced-motion) {
|
17064
17069
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-major-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17065
|
-
.c4p--status-icon--light.c4p--status-icon--light-major-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17070
|
+
.c4p--status-icon--light.c4p--status-icon--light-major-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17066
17071
|
animation: none;
|
17067
17072
|
}
|
17068
17073
|
}
|
@@ -17073,7 +17078,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17073
17078
|
}
|
17074
17079
|
@media (prefers-reduced-motion) {
|
17075
17080
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-major-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17076
|
-
.c4p--status-icon--light.c4p--status-icon--dark-major-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17081
|
+
.c4p--status-icon--light.c4p--status-icon--dark-major-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17077
17082
|
animation: none;
|
17078
17083
|
}
|
17079
17084
|
}
|
@@ -17084,7 +17089,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17084
17089
|
}
|
17085
17090
|
@media (prefers-reduced-motion) {
|
17086
17091
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-minor-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17087
|
-
.c4p--status-icon--light.c4p--status-icon--light-minor-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17092
|
+
.c4p--status-icon--light.c4p--status-icon--light-minor-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17088
17093
|
animation: none;
|
17089
17094
|
}
|
17090
17095
|
}
|
@@ -17095,7 +17100,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17095
17100
|
}
|
17096
17101
|
@media (prefers-reduced-motion) {
|
17097
17102
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-minor-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17098
|
-
.c4p--status-icon--light.c4p--status-icon--dark-minor-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17103
|
+
.c4p--status-icon--light.c4p--status-icon--dark-minor-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17099
17104
|
animation: none;
|
17100
17105
|
}
|
17101
17106
|
}
|
@@ -17106,7 +17111,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17106
17111
|
}
|
17107
17112
|
@media (prefers-reduced-motion) {
|
17108
17113
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-undefined .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17109
|
-
.c4p--status-icon--light.c4p--status-icon--light-undefined .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17114
|
+
.c4p--status-icon--light.c4p--status-icon--light-undefined .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17110
17115
|
animation: none;
|
17111
17116
|
}
|
17112
17117
|
}
|
@@ -17117,7 +17122,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17117
17122
|
}
|
17118
17123
|
@media (prefers-reduced-motion) {
|
17119
17124
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-undefined .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17120
|
-
.c4p--status-icon--light.c4p--status-icon--dark-undefined .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17125
|
+
.c4p--status-icon--light.c4p--status-icon--dark-undefined .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17121
17126
|
animation: none;
|
17122
17127
|
}
|
17123
17128
|
}
|
@@ -17128,7 +17133,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17128
17133
|
}
|
17129
17134
|
@media (prefers-reduced-motion) {
|
17130
17135
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-unknown .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17131
|
-
.c4p--status-icon--light.c4p--status-icon--light-unknown .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17136
|
+
.c4p--status-icon--light.c4p--status-icon--light-unknown .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17132
17137
|
animation: none;
|
17133
17138
|
}
|
17134
17139
|
}
|
@@ -17139,7 +17144,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17139
17144
|
}
|
17140
17145
|
@media (prefers-reduced-motion) {
|
17141
17146
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-unknown .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17142
|
-
.c4p--status-icon--light.c4p--status-icon--dark-unknown .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17147
|
+
.c4p--status-icon--light.c4p--status-icon--dark-unknown .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17143
17148
|
animation: none;
|
17144
17149
|
}
|
17145
17150
|
}
|
@@ -17150,7 +17155,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17150
17155
|
}
|
17151
17156
|
@media (prefers-reduced-motion) {
|
17152
17157
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-normal .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17153
|
-
.c4p--status-icon--light.c4p--status-icon--light-normal .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17158
|
+
.c4p--status-icon--light.c4p--status-icon--light-normal .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17154
17159
|
animation: none;
|
17155
17160
|
}
|
17156
17161
|
}
|
@@ -17161,7 +17166,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17161
17166
|
}
|
17162
17167
|
@media (prefers-reduced-motion) {
|
17163
17168
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-normal .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17164
|
-
.c4p--status-icon--light.c4p--status-icon--dark-normal .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17169
|
+
.c4p--status-icon--light.c4p--status-icon--dark-normal .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17165
17170
|
animation: none;
|
17166
17171
|
}
|
17167
17172
|
}
|
@@ -17172,7 +17177,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17172
17177
|
}
|
17173
17178
|
@media (prefers-reduced-motion) {
|
17174
17179
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-info .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17175
|
-
.c4p--status-icon--light.c4p--status-icon--light-info .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17180
|
+
.c4p--status-icon--light.c4p--status-icon--light-info .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17176
17181
|
animation: none;
|
17177
17182
|
}
|
17178
17183
|
}
|
@@ -17183,7 +17188,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17183
17188
|
}
|
17184
17189
|
@media (prefers-reduced-motion) {
|
17185
17190
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-info .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17186
|
-
.c4p--status-icon--light.c4p--status-icon--dark-info .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17191
|
+
.c4p--status-icon--light.c4p--status-icon--dark-info .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17187
17192
|
animation: none;
|
17188
17193
|
}
|
17189
17194
|
}
|
@@ -17195,7 +17200,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17195
17200
|
}
|
17196
17201
|
@media (prefers-reduced-motion: reduce) {
|
17197
17202
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17198
|
-
.c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17203
|
+
.c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17199
17204
|
animation: none;
|
17200
17205
|
}
|
17201
17206
|
}
|
@@ -17207,7 +17212,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17207
17212
|
}
|
17208
17213
|
@media (prefers-reduced-motion: reduce) {
|
17209
17214
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17210
|
-
.c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17215
|
+
.c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17211
17216
|
animation: none;
|
17212
17217
|
}
|
17213
17218
|
}
|
@@ -17230,7 +17235,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17230
17235
|
}
|
17231
17236
|
@media (prefers-reduced-motion) {
|
17232
17237
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-pending .c4p--status-icon--light.c4p--status-icon--light-in-progress,
|
17233
|
-
.c4p--status-icon--light.c4p--status-icon--light-pending .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17238
|
+
.c4p--status-icon--light.c4p--status-icon--light-pending .c4p--status-icon--light.c4p--status-icon--light-in-progress {
|
17234
17239
|
animation: none;
|
17235
17240
|
}
|
17236
17241
|
}
|
@@ -17241,7 +17246,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17241
17246
|
}
|
17242
17247
|
@media (prefers-reduced-motion) {
|
17243
17248
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-pending .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
|
17244
|
-
.c4p--status-icon--light.c4p--status-icon--dark-pending .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17249
|
+
.c4p--status-icon--light.c4p--status-icon--dark-pending .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
|
17245
17250
|
animation: none;
|
17246
17251
|
}
|
17247
17252
|
}
|
@@ -17252,7 +17257,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17252
17257
|
}
|
17253
17258
|
@media (prefers-reduced-motion) {
|
17254
17259
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-fatal .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17255
|
-
.c4p--status-icon--dark.c4p--status-icon--light-fatal .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17260
|
+
.c4p--status-icon--dark.c4p--status-icon--light-fatal .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17256
17261
|
animation: none;
|
17257
17262
|
}
|
17258
17263
|
}
|
@@ -17263,7 +17268,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17263
17268
|
}
|
17264
17269
|
@media (prefers-reduced-motion) {
|
17265
17270
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-fatal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17266
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-fatal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17271
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-fatal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17267
17272
|
animation: none;
|
17268
17273
|
}
|
17269
17274
|
}
|
@@ -17274,7 +17279,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17274
17279
|
}
|
17275
17280
|
@media (prefers-reduced-motion) {
|
17276
17281
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-critical .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17277
|
-
.c4p--status-icon--dark.c4p--status-icon--light-critical .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17282
|
+
.c4p--status-icon--dark.c4p--status-icon--light-critical .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17278
17283
|
animation: none;
|
17279
17284
|
}
|
17280
17285
|
}
|
@@ -17285,7 +17290,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17285
17290
|
}
|
17286
17291
|
@media (prefers-reduced-motion) {
|
17287
17292
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-critical .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17288
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-critical .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17293
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-critical .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17289
17294
|
animation: none;
|
17290
17295
|
}
|
17291
17296
|
}
|
@@ -17296,7 +17301,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17296
17301
|
}
|
17297
17302
|
@media (prefers-reduced-motion) {
|
17298
17303
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-major-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17299
|
-
.c4p--status-icon--dark.c4p--status-icon--light-major-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17304
|
+
.c4p--status-icon--dark.c4p--status-icon--light-major-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17300
17305
|
animation: none;
|
17301
17306
|
}
|
17302
17307
|
}
|
@@ -17307,7 +17312,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17307
17312
|
}
|
17308
17313
|
@media (prefers-reduced-motion) {
|
17309
17314
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-major-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17310
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-major-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17315
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-major-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17311
17316
|
animation: none;
|
17312
17317
|
}
|
17313
17318
|
}
|
@@ -17318,7 +17323,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17318
17323
|
}
|
17319
17324
|
@media (prefers-reduced-motion) {
|
17320
17325
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-minor-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17321
|
-
.c4p--status-icon--dark.c4p--status-icon--light-minor-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17326
|
+
.c4p--status-icon--dark.c4p--status-icon--light-minor-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17322
17327
|
animation: none;
|
17323
17328
|
}
|
17324
17329
|
}
|
@@ -17329,7 +17334,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17329
17334
|
}
|
17330
17335
|
@media (prefers-reduced-motion) {
|
17331
17336
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-minor-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17332
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-minor-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17337
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-minor-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17333
17338
|
animation: none;
|
17334
17339
|
}
|
17335
17340
|
}
|
@@ -17340,7 +17345,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17340
17345
|
}
|
17341
17346
|
@media (prefers-reduced-motion) {
|
17342
17347
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-undefined .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17343
|
-
.c4p--status-icon--dark.c4p--status-icon--light-undefined .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17348
|
+
.c4p--status-icon--dark.c4p--status-icon--light-undefined .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17344
17349
|
animation: none;
|
17345
17350
|
}
|
17346
17351
|
}
|
@@ -17351,7 +17356,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17351
17356
|
}
|
17352
17357
|
@media (prefers-reduced-motion) {
|
17353
17358
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-undefined .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17354
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-undefined .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17359
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-undefined .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17355
17360
|
animation: none;
|
17356
17361
|
}
|
17357
17362
|
}
|
@@ -17362,7 +17367,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17362
17367
|
}
|
17363
17368
|
@media (prefers-reduced-motion) {
|
17364
17369
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-unknown .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17365
|
-
.c4p--status-icon--dark.c4p--status-icon--light-unknown .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17370
|
+
.c4p--status-icon--dark.c4p--status-icon--light-unknown .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17366
17371
|
animation: none;
|
17367
17372
|
}
|
17368
17373
|
}
|
@@ -17373,7 +17378,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17373
17378
|
}
|
17374
17379
|
@media (prefers-reduced-motion) {
|
17375
17380
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-unknown .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17376
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-unknown .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17381
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-unknown .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17377
17382
|
animation: none;
|
17378
17383
|
}
|
17379
17384
|
}
|
@@ -17384,7 +17389,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17384
17389
|
}
|
17385
17390
|
@media (prefers-reduced-motion) {
|
17386
17391
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-normal .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17387
|
-
.c4p--status-icon--dark.c4p--status-icon--light-normal .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17392
|
+
.c4p--status-icon--dark.c4p--status-icon--light-normal .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17388
17393
|
animation: none;
|
17389
17394
|
}
|
17390
17395
|
}
|
@@ -17395,7 +17400,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17395
17400
|
}
|
17396
17401
|
@media (prefers-reduced-motion) {
|
17397
17402
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-normal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17398
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-normal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17403
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-normal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17399
17404
|
animation: none;
|
17400
17405
|
}
|
17401
17406
|
}
|
@@ -17406,7 +17411,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17406
17411
|
}
|
17407
17412
|
@media (prefers-reduced-motion) {
|
17408
17413
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-info .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17409
|
-
.c4p--status-icon--dark.c4p--status-icon--light-info .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17414
|
+
.c4p--status-icon--dark.c4p--status-icon--light-info .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17410
17415
|
animation: none;
|
17411
17416
|
}
|
17412
17417
|
}
|
@@ -17417,7 +17422,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17417
17422
|
}
|
17418
17423
|
@media (prefers-reduced-motion) {
|
17419
17424
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-info .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17420
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-info .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17425
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-info .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17421
17426
|
animation: none;
|
17422
17427
|
}
|
17423
17428
|
}
|
@@ -17429,7 +17434,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17429
17434
|
}
|
17430
17435
|
@media (prefers-reduced-motion: reduce) {
|
17431
17436
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17432
|
-
.c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17437
|
+
.c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17433
17438
|
animation: none;
|
17434
17439
|
}
|
17435
17440
|
}
|
@@ -17441,7 +17446,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17441
17446
|
}
|
17442
17447
|
@media (prefers-reduced-motion: reduce) {
|
17443
17448
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17444
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17449
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17445
17450
|
animation: none;
|
17446
17451
|
}
|
17447
17452
|
}
|
@@ -17464,7 +17469,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17464
17469
|
}
|
17465
17470
|
@media (prefers-reduced-motion) {
|
17466
17471
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-pending .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
|
17467
|
-
.c4p--status-icon--dark.c4p--status-icon--light-pending .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17472
|
+
.c4p--status-icon--dark.c4p--status-icon--light-pending .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
|
17468
17473
|
animation: none;
|
17469
17474
|
}
|
17470
17475
|
}
|
@@ -17475,7 +17480,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17475
17480
|
}
|
17476
17481
|
@media (prefers-reduced-motion) {
|
17477
17482
|
.bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-pending .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
|
17478
|
-
.c4p--status-icon--dark.c4p--status-icon--dark-pending .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17483
|
+
.c4p--status-icon--dark.c4p--status-icon--dark-pending .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
|
17479
17484
|
animation: none;
|
17480
17485
|
}
|
17481
17486
|
}
|
@@ -17817,7 +17822,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17817
17822
|
--cds-productive-heading-04-line-height: 1.28572;
|
17818
17823
|
--cds-productive-heading-04-letter-spacing: 0;
|
17819
17824
|
--cds-productive-heading-05-font-size: 2rem;
|
17820
|
-
--cds-productive-heading-05-font-weight:
|
17825
|
+
--cds-productive-heading-05-font-weight: 400;
|
17821
17826
|
--cds-productive-heading-05-line-height: 1.25;
|
17822
17827
|
--cds-productive-heading-05-letter-spacing: 0;
|
17823
17828
|
--cds-productive-heading-06-font-size: 2.625rem;
|
@@ -17845,7 +17850,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17845
17850
|
--cds-expressive-heading-04-line-height: 1.28572;
|
17846
17851
|
--cds-expressive-heading-04-letter-spacing: 0;
|
17847
17852
|
--cds-expressive-heading-05-font-size: 2rem;
|
17848
|
-
--cds-expressive-heading-05-font-weight:
|
17853
|
+
--cds-expressive-heading-05-font-weight: 400;
|
17849
17854
|
--cds-expressive-heading-05-line-height: 1.25;
|
17850
17855
|
--cds-expressive-heading-05-letter-spacing: 0;
|
17851
17856
|
--cds-expressive-heading-06-font-size: 2rem;
|
@@ -17923,7 +17928,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17923
17928
|
--cds-heading-04-line-height: 1.28572;
|
17924
17929
|
--cds-heading-04-letter-spacing: 0;
|
17925
17930
|
--cds-heading-05-font-size: 2rem;
|
17926
|
-
--cds-heading-05-font-weight:
|
17931
|
+
--cds-heading-05-font-weight: 400;
|
17927
17932
|
--cds-heading-05-line-height: 1.25;
|
17928
17933
|
--cds-heading-05-letter-spacing: 0;
|
17929
17934
|
--cds-heading-06-font-size: 2.625rem;
|
@@ -17943,7 +17948,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
17943
17948
|
--cds-fluid-heading-04-line-height: 1.28572;
|
17944
17949
|
--cds-fluid-heading-04-letter-spacing: 0;
|
17945
17950
|
--cds-fluid-heading-05-font-size: 2rem;
|
17946
|
-
--cds-fluid-heading-05-font-weight:
|
17951
|
+
--cds-fluid-heading-05-font-weight: 400;
|
17947
17952
|
--cds-fluid-heading-05-line-height: 1.25;
|
17948
17953
|
--cds-fluid-heading-05-letter-spacing: 0;
|
17949
17954
|
--cds-fluid-heading-06-font-size: 2rem;
|
@@ -18262,7 +18267,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
18262
18267
|
--cds-productive-heading-04-line-height: 1.28572;
|
18263
18268
|
--cds-productive-heading-04-letter-spacing: 0;
|
18264
18269
|
--cds-productive-heading-05-font-size: 2rem;
|
18265
|
-
--cds-productive-heading-05-font-weight:
|
18270
|
+
--cds-productive-heading-05-font-weight: 400;
|
18266
18271
|
--cds-productive-heading-05-line-height: 1.25;
|
18267
18272
|
--cds-productive-heading-05-letter-spacing: 0;
|
18268
18273
|
--cds-productive-heading-06-font-size: 2.625rem;
|
@@ -18290,7 +18295,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
18290
18295
|
--cds-expressive-heading-04-line-height: 1.28572;
|
18291
18296
|
--cds-expressive-heading-04-letter-spacing: 0;
|
18292
18297
|
--cds-expressive-heading-05-font-size: 2rem;
|
18293
|
-
--cds-expressive-heading-05-font-weight:
|
18298
|
+
--cds-expressive-heading-05-font-weight: 400;
|
18294
18299
|
--cds-expressive-heading-05-line-height: 1.25;
|
18295
18300
|
--cds-expressive-heading-05-letter-spacing: 0;
|
18296
18301
|
--cds-expressive-heading-06-font-size: 2rem;
|
@@ -18368,7 +18373,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
18368
18373
|
--cds-heading-04-line-height: 1.28572;
|
18369
18374
|
--cds-heading-04-letter-spacing: 0;
|
18370
18375
|
--cds-heading-05-font-size: 2rem;
|
18371
|
-
--cds-heading-05-font-weight:
|
18376
|
+
--cds-heading-05-font-weight: 400;
|
18372
18377
|
--cds-heading-05-line-height: 1.25;
|
18373
18378
|
--cds-heading-05-letter-spacing: 0;
|
18374
18379
|
--cds-heading-06-font-size: 2.625rem;
|
@@ -18388,7 +18393,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
18388
18393
|
--cds-fluid-heading-04-line-height: 1.28572;
|
18389
18394
|
--cds-fluid-heading-04-letter-spacing: 0;
|
18390
18395
|
--cds-fluid-heading-05-font-size: 2rem;
|
18391
|
-
--cds-fluid-heading-05-font-weight:
|
18396
|
+
--cds-fluid-heading-05-font-weight: 400;
|
18392
18397
|
--cds-fluid-heading-05-line-height: 1.25;
|
18393
18398
|
--cds-fluid-heading-05-letter-spacing: 0;
|
18394
18399
|
--cds-fluid-heading-06-font-size: 2rem;
|
@@ -18945,7 +18950,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
18945
18950
|
|
18946
18951
|
@media (prefers-reduced-motion: reduce) {
|
18947
18952
|
.c4p--options-tile__summary,
|
18948
|
-
.c4p--options-tile__chevron {
|
18953
|
+
.c4p--options-tile__chevron {
|
18949
18954
|
transition: none;
|
18950
18955
|
}
|
18951
18956
|
}
|
@@ -19633,6 +19638,21 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
19633
19638
|
border-bottom: none;
|
19634
19639
|
}
|
19635
19640
|
|
19641
|
+
.c4p--datagrid .c4p--datagrid__carbon-row-expandable {
|
19642
|
+
position: relative;
|
19643
|
+
}
|
19644
|
+
|
19645
|
+
.c4p--datagrid tr.c4p--datagrid__carbon-nested-row + :not(tr.c4p--datagrid__carbon-nested-row)::before {
|
19646
|
+
position: absolute;
|
19647
|
+
/* stylelint-disable-next-line carbon/layout-token-use */
|
19648
|
+
top: -1px;
|
19649
|
+
left: 0;
|
19650
|
+
width: 100%;
|
19651
|
+
height: 1px;
|
19652
|
+
background-color: var(--cds-border-subtle, #e0e0e0);
|
19653
|
+
content: "";
|
19654
|
+
}
|
19655
|
+
|
19636
19656
|
/*
|
19637
19657
|
* Licensed Materials - Property of IBM
|
19638
19658
|
* 5724-Q36
|
@@ -22835,7 +22855,7 @@ li.bx--accordion__item--disabled:last-of-type {
|
|
22835
22855
|
|
22836
22856
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
22837
22857
|
.bx--accordion__arrow,
|
22838
|
-
.bx--accordion__item--active .bx--accordion__arrow {
|
22858
|
+
.bx--accordion__item--active .bx--accordion__arrow {
|
22839
22859
|
fill: ButtonText;
|
22840
22860
|
}
|
22841
22861
|
}
|
@@ -23742,16 +23762,16 @@ li.bx--accordion__item--disabled:last-of-type {
|
|
23742
23762
|
|
23743
23763
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
23744
23764
|
.bx--list-box__field,
|
23745
|
-
.bx--list-box__menu,
|
23746
|
-
.bx--multi-select .bx--tag--filter {
|
23765
|
+
.bx--list-box__menu,
|
23766
|
+
.bx--multi-select .bx--tag--filter {
|
23747
23767
|
outline: 1px solid transparent;
|
23748
23768
|
}
|
23749
23769
|
}
|
23750
23770
|
|
23751
23771
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
23752
23772
|
.bx--list-box__field:focus,
|
23753
|
-
.bx--multi-select .bx--tag__close-icon:focus,
|
23754
|
-
.bx--list-box__menu-item--highlighted .bx--list-box__menu-item__option {
|
23773
|
+
.bx--multi-select .bx--tag__close-icon:focus,
|
23774
|
+
.bx--list-box__menu-item--highlighted .bx--list-box__menu-item__option {
|
23755
23775
|
color: Highlight;
|
23756
23776
|
outline: 1px solid Highlight;
|
23757
23777
|
}
|
@@ -23759,8 +23779,8 @@ li.bx--accordion__item--disabled:last-of-type {
|
|
23759
23779
|
|
23760
23780
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
23761
23781
|
.bx--list-box__menu-icon > svg,
|
23762
|
-
.bx--list-box__selection > svg,
|
23763
|
-
.bx--list-box__selection--multi > svg {
|
23782
|
+
.bx--list-box__selection > svg,
|
23783
|
+
.bx--list-box__selection--multi > svg {
|
23764
23784
|
fill: ButtonText;
|
23765
23785
|
}
|
23766
23786
|
}
|
@@ -24193,7 +24213,7 @@ li.bx--accordion__item--disabled:last-of-type {
|
|
24193
24213
|
}
|
24194
24214
|
@media screen and (prefers-contrast) {
|
24195
24215
|
.bx--toolbar-action:focus:not([disabled]),
|
24196
|
-
.bx--toolbar-action:active:not([disabled]) {
|
24216
|
+
.bx--toolbar-action:active:not([disabled]) {
|
24197
24217
|
outline-style: dotted;
|
24198
24218
|
}
|
24199
24219
|
}
|
@@ -24320,7 +24340,10 @@ li.bx--accordion__item--disabled:last-of-type {
|
|
24320
24340
|
}
|
24321
24341
|
|
24322
24342
|
.bx--action-list .bx--btn:disabled {
|
24323
|
-
color:
|
24343
|
+
border-color: transparent;
|
24344
|
+
background-color: transparent;
|
24345
|
+
color: var(--cds-text-on-color, #ffffff);
|
24346
|
+
opacity: 0.5;
|
24324
24347
|
}
|
24325
24348
|
|
24326
24349
|
.bx--action-list .bx--btn .bx--btn__icon {
|
@@ -24463,7 +24486,7 @@ li.bx--accordion__item--disabled:last-of-type {
|
|
24463
24486
|
}
|
24464
24487
|
@media screen and (prefers-contrast) {
|
24465
24488
|
.bx--table-toolbar--small .bx--toolbar-search-container-active .bx--search-input:focus,
|
24466
|
-
.bx--table-toolbar--sm .bx--toolbar-search-container-active .bx--search-input:focus {
|
24489
|
+
.bx--table-toolbar--sm .bx--toolbar-search-container-active .bx--search-input:focus {
|
24467
24490
|
outline-style: dotted;
|
24468
24491
|
}
|
24469
24492
|
}
|
@@ -25207,7 +25230,7 @@ tr.bx--data-table--selected:last-of-type td {
|
|
25207
25230
|
}
|
25208
25231
|
@-moz-document url-prefix() {
|
25209
25232
|
.bx--data-table--sticky-header thead,
|
25210
|
-
.bx--data-table--sticky-header tbody {
|
25233
|
+
.bx--data-table--sticky-header tbody {
|
25211
25234
|
scrollbar-width: none;
|
25212
25235
|
}
|
25213
25236
|
}
|
@@ -25758,7 +25781,7 @@ th .bx--table-sort__flex {
|
|
25758
25781
|
|
25759
25782
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
25760
25783
|
.bx--table-sort__icon,
|
25761
|
-
.bx--table-sort__icon-unsorted {
|
25784
|
+
.bx--table-sort__icon-unsorted {
|
25762
25785
|
fill: ButtonText;
|
25763
25786
|
}
|
25764
25787
|
}
|
@@ -25859,7 +25882,7 @@ th .bx--table-sort__flex {
|
|
25859
25882
|
}
|
25860
25883
|
@media (prefers-reduced-motion: reduce) {
|
25861
25884
|
.bx--data-table.bx--skeleton th span::before,
|
25862
|
-
.bx--data-table.bx--skeleton td span::before {
|
25885
|
+
.bx--data-table.bx--skeleton td span::before {
|
25863
25886
|
animation: none;
|
25864
25887
|
}
|
25865
25888
|
}
|
@@ -26432,7 +26455,7 @@ th .bx--table-sort__flex {
|
|
26432
26455
|
}
|
26433
26456
|
@media screen and (prefers-contrast) {
|
26434
26457
|
.flatpickr-day.startRange.inRange:not(.selected),
|
26435
|
-
.flatpickr-day.endRange.inRange {
|
26458
|
+
.flatpickr-day.endRange.inRange {
|
26436
26459
|
outline-style: dotted;
|
26437
26460
|
}
|
26438
26461
|
}
|
@@ -26468,7 +26491,7 @@ th .bx--table-sort__flex {
|
|
26468
26491
|
|
26469
26492
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
26470
26493
|
.flatpickr-prev-month,
|
26471
|
-
.flatpickr-next-month {
|
26494
|
+
.flatpickr-next-month {
|
26472
26495
|
fill: ButtonText;
|
26473
26496
|
}
|
26474
26497
|
}
|
@@ -26483,7 +26506,7 @@ th .bx--table-sort__flex {
|
|
26483
26506
|
|
26484
26507
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
26485
26508
|
.flatpickr-day.today,
|
26486
|
-
.flatpickr-day.inRange {
|
26509
|
+
.flatpickr-day.inRange {
|
26487
26510
|
color: Highlight;
|
26488
26511
|
}
|
26489
26512
|
}
|
@@ -26674,7 +26697,7 @@ th .bx--table-sort__flex {
|
|
26674
26697
|
}
|
26675
26698
|
@media (prefers-reduced-motion: reduce) {
|
26676
26699
|
.bx--date-picker.bx--skeleton input::before,
|
26677
|
-
.bx--date-picker__input.bx--skeleton::before {
|
26700
|
+
.bx--date-picker__input.bx--skeleton::before {
|
26678
26701
|
animation: none;
|
26679
26702
|
}
|
26680
26703
|
}
|
@@ -26981,7 +27004,7 @@ button.bx--dropdown-text:focus {
|
|
26981
27004
|
}
|
26982
27005
|
@media screen and (prefers-contrast) {
|
26983
27006
|
.bx--dropdown--focused,
|
26984
|
-
.bx--dropdown-link:focus {
|
27007
|
+
.bx--dropdown-link:focus {
|
26985
27008
|
outline-style: dotted;
|
26986
27009
|
}
|
26987
27010
|
}
|
@@ -27163,7 +27186,7 @@ button.bx--dropdown-text:focus {
|
|
27163
27186
|
}
|
27164
27187
|
@media (prefers-reduced-motion: reduce) {
|
27165
27188
|
.bx--dropdown-v2.bx--skeleton::before,
|
27166
|
-
.bx--dropdown.bx--skeleton::before {
|
27189
|
+
.bx--dropdown.bx--skeleton::before {
|
27167
27190
|
animation: none;
|
27168
27191
|
}
|
27169
27192
|
}
|
@@ -27893,7 +27916,7 @@ button.bx--dropdown-text:focus {
|
|
27893
27916
|
|
27894
27917
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
27895
27918
|
.bx--inline-notification__close-button:focus,
|
27896
|
-
.bx--btn.bx--btn--ghost.bx--inline-notification__action-button:focus {
|
27919
|
+
.bx--btn.bx--btn--ghost.bx--inline-notification__action-button:focus {
|
27897
27920
|
color: Highlight;
|
27898
27921
|
outline: 1px solid Highlight;
|
27899
27922
|
}
|
@@ -28574,7 +28597,7 @@ button.bx--dropdown-text:focus {
|
|
28574
28597
|
/* stylelint-disable */
|
28575
28598
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
28576
28599
|
.bx--number__control-btn:hover,
|
28577
|
-
.bx--number__control-btn:focus {
|
28600
|
+
.bx--number__control-btn:focus {
|
28578
28601
|
color: Highlight;
|
28579
28602
|
outline: 1px solid Highlight;
|
28580
28603
|
}
|
@@ -29051,7 +29074,7 @@ optgroup.bx--select-optgroup:disabled,
|
|
29051
29074
|
}
|
29052
29075
|
@media (max-width: 41.98rem) {
|
29053
29076
|
.bx--pagination .bx--pagination__left > *,
|
29054
|
-
.bx--pagination .bx--pagination__right > * {
|
29077
|
+
.bx--pagination .bx--pagination__right > * {
|
29055
29078
|
display: none;
|
29056
29079
|
}
|
29057
29080
|
.bx--pagination .bx--pagination__items-count {
|
@@ -29207,7 +29230,7 @@ span.bx--pagination__text {
|
|
29207
29230
|
}
|
29208
29231
|
@media screen and (prefers-contrast) {
|
29209
29232
|
.bx--pagination__button:focus,
|
29210
|
-
.bx--btn--ghost:focus.bx--pagination__button {
|
29233
|
+
.bx--btn--ghost:focus.bx--pagination__button {
|
29211
29234
|
outline-style: dotted;
|
29212
29235
|
}
|
29213
29236
|
}
|
@@ -29240,7 +29263,7 @@ span.bx--pagination__text {
|
|
29240
29263
|
|
29241
29264
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
29242
29265
|
.bx--pagination__button,
|
29243
|
-
.bx--btn--ghost.bx--pagination__button {
|
29266
|
+
.bx--btn--ghost.bx--pagination__button {
|
29244
29267
|
outline: 1px solid transparent;
|
29245
29268
|
}
|
29246
29269
|
}
|
@@ -29712,7 +29735,7 @@ span.bx--pagination__text {
|
|
29712
29735
|
}
|
29713
29736
|
@media screen and (prefers-contrast) {
|
29714
29737
|
.bx--text-area:focus,
|
29715
|
-
.bx--text-area:active {
|
29738
|
+
.bx--text-area:active {
|
29716
29739
|
outline-style: dotted;
|
29717
29740
|
}
|
29718
29741
|
}
|
@@ -29849,7 +29872,7 @@ span.bx--pagination__text {
|
|
29849
29872
|
}
|
29850
29873
|
@media screen and (prefers-contrast) {
|
29851
29874
|
.bx--tile--clickable:focus,
|
29852
|
-
.bx--tile--expandable:focus {
|
29875
|
+
.bx--tile--expandable:focus {
|
29853
29876
|
outline-style: dotted;
|
29854
29877
|
}
|
29855
29878
|
}
|
@@ -30371,7 +30394,7 @@ span.bx--pagination__text {
|
|
30371
30394
|
}
|
30372
30395
|
@media (min-width: 42rem) {
|
30373
30396
|
.bx--unstable-pagination__page-selector .bx--select-input,
|
30374
|
-
.bx--unstable-pagination__page-sizer .bx--select-input {
|
30397
|
+
.bx--unstable-pagination__page-sizer .bx--select-input {
|
30375
30398
|
padding-right: 2.25rem;
|
30376
30399
|
margin-right: 0;
|
30377
30400
|
}
|
@@ -30389,7 +30412,7 @@ span.bx--pagination__text {
|
|
30389
30412
|
}
|
30390
30413
|
@media (min-width: 42rem) {
|
30391
30414
|
.bx--unstable-pagination__page-selector .bx--select__arrow,
|
30392
|
-
.bx--unstable-pagination__page-sizer .bx--select__arrow {
|
30415
|
+
.bx--unstable-pagination__page-sizer .bx--select__arrow {
|
30393
30416
|
right: 1rem;
|
30394
30417
|
}
|
30395
30418
|
}
|