carbon-addons-iot-react 5.7.3 → 5.7.4
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 +13 -1
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/css/carbon-addons-iot-react.css +13 -1
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/Table/_table.scss +15 -1
- package/package.json +1 -1
- package/scss/components/Table/_table.scss +15 -1
|
@@ -38593,8 +38593,20 @@ button.cds--btn.iot--tooltip-svg-wrapper.cds--btn--ghost.iot--table-toolbar__adv
|
|
|
38593
38593
|
}
|
|
38594
38594
|
|
|
38595
38595
|
.iot--expanded-tablerow td {
|
|
38596
|
-
padding:
|
|
38596
|
+
padding: 2rem;
|
|
38597
|
+
padding-left: 4rem;
|
|
38597
38598
|
font-weight: bold;
|
|
38599
|
+
position: relative;
|
|
38600
|
+
}
|
|
38601
|
+
.iot--expanded-tablerow td::before {
|
|
38602
|
+
content: "";
|
|
38603
|
+
position: absolute;
|
|
38604
|
+
top: -1px;
|
|
38605
|
+
left: 0;
|
|
38606
|
+
height: calc(100% + 1px);
|
|
38607
|
+
width: 3rem;
|
|
38608
|
+
background-color: var(--cds-layer-01, #f4f4f4);
|
|
38609
|
+
border-right: solid 1px var(--cds-layer-01, #f4f4f4);
|
|
38598
38610
|
}
|
|
38599
38611
|
|
|
38600
38612
|
.iot--expandable-tablerow {
|