ThingWorx 9.3 grid: CSS to adjust the height of rows for a specific Grid
Hello all,
I use Thingworx 9.3
I have several grids in my mashup. I need to adjust the height of the rows (for example, 60 px) only for one grid.
Below you can find CSS that I use, but it applies 60px for rows in all my grids.
@supports (ptcs-style-unit: "PTCS-CORE-GRID") {
[part~=row]{
min-height: 60px !important;
height: 60px !important;
}}
@supports (ptcs-style-unit: "PTCS-CORE-GRID") {
[part~=body-cell] {
min-height: 60px !important;
height: 60px !important;
}}
@supports (ptcs-style-unit: "PTCS-CORE-GRID") {
[part~=row]:hover [part=body-cell] {
min-height: 60px !important;
height: 60px !important;
}}
Also, I tried to specify specific grid (using grid id or custom class name), but it didn't work

