@carbon/styles 1.54.0-rc.0 → 1.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/styles.css +12 -3
- package/css/styles.min.css +1 -1
- package/package.json +4 -4
- package/scss/_feature-flags.scss +1 -0
- package/scss/components/data-table/_data-table.scss +8 -2
- package/scss/components/notification/_actionable-notification.scss +10 -0
- package/scss/components/structured-list/_structured-list.scss +22 -2
package/css/styles.css
CHANGED
|
@@ -10480,11 +10480,11 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
10480
10480
|
color: var(--cds-text-primary, #161616);
|
|
10481
10481
|
}
|
|
10482
10482
|
|
|
10483
|
-
.cds--data-table tr:hover .cds--link {
|
|
10483
|
+
.cds--data-table tr + :not(.cds--popover-container):hover .cds--link {
|
|
10484
10484
|
color: var(--cds-link-secondary, #0043ce);
|
|
10485
10485
|
}
|
|
10486
10486
|
|
|
10487
|
-
.cds--data-table tr:hover .cds--link--disabled {
|
|
10487
|
+
.cds--data-table tr + :not(.cds--popover-container):hover .cds--link--disabled {
|
|
10488
10488
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
10489
10489
|
}
|
|
10490
10490
|
|
|
@@ -19027,6 +19027,12 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19027
19027
|
opacity: 1;
|
|
19028
19028
|
}
|
|
19029
19029
|
|
|
19030
|
+
.cds--actionable-notification--warning .cds--inline-notification__icon path[opacity="0"],
|
|
19031
|
+
.cds--actionable-notification--warning-alt .cds--inline-notification__icon path:first-of-type {
|
|
19032
|
+
fill: #000000;
|
|
19033
|
+
opacity: 1;
|
|
19034
|
+
}
|
|
19035
|
+
|
|
19030
19036
|
.cds--actionable-notification__details {
|
|
19031
19037
|
display: flex;
|
|
19032
19038
|
flex-grow: 1;
|
|
@@ -21824,7 +21830,6 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21824
21830
|
|
|
21825
21831
|
.cds--structured-list-svg {
|
|
21826
21832
|
display: inline-block;
|
|
21827
|
-
fill: transparent;
|
|
21828
21833
|
transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
21829
21834
|
vertical-align: top;
|
|
21830
21835
|
}
|
|
@@ -21834,6 +21839,10 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
21834
21839
|
fill: var(--cds-icon-primary, #161616);
|
|
21835
21840
|
}
|
|
21836
21841
|
|
|
21842
|
+
.cds--structured-list-svg {
|
|
21843
|
+
fill: transparent;
|
|
21844
|
+
}
|
|
21845
|
+
|
|
21837
21846
|
.cds--structured-list.cds--skeleton .cds--structured-list-th:first-child {
|
|
21838
21847
|
inline-size: 8%;
|
|
21839
21848
|
}
|