Disabling bottom border animation on focus on SfNumericTextBox

Hi, is there a way to configure/disable the animation of the bottom border when focusing on the SfNumericTextBox? Change the color, remove it, etc? Seems like something that should be configurable but I cannot find any setting to do so. 

3 Replies 1 reply marked as answer

BC Berly Christopher Syncfusion Team December 28, 2020 01:56 PM UTC

Hi Marco, 
  
Greetings from Syncfusion support. 
  
We can disable the border-bottom animation by modifying the CSS styles with help of CssClass property. Please refer the below code snippet. 
  
<SfNumericTextBox TValue="int?" CssClass="e-custom"></SfNumericTextBox> 
<style> 
    .e-custom.e-input-group:not(.e-float-icon-left):not(.e-float-input)::before, 
    .e-custom.e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::before, 
    .e-custom.e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after, 
    .e-custom.e-input-group:not(.e-float-icon-left):not(.e-float-input)::after { 
        background: none; 
    } 
</style> 

  
  
Regards, 
Berly B.C 


Marked as answer

MA Marco Andrade January 5, 2021 01:26 PM UTC

That worked wonderfully, many thanks!


VS Vignesh Srinivasan Syncfusion Team January 6, 2021 05:34 AM UTC

Hi Marco, 
 
Thanks for the update. 
We are happy to hear that your issue has been resolved. 
Please get back to us if you need further assistance. 
Regards, 
 
Vignesh Srinivasan. 


Loader.
Up arrow icon