Hi Christian,
Yes, you can achieve your requirement “Different color for
text and icon” by setting the style for the edit cells using the below selectors.
Please refer to the below code example and the sample link for more information.
.e-gridform .e-input {
color: red !important;
}
.e-gridform .e-ddl-icon:before,
.e-gridform .e-input-group.e-disabled .e-ddl-icon:before {
color: blue;
}
|
https://stackblitz.com/edit/zqevkv?file=index.ts
Regards,
Pavithra S