Hi, I have a custom style for toggle switch button:
.e-switch-wrapper .e-switch-inner.e-switch-active,
.e-switch-wrapper .e-switch-inner.e-switch-active .e-switch-on {
background-color: #6c757d;
border-color: #6c757d;
}
.e-switch-wrapper:hover .e-switch-inner.e-switch-active .e-switch-on {
background-color: #6c757d;
border-color: #6c757d;
}
.e-switch-wrapper:hover .e-switch-inner.e-switch-active {
background-color: #6c757d;
border-color: #6c757d;
}
it works, but during the transition from "off" to "on" there is a blue background that disappears when the transition ends.
There is a way to remove this blue?
Thanks