I have a sfGrid that has (add, edit and delete) as toolbar items. I want to change the background color of each individual button to different color (ex. add - blue, edit - orange, delete - red.
I have been able to change all buttons to the same background color using styles.
.e-toolbar .e-tbar-btn{ background-color: red !important}
but i do not see how i can change them to individual colors. There is no specific class for each button. Only for the icon.
<SfGrid class="border rounded" @ref="Grid" DataSource="@ToDoList" AllowSorting="true" AllowPaging="true" AllowMultiSorting="true" Toolbar="@(new List<string>() { "Add", "Edit", "Delete" })">
Can you give me any guidance please?