carbon-addons-iot-react 5.14.0 → 5.15.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/carbon-addons-iot-react.css +15 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/Card/Card.js +27 -5
- package/es/constants/CardPropTypes.js +5 -1
- package/lib/components/Card/Card.js +27 -5
- package/lib/constants/CardPropTypes.js +5 -1
- package/lib/css/carbon-addons-iot-react.css +15 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/Card/_card-title.scss +11 -0
- package/lib/scss/components/Card/_card-toolbar.scss +12 -0
- package/package.json +1 -1
- package/scss/components/Card/_card-title.scss +11 -0
- package/scss/components/Card/_card-toolbar.scss +12 -0
- package/umd/carbon-addons-iot-react.js +32 -6
|
@@ -9254,6 +9254,14 @@ html[dir=rtl] .breadcrumb--container .cds--breadcrumb-item:last-child::after {
|
|
|
9254
9254
|
outline-offset: -2px;
|
|
9255
9255
|
}
|
|
9256
9256
|
|
|
9257
|
+
.iot--card--dark .iot--card--toolbar button.cds--overflow-menu svg {
|
|
9258
|
+
fill: white;
|
|
9259
|
+
}
|
|
9260
|
+
|
|
9261
|
+
.iot--card--dark .iot--card--toolbar button.cds--overflow-menu.cds--overflow-menu--open svg {
|
|
9262
|
+
fill: var(--cds-icon-primary, #161616);
|
|
9263
|
+
}
|
|
9264
|
+
|
|
9257
9265
|
.iot--card--title {
|
|
9258
9266
|
align-items: center;
|
|
9259
9267
|
display: flex;
|
|
@@ -9371,6 +9379,13 @@ html[dir=rtl] .iot--card--subtitle--text--padded {
|
|
|
9371
9379
|
cursor: pointer;
|
|
9372
9380
|
}
|
|
9373
9381
|
|
|
9382
|
+
.iot--card--dark .iot--card--title--text {
|
|
9383
|
+
color: var(--cds-text-on-color, #ffffff);
|
|
9384
|
+
}
|
|
9385
|
+
.iot--card--dark .iot--card--subtitle--text {
|
|
9386
|
+
color: var(--cds-text-on-color, #ffffff);
|
|
9387
|
+
}
|
|
9388
|
+
|
|
9374
9389
|
.iot--data-state-container {
|
|
9375
9390
|
padding: 0 var(--container-padding);
|
|
9376
9391
|
width: inherit;
|