May I Know Why the Form Range is Not Filled with color like default before of range ? if i need to fill that how can i do that
Hi,
Thank you for reaching out to us.
Could you please provide us with more info about what you are trying to achieve?
Regards,
Lauris Stepanovs,
Keenthemes Support Team
What i am asking for the accent color for the range upto where the slider pointer is dragged this is the default behaviour for the input range thats what i am looking.
Hi,
If you are using HTML default input range and you want to change accent color you can use accent-color CSS property.
.accent {
accent-color: var(--bs-success);
}
<input type="range" class="accent">
Hey i am using metronic input range the class which is contain form-range - want to update on that
Hi,
You can update form range input color in src/_metronic/assets/sass/core/components/_variables.scss.
$form-range-track-border-radius: $border-radius !default;
$form-range-track-bg: var(--#{$prefix}gray-300) !default;
$form-range-thumb-disabled-bg: var(--#{$prefix}gray-500) !default;