In TWX 9.6 the edit icon or link have padding and are too big. I can change this very easily in the console as shown below, but I cannot figure out how to do this in the CSS, or if there is another way. I am trying to do this...
I couldn't find any documentation on styling the grid specifically. I found this link, but it is not included..
This article is for the old grid widget from 9.0 to 9.5. I am in 9.6 using the new widget.
Hi @JO_9930585,
Try the following custom CSS:
Type Icon:
@supports (ptcs-style-unit: "PTCS-CORE-GRID") {
[part ~= edit-control] {
width: 12px !important;
height: 12px !important;
padding: 0 !important;
}
}
Type Link:
@supports (ptcs-style-unit: "PTCS-CORE-GRID") {
[part ~= edit-control] {
font-size: xxpx !important;
padding: 0 !important;
}
}
Best,