Hi,
I am trying to change the color of the button icon on hover. But i cannot find a way to do so.
.e-button-batch-select, .e-button-batch-select:focus, .e-button-batch-select:active {
border-radius: 0;
height: 32px;
width: 32px;
background-color: #007BFF;
}
.e-button-batch-select:hover {
background-color: #0067D9;
color: red;
}
.e-button-batch-select-icon::before {
content: '\e759';
color: #FFFFFF;
}
I tried this per setting the color property in the :hover style.
Can you please provide me a way to change to color of the icon on button hover?
Thanks in advance
Michel