How to remove the blue borders that appear when input fields are active like the drop-down menu and date picker as attached below?
How to remove the blue borders that appear when input fields are active like the drop-down menu and date picker as attached below?
Not sure what package you are using with these, but this css works for dash core component dropdown.
.Select.is-focused:not(.is-open) > .Select-control{
border-color: transparent !important;
box-shadow: none !important;
border: 0 !important;
}
Thanks, it worked!
Do you have an idea how to do that with the singleDatePicker object too?
Iām using dash==2.0.0 & dash_bootstrap_components==1.0.0
try this
.DateInput_input__focused{
border-color: transparent !important;
border: 0 !important;
}
Thanks so much!