|
<style>
.e-btn {
/* To change background color of the Button */
background-color: cadetblue;
/* To remove border */
border: none;
/* To change Text color */
color: black;
}
/* Customization for Disabled Button*/
.e-btn:disabled {
background-color: cadetblue;
color: black;
}
/* Customization for Button hover */
.e-btn:hover {
background-color: cadetblue;
color: black;
}
/* Customization for Button focus */
.e-btn:focus {
background-color: cadetblue;
color: black;
}
/* Customization for active Button*/
.e-btn.e-active{
background-color: cadetblue;
border:none;
color: black;
}
</style> |