Display hints on hover only for Slider fields

Add this code to the Custom CSS field on the Settings tab of your Calculator widget’s settings:

[class*='FormFieldLayout__Hint-sc'] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

[class*='FormFieldLayout__Hint-sc']:hover {
  opacity: 1;
}

Guys, if this code was helpful to you, please drop a line in the comments. Your feedback helps us improve our services and provide better solutions :slightly_smiling_face: