The following content provides the exact CSS structure that can be used to modify the control’s appearance based on the user preference.
Use the following CSS to customize the slider track.
.e-control-wrapper.e-slider-container.e-horizontal .e-slider-track {
background: #007bff;
height: 3px;
}
Use the following CSS to customize the slider handle properties.
.e-control-wrapper.e-slider-container .e-slider .e-handle {
background-color: #f9920b;
border-radius: 50%;
border: 0;
}
Use the following CSS to customize the slider limits.
.e-control-wrapper.e-slider-container.e-horizontal .e-limits {
background-color: rgba(69, 100, 233, 0.46);
}
Use the following CSS to customize the slider ticks.
.e-scale .e-tick.e-custom::before {
content: '\e967';
position: absolute;
}
Use the following CSS to customize the slider buttons.
.e-control-wrapper.e-slider-container .e-slider-button {
background: #007bff;
height: 25px;
width: 25px;
}