Hi everyone!
I am creating a DASHBOARD to do quality check of MRI scans.
And I have the following css file that contains some parameters for a slider.
`.range input{
-webkit-appearance:none;
width:400px;
height:4px;
border-radius:5px;
background-color:#ba3950;
outline:none;
}
.range input::-webkit-slider-thumb{
-webkit-appearance:none;
width:20px;
height:20px;
border-radius:50%;
background-color:#a83348;
}
.range span{
position:absolute;
margin-left:14px;
width:50px;
height:30px;
background-color:#222;
color:#fff;
border-radius:3px;
text-align:center;
line-height:30px;
}
.range span:before{
content:'';
position:absolute;
border-right:9px solid transparent;
border-left:9px solid transparent;
border-bottom:12px solid #222;
left:-10px;
top:50%;
transform:translateY(-50%) rotate(-90deg);
}`
I have tried in multiple ways to overide the dcc and the daq sliders and I have tried to change their appearance, particularly the white color they have without any success. Putting the css file with the parameters do not work for the sliders though it works for customizing buttons. I have tried also to use. The parameters for the sliders in the bootstrap themes but they do not have any effect on the DASH sliders. What can I do? Is there a way to get the parameters above to work on the DASH sliders? I will highly appreciate your help. Any tips to customize the sliders will be highly appreciated.